|
|
This appendix provides a formal definition of the StrataView SNMP Proxy Agent Service Management Information Base (MIB). It contains the following two MIBs:
Stratacom StrataView Service MIB
-- $RCSfile: SV+Service.mib,v $
-- $Revision: 1.1.4.26.2.1.4.44 $
-- $Date: 1997/08/19 01:53:23 $
Consolidated MIB for port, connection and dialUp services
STRATACOM-STRATAVIEW-SVPLUS-MIB-REL8-4
DEFINITIONS ::= BEGIN
IMPORTS
enterprises, Counter, Gauge, TimeTicks, IpAddress FROM RFC1155-SMI
TRAP-TYPE FROM RFC-1215
OBJECT-TYPE FROM RFC-1212
DisplayString FROM RFC1213-MIB;
stratacom OBJECT IDENTIFIER ::= { enterprises 351 }
svplus OBJECT IDENTIFIER ::= { stratacom 1 }
serviceGroup OBJECT IDENTIFIER ::= { svplus 101 }
connGroup OBJECT IDENTIFIER ::= { serviceGroup 1 }
portGroup OBJECT IDENTIFIER ::= { serviceGroup 2 }
insDas OBJECT IDENTIFIER ::= { serviceGroup 3 }
connGroup
-- This MIB defines tables and attributes creating and maintaining
-- connections and their end points. A connection is defined as end to end;
-- each end designated as an user end point, one of which is called 'local'
-- and other is called 'remote'. The end to end connection consists of
-- one or more connection segments.
-- A key attribute controlling the existence of entries in each of
-- the tables is the 'RowStatus' as defined in RFC 1443 - Textual
-- Conventions for version 2 of the Simple Network Management Protocol
-- (SNMPv2). However, since this MIB is implemented using version 1,
-- RowStatus is defined below and RFC1443 return error code mappings are:
'inconsistant value' or 'wrong value' then return 'badValue';
'noSuchObject' or 'noSuchInstance' then return 'noSuchName'
svConnMibUpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION "the equivalent of sysUpTime for this MIB, its the elapsed time
since the management entity supporting this mib is started. If the
entity is the same as that supporting MIB II sysUpTime than
this attribute is the same as sysUpTime."
::= { connGroup 1 }
To create a connection:
-- 1. The manager creates the entries in the respective end point
-- table(s) and the svConnTable, with RowStatus is set to
-- 'createAndGo'. The required attributes for end points as well as
-- svConnEntry also can be specified in the same SET request.
-- Note that value 0 must be used as svConnIndex
-- for creating entry in the svConnTable.
-- [ The actual index is internally generated by Proxy ]
Table Entry Deletion
-- To delete an entry in any of the tables, set the rowStatus to
-- 'destroy'. Deleting the svConnEntry will delete all corresponding
-- entries in the associated EndPoint Tables.
--
-- A protocol specific end point may be deleted only if it is not associated
-- with any svConnEntry.
--
svConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvConnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A List of Connection Virtual Circuit Entries"
::= { connGroup 3 }
svConnEntry OBJECT-TYPE
SYNTAX SvConnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A General Connection Entry"
INDEX { svConnIndex }
::= { svConnTable 1 }
SvConnEntry ::=
SEQUENCE {
svConnIndex INTEGER,
svConnLocalEndPt OBJECT IDENTIFIER,
svConnRemoteEndPt OBJECT IDENTIFIER,
svConnOpStatus INTEGER,
svConnAdminStatus INTEGER,
svConnRowStatus INTEGER,
svConnTrkAvoidType INTEGER,
svConnTrkAvoidZCS INTEGER,
svConnClassOfService INTEGER,
svConnForesight INTEGER,
svConnCurrRouteDesc DisplayString,
svConnPrefRouteDesc DisplayString,
svConnRouteMaster DisplayString,
svConnLocOSpacePkts INTEGER,
svConnLocOSpaceBdaCmax INTEGER,
svConnLocOSpaceBdbCmax INTEGER,
svConnRemOSpacePkts INTEGER,
svConnRemOSpaceBdaCmax INTEGER,
svConnRemOSpaceBdbCmax INTEGER,
svConnTestType INTEGER,
svConnTestResult INTEGER,
svConnAbitStatus INTEGER,
svConnType INTEGER,
svConnLocalStr DisplayString,
svConnRemoteStr DisplayString,
svConnSubType INTEGER,
svConnMiddlEndPt OBJECT IDENTIFIER,
svConnMiddleStr DisplayString,
svConnNumSegments INTEGER,
svConnSegment1 DisplayString,
svConnSegment2 DisplayString,
svConnSegment3 DisplayString,
svConnOvrSubOvrRide INTEGER,
svConnLocOSpaceCells INTEGER,
svConnRemOSpaceCells INTEGER
}
svConnIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value greater than 0 for each entry in the table.
The value assigned must remain constant at least from
one reinitialization of the managment entity and the next.
Special value 0 must be used for adding new rows in the table.
The actual index will be generated internally by the Proxy."
::= { svConnEntry 1 }
svConnLocalEndPt OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The object identifier of the 1st attribute of the end point
in the associated protocol specific end point table."
::= { svConnEntry 2 }
svConnRemoteEndPt OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The object identifier of the 1st attribute of the end point
in the associated protocol specific end point table."
::= { svConnEntry 3 }
svConnAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
active(2),
testing(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION " Administrative status of the connection. This attribute
may be set to 'testing' only when svConnOpStatus has the value
'clear'."
::= { svConnEntry 4 }
svConnOpStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
clear(2),
fail(3),
down(4),
incomplete(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "A operation status of the connection. 'incomplete' indicates
that the some segments of the connection exist but others may
be in an unknown or non-existant state."
::= { svConnEntry 5 }
svConnRowStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
createAndGo(4),
destroy(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "To create an entry in this table, set the value of this
object to 'createAndGo'.
To delete the connection and the corresponding end points
set the value to 'destroy'.
setting the value to active will result in bad value.
Other required parameters can also be set in the same request"
::= { svConnEntry 6 }
svConnTrkAvoidType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
satellite(2),
terrestrial(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "User selectable types of trunks to avoid for the
transfer of data. Current choices are to avoid
satellite links, terrestrial links, or to not avoid
any specific type of link. This object is optional
during the creation of the endpoint."
DEFVAL { none }
::= { svConnEntry 7 }
svConnTrkAvoidZCS OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Flag to force the connection to avoid trunks with zero
code suppression (ZCS). This object is optional during
the creation of the endpoint."
DEFVAL { false }
::= { svConnEntry 8 }
svConnForesight OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-only
STATUS deprecated
DESCRIPTION "Flag to enable/disable foresight.
This varible is deprecated since
8.4 release. In 8.4 release,
the value of the foresight
is determined by the selection of
the svConnSubType. If the
svConnSubType is fr-fs
or abr-fs, the foresight is enabled.
The foresght is disabled if the
svConnSubType is not fr-fs or
abr-fs."
::= { svConnEntry 9 }
svConnClassOfService OBJECT-TYPE
SYNTAX INTEGER (0..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION "A class of service for this connection. The lower
the class value, the higher the routing priority
of the connection."
DEFVAL { 0 }
::= { svConnEntry 10 }
svConnCurrRouteDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..256))
ACCESS read-only
STATUS mandatory
DESCRIPTION "A description of the current route (all hops specified).
This descriptor gives information about the domain, nodename,
slot, and possibly a port and vtrk for each hop in the
route.
Get Operations only:
For example, Node1 15--15.5Node2 is a valid route
specifying a terrestrial link between Node1 slot 15 and
Node2 slot 15.5. Inter-domain connection's routes will
append the remote domain and nodename of the terminating
endpoint. Satellite trunks are denoted as '~~' and unknown
types are shown as '??'. For the originating node, only
the node name and outgoing trunk are shown. For the via
nodes, the node names and both incoming and outgoing trunks
are shown. For the destination node, only the node name
and incoming trunk is shown. Each trunk can be described
in the following four fashions:
1. slot
2. slot.vtrk
3. slot.port
4. slot.port.vtrk
where
slot - slot number
port - port number
vtrk - virtual trunk number
Examples:
1) Node1 15--15.5Node2
2) Node1 15--15.5.1Node2 13.1--3Node3
3) Node1 15--15.5.1Node2 13.1--3.1Node3 2.2.1~~5Node4
"
::= { svConnEntry 11 }
svConnPrefRouteDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..256))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Descriptor of the preferred route (all hops specified).
Descriptor gives information about the domain, nodename, slot,
port and possibly a virtual trunk for each hop in the route.
For example, Node1.15 - Node2 is a valid route specifying a
terrestrial link between Node1 slot 15 and Node2.
The following describes the general format
for svConnPrefRouteDesc:
(<node-name>.<TRK>[.0])* - <node-name>
(<node-name>.<slot.port>)* - <node-name>
(<node-name>.<slot.port[.vtrkId>)* - <node-name>
Some more valid descriptions are:
1) Node1.15.1 - Node2.13.1 - Node3
2) Node1.15.1-Node2.13.1-Node3
3) Node1.15 - Node2.12 - Node3.15 - Node4
4) Node1.15.0 - Node2.12.0 - Node3.15.0 - Node4
5) Node1.15.0 - Node2.12.1.5 - Node3.15.0 - Node4
6) Node2
NOTE: a> (...)* notation means the description inside
parenthesis may repeat any number of times,
only limited by the total length which is 255
and the [...] notation signifies that it is
optional.
b> 1) & 2) are equivalent so are 3) & 4).
"
DEFVAL { ''h }
::= { svConnEntry 12 }
svConnRouteMaster OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "The node name of the route master."
::= { svConnEntry 13 }
svConnLocOSpacePkts OBJECT-TYPE
SYNTAX INTEGER (-1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum packet load
available on the mandatory path of this connection
in local->remote direction. This variable
is determined by comparing available bandwidth on
every trunk on which the connection is mandatoryly
routed and reporting the minimum available bandwidth.
For interdomain connections this value represents
available bandwidth through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in packets per second."
::= { svConnEntry 14 }
svConnLocOSpaceBdaCmax OBJECT-TYPE
SYNTAX INTEGER (-1..65534)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum BData A Cmax
available on the mandatory path of this connection
in local->remote direction. This variable
is determined by comparing available BData A Cmax on
every trunk on which the connection is mandatoryly
routed and reporting the minumim available.
For interdomain connections this value represents
available BData A Cmax through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in bytes."
::= { svConnEntry 15 }
svConnLocOSpaceBdbCmax OBJECT-TYPE
SYNTAX INTEGER (-1..65534)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum BData B Cmax
available on the mandatory path of this connection
in local->remote direction. This variable
is determined by comparing available BData B Cmax on
every trunk on which the connection is mandatoryly
routed and reporting the minumim available.
For interdomain connections this value represents
available BData B Cmax through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in bytes."
::= { svConnEntry 16 }
svConnRemOSpacePkts OBJECT-TYPE
SYNTAX INTEGER (-1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum packet load
available on the mandatory path of this connection
in remote->local direction. This variable
is determined by comparing available bandwidth on
every trunk on which the connection is mandatoryly
routed and reporting the minumim available bandwidth.
For interdomain connections this value represents
available bandwidth through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in packets per second."
::= { svConnEntry 17 }
svConnRemOSpaceBdaCmax OBJECT-TYPE
SYNTAX INTEGER (-1..65534)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum BData A Cmax
available on the mandatory path of this connection
in remote->local direction. This variable
is determined by comparing available BData A Cmax on
every trunk on which the connection is mandatoryly
routed and reporting the minumim available.
For interdomain connections this value represents
available BData A Cmax through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in bytes."
::= { svConnEntry 18 }
svConnRemOSpaceBdbCmax OBJECT-TYPE
SYNTAX INTEGER (-1..65534)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum BData B Cmax
available on the mandatory path of this connection
in remote->local direction. This variable
is determined by comparing available BData B Cmax on
every trunk on which the connection is mandatoryly
routed and reporting the minumim available.
For interdomain connections this value represents
available BData A Cmax through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in bytes."
::= { svConnEntry 19 }
svConnTestType OBJECT-TYPE
SYNTAX INTEGER {
continuity(1),
delay(2),
none(255)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specifies the type of test to be conducted on this connection.
The test is executed when both this attribute is set to the
appropriate test and svConnAdminStatus is SET to 'testing'.
The 'continuity' test verifies continuity.
The 'delay' test on successful completion sets the delay in
msecs in svConnTestResult.
This attribute may be set only when svConnOpStatus has
the value 'clear', 'fail', or 'down'."
DEFVAL { none }
::= { svConnEntry 20 }
svConnTestResult OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object holds the result of an executed connection
test.
If a continuity test is executed, this object contains the
value 0 if successful, or -2 if failed.
If a delay test successfully executed, this object will indicate
the round trip delay (in milliseconds) for the connection. If
the delay test failed this object contains the value -2.
If no test has been executed, or the svConnTestType is SET,
then this object will return the value -1."
::= { svConnEntry 21 }
svConnAbitStatus OBJECT-TYPE
SYNTAX INTEGER {
clear(1),
fail(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "A-bit status of the connection."
::= { svConnEntry 22 }
svConnType OBJECT-TYPE
SYNTAX INTEGER {
fr-fr(1),
atm-atm(2),
atm-fr(3),
ce-ce(4),
unknown(200)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Connection Type.
fr-fr indicates Framerelay to Framerelay connection.
atm-atm indicates Atm to Atm connection and
atm-fr indicates Atm to FrameRelay connection.
ce-ce indicates CESM to CESM connection.
unknown indicates incomplete connection."
::= { svConnEntry 23 }
svConnLocalStr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Local EndPt information in string format.
i.e., the instance information of the EndPt:
node.shelf.slot.line.port.dlci (For FrameRelay)
node.shelf.slot.port.vpi.vci (For Atm)
node.shelf.slot.port.0.0 (For Ce)
If there is no shelf, null string {..} will be returned.
Examples:
bpx10.axis10.6.4.1.100 (AXIS - FRSM)
bpx10.ipx10.6.0.1.100 (IPX A/F - FRP)
ipx11..6.0.1.100 (IPX - FRP)
bpx10..8.1.15.150 (BPX - ASI)
bpx10.axis10.10.1.0.0 (AXIS - CESM)
"
::= { svConnEntry 24 }
svConnRemoteStr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Remote EndPt information in string format.
i.e., the instance information of the EndPt:
node.shelf.slot.line.port.dlci (For FrameRelay)
node.shelf.slot.port.vpi.vci (For Atm)
node.shelf.slot.port.0.0 (For Ce)
If there is no shelf, null string {..} will be returned.
Examples:
bpx10.axis10.6.4.1.100 (AXIS - FRSM)
bpx10.ipx10.6.0.1.100 (IPX A/F - FRP)
ipx11..6.0.1.100 (IPX - FRP)
bpx10..8.1.15.150 (BPX - ASI)
bpx10.axis10.10.1.0.0 (AXIS - CESM)
"
::= { svConnEntry 25 }
svConnSubType OBJECT-TYPE
SYNTAX INTEGER {
cbr1(1),
vbr1(2),
vbr2(3),
vbr3(4),
abr-fs(5),
fr-fs(6),
fr(7),
ubr-1(8),
ubr-2(9),
abr-1(10),
unknown(200)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "
This object must be specified to complete a connection.
For a connection from an Atm end to an Atm end connection,
the svConnSubType cbr-1(1), vbr-1(2), vbr-2(3), vbr-3(4),
abr-fs(5) and ubr-1(8), ubr-2(9), and abr-1(10) are allowed.
For a connection from a Frame Relay end to a Frame Relay end,
the svConnSubType fr(7), or fr-fs(6) are allowed.
For a connection from a cesm end to a cesm end,
the svConnSubType cbr-1(1) is allowed.
For a connection from an Atm end to a Frame Relay
or for a connection from a Frame Relay end to an Atm end,
svConnType is atm-fr, the svConnSubType
abr-fs(5) or vbr-3(4) are allowed.
Note that in Release 8.1 the only combination of Service
Interworking allowed was frsm to Asi, with the specific
condition of frsm being the local End.
The svConnSubType cbr-1 is an Atm CBR Connection.
CLP(cell loss priority tagging option ) is not applicable.
If the cbr-1 is selected, the following parameters
need to be specified or the default value will be appllied:
atmEndPointPCRZeroPlus1 (peak cell rate )
atmEndPointCDVTZeroPlus1(The Cell Delay Variation Tolerance)
atmEndPointPercUtil(channel percentage utilization)
The svConnSubType vbr-1 is an Atm VBR type Connection.
CLP(cell loss priority tagging option ) is not applicable.
If the vbr-1 is selected, the following parameters
need to be specified or the default value will be appllied:
atmEndPointPCRZeroPlus1 (peak cell rate)
atmEndPointSCRZeroPlus1 (sustainable cell rate)
atmEndPointCDVTZeroPlus1(Cell Delay Variation Tolerance)
atmEndPointPercUtil(channel percentage utilization)
atmEndPointMBS(Committed Burst Size)
atmEndPointFGCRA(Frame-based Generic Rate Control Algorithm)
The svConnSubType vbr-2 is an Atm VBR type Connection.
CLP(cell loss priority tagging option ) is applicable and
its value is disable.
If the vbr-2 is selected, the following parameters
need to be specified or the default value will be appllied:
atmEndPointPCRZeroPlus1 (peak cell rate)
atmEndPointSCRZeroPlus1 (sustainable cell rate)
atmEndPointCDVTZeroPlus1(Cell Delay Variation Tolerance)
atmEndPointPercUtil(channel percentage utilization)
atmEndPointMBS(Committed Burst Size)
atmEndPointFGCRA(Frame-based Generic Rate Control Algorithm)
The svConnSubType vbr-3 is an Atm VBR type Connection.
CLP(cell loss priority tagging option ) is applicable and
its value is enable.
If the vbr-3 is selected, the following parameters
need to be specified or the default value will be applied:
atmEndPointPCRZeroPlus1 (peak cell rate)
atmEndPointSCRZeroPlus1 (sustainable cell rate)
atmEndPointCDVTZeroPlus1(Cell Delay Variation Tolerance)
atmEndPointPercUtil(channel percentage utilization)
atmEndPointMBS(Committed Burst Size)
atmEndPointFGCRA(Frame-based Generic Rate Control Algorithm)
The svConnSubType abr-fs is an ATM ABR type connection.
The foresight is enabled. CLP(cell loss priority tagging option )
is applicable and its value is enable.
If the abr-fs is selected, the following parameters
need to be specified or the default value will be applied:
atmEndPointPCRZeroPlus1 (peak cell rate)
atmEndPointCDVTZeroPlus1 (Cell Delay Variation Tolerance)
atmEndPointMCR (minimum cell rate)
atmEndPointPercUtil (channel percentage utilization)
atmEndPointSCRZeroPlus1 (sustainable cell rate)
atmEndPointMBS (Committed Burst Size)
atmEndPointFGCRA (Frame-based Generic Rate Control Algorithm)
atmEndPointBCM (BCM cell enable or disable)
atmEndPointICR (Initial Cell Rate)
atmEndPointRateUp (The ForeSight Rate Up value)
atmEndPointRateDown (The ForeSight Rate Down value)
atmEndPointICRTO (Initial Cell Rate Time out)
atmEndPointMinAdjustPeriod (The ForeSight minimum adjustment value)
The svConnSubType fr-fr is an Frame Relay type connection.
The foresight is disabled.
The svConnSubType fr-fs is an Frame Relay type connection.
The foresight is enabled.
The svConnSubType ubr-1 is an Atm UBR type Connection.
The subType ubr-1 is not supported on AXIS cards.
CLP(cell loss priority tagging option ) is applicable and its
value is disable. If the ubr-1 is selected, the following
parameters need to be specified or the default value
will be applied:
atmEndPointPCRZeroPlus1 (peak cell rate )
atmEndPointCDVTZeroPlus1(The Cell Delay Variation Tolerance)
atmEndPointPercUtil(channel percentage utilization)
atmEndPointFGCRA(Frame-based Generic Rate Control Algorithm)
The svConnSubType ubr-2 is an Atm UBR type Connection.
The subType ubr-2 is not supported on AXIS cards.
CLP(cell loss priority tagging option ) is applicable and its
value is enable. If the ubr-2 is selected, the following
parameters need to be specified or the default value
will be applied:
atmEndPointPCRZeroPlus1 (peak cell rate )
atmEndPointCDVTZeroPlus1(The Cell Delay Variation Tolerance)
atmEndPointPercUtil(channel percentage utilization)
atmEndPointFGCRA(Frame-based Generic Rate Control Algorithm)
The svConnSubType abr-1 is an ATM ABR type connection.
The subType abr-1 is not supported on AXIS cards.
The foresight is disabled. CLP(cell loss priority tagging option )
is applicable and its value is disable.
If the abr-1 is selected, the following parameters
need to be specified or the default value will be applied:
atmEndPointPCRZeroPlus1 (peak cell rate)
atmEndPointCDVTZeroPlus1(Cell Delay Variation Tolerance)
atmEndPointSCRZeroPlus1(sustainable cell rate)
atmEndPointMBS(Committed Burst Size)
atmEndPointFGCRA(Frame-based Generic Rate Control Algorithm)
atmEndPointBCM (BCM cell enable or disable)
atmEndPointPercUtil(channel percentage utilization)
atmEndPointICR (Initial Cell Rate)
atmEndPointMinAdjustPeriod (The ForeSight minimum adjustment value)
atmEndPointRateUp (The ForeSight Rate Up value)
atmEndPointRateDown (The ForeSight Rate Down value)
atmEndPointNRM(The maximum number of cells a source may send)
atmEndPointTBE(Transient Buffer Exposure)
atmEndPointFRTT(The fixed round-trip time)
atmEndPointVSVD(Virtual source/virtual destination)
atmEndPointPolicing(the traffic policing)
The svConnSubType unknown indicates incomplete connection.
"
::= {svConnEntry 26}
svConnMiddlEndPt OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object is not applicable for a single segment connection.
For a three segment connection it is
the 'local' end point of the second segment,
which is the master end of the routing segment.
For a two segment connection it is the remote endpt
of the 1st segment(which is the routing segment).
GET on this object will return a value of {0 0},
the NULL object identifier, for a single segment
connection."
::= {svConnEntry 27}
svConnMiddleStr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Middle EndPt information in string format.
i.e., the instance information of the EndPt:
node.shelf.slot.port.vpi.vci (it's always an ATM Endpt)
Example:
bpx10..3.1.15.150 (BPX - BNI)
This object is not applicable for single segment connection.
GET on this object will return NULL string for one segment."
::= {svConnEntry 28}
svConnNumSegments OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of segments(1, 2 or 3) for this connection.
Single Segment connection:
Connection between routing nodes.
i.e., BPX-ASI to BPX-ASI
IPX-FRP to IPX-FRP
Two segment connections:
Connection between a routing node and a feeder.
i.e., IPX-FRP to IPX(A/F)-FRP
BPX-ASI to AXIS-FRSM
IPX-FRP to AXIS-FRSM
Ex: Segments for IPX-FRP to AXIS-FRSM;
Segment1: IPX-FRP to BPX-BNI
Segment2: AXIS-BNM to AXIS-FRSM
Three segment connections:
Connection between two feeder nodes.
i.e., IPX(A/F)-FRP to IPX(A/F)-FRP
AXIS-FRSM to IPX(A/F)-FRP
AXIS-FRSM to AXIS-FRSM
Ex: Segments for AXIS-FRSM to AXIS-FRSM;
Segment1: AXIS-FRSM to AXIS-BNM
Segment2: BPX-BNI to BPX-BNI
Segment3: AXIS-BNM to AXIS-FRSM
"
::= {svConnEntry 29}
svConnSegment1 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The first connection segment in the string format:
EndPt-A - EndPt-B
Where EndPt is:
node.shelf.slot.line.port.dlci (for FrameRelay)
node.shelf.slot.port.vpi.vci (for ATM)
Note that AIT EndPt on IPX and BNM EndPt on AXIS are
treated as ATM EndPts.
Example:
bpx1.axis1.6.1.100.100 - bpx1.axis1.1.2.6.16
(AXIS-AUSM to AXIS-BNM)
If there is no shelf, null string {..} is used.
"
::= {svConnEntry 30}
svConnSegment2 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The second connection segment in the string format:
EndPt-A - EndPt-B
Where EndPt is:
node.shelf.slot.line.port.dlci (for FrameRelay)
node.shelf.slot.port.vpi.vci (for ATM)
Note that AIT EndPt on IPX and BNM EndPt on AXIS are
treated as ATM EndPts.
Example:
bpx1..10.1.6.16 - bpx1..10.1.6.22
(BPX-BNI to BPX-BNI)
If there is no shelf, null string {..} is used.
GET on this object will return NULL string,
for a single segment connection.
"
::= {svConnEntry 31}
svConnSegment3 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "The third connection segment in the string format:
EndPt-A - EndPt-B
Where EndPt is:
node.shelf.slot.line.port.dlci (for FrameRelay)
node.shelf.slot.port.vpi.vci (for ATM)
Note that AIT EndPt on IPX and BNM EndPt on AXIS are
treated as ATM EndPts.
Example:
bpx1.axis1.1.2.6.22 - bpx1.axis1.6.3.100.101
(AXIS-BNM to AXIS-AUSM)
If there is no shelf, null string {..} is used.
GET on this object will return NULL string,
for single/two segment connections.
"
::= { svConnEntry 32}
svConnOvrSubOvrRide OBJECT-TYPE
SYNTAX INTEGER {
disable (1),
enable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This MIB variable allows one to add a new connection on a port
even if it is over subscribed.
"
::= { svConnEntry 33}
svConnLocOSpaceCells OBJECT-TYPE
SYNTAX INTEGER (-1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum cell load
available on the current path of this connection
in master->slave direction. This variable
is determined by comparing available bandwidth on
every trunk on which the connection is currently
routed and reporting the minumim available bandwidth.
For interdomain connections this value represents
available bandwidth through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in cells per second."
::= { svConnEntry 34 }
svConnRemOSpaceCells OBJECT-TYPE
SYNTAX INTEGER (-1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "This variable provides the minimum cell load
available on the current path of this connection
in slave->master direction. This variable
is determined by comparing available bandwidth on
every trunk on which the connection is currently
routed and reporting the minumim available bandwidth.
For interdomain connections this value represents
available bandwidth through all domains. This variable
is meaningful for routed connections only.
Value (-1) is returned in case of internal errors and
(0) is returned for DAX connections.
These values are returned in cells per second."
::= { svConnEntry 35 }
ERROR STATUS TABLE
-- This object contains the value of the request id for the latest
-- entry in the error status table.
-- This value can be used to retrieve the error code and description
-- for the last SET operation failed.
svCmpaErrorLastIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "If at least one entry exists in the error status table,
the value of this object contains the index corresponding
to the last entry inserted in the table. If no entries
have ever been inserted in the svCmpaErrorTable, then
the agent will return 0 for a query of this variable.
Actually this object is not required any more because
of the new objects svCmpaErrorLastDesc and svCmpaErrorLastEcode.
One can do GET directly on svCmpaErrorLastDesc/LastEcode."
::= { connGroup 8 }
svCmpaErrorFlushAll OBJECT-TYPE
SYNTAX INTEGER {
noOp(1),
flush(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this object to the value 'flush' indicates to
the agent that a manager would like the svCmpaErrorTable
to be immediately flushed of all entries.
A management retrieval of this object will always return
the value 'noOp'.
Setting this object to the value 'noOp' is invalid."
::= { connGroup 9 }
-- The following table is used to maintain status information about
-- SNMP SET requests from a Manager. When an SNMP SET fails, an
-- entry in this table is created and the object svCmpaErrorLastIndex
-- is updated.
-- Even though this table is indexed by requestId only,
-- same requestId can be used by different managers.
-- The reason is Managers's IpAddr is also used as an additional index,
-- but is kept transparent to the user.
--
svCmpaErrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvCmpaErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A List of recent Errors reported by the Conn Proxy Agent."
::= { connGroup 10 }
svCmpaErrorEntry OBJECT-TYPE
SYNTAX SvCmpaErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A General Error Status Entry."
INDEX { svCmpaErrorReqId }
::= { svCmpaErrorTable 1 }
SvCmpaErrorEntry ::= SEQUENCE {
svCmpaErrorReqId INTEGER,
svCmpaErrorDesc DisplayString,
svCmpaErrorEcode INTEGER
}
svCmpaErrorReqId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object contains the PDU request ID associated with
the SET request. The manager must use this information to
find the error associated with a particular SNMP request.
Note that an SNMP request ID may be reused by
the same manager. When this occurs,
the older entry in the table will be replaced with the
new error status. Managers must be aware that
error information may therefore be lost."
::= { svCmpaErrorEntry 1 }
svCmpaErrorDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object contains error status information for failed
SETS to one or more objects in one or more of the
following tables:
frPortsCfgTable
Rows in this table may be created as the result of
a failed SNMP SET operation.
Since the SNMP standard allows only limited number of
error result codes, the managers can retrieve this
variable to get additional information on a failed
SET operation. Typically this object will contain
a user friendly description of the cause of the error."
::= { svCmpaErrorEntry 2 }
svCmpaErrorEcode OBJECT-TYPE
SYNTAX INTEGER {
invalid-network(1),
-- No such Network(domain) in the Database
invalid-node(2),
-- No such Node in the Database
invalid-shelf(3),
-- No such Nhelf for the given node
invalid-release(4),
-- Unsupported release fot the given Node/Shelf
node-timeout(5),
-- Timeout from the given Node/Shelf
node-busy(6),
-- Node is busy processing other requests
no-snmpcomm(7),
-- The demon process snmpcomm is not running
snmpcomm-error(8),
-- Internal error at the demon process snmpcomm
node-error(9),
-- Error at the embedded Agent
bad-value(10),
-- Bad value for the given Object
port-not-found(11),
-- The specified port does not exists
slot-is-full(12),
-- AddConn error, no more conns on this slot
slot-not-found(20),
-- The specified slot does not exists
conn-not-found(100),
-- The specified connection does not exists
endpt-exists(101),
-- AddConn error, Endpt already exists
lendpt-exists(102),
-- AddConn error, Local Endpt already exists
rendpt-exists(103),
-- AddConn error, Remote Endpt already exists
lendpt-missing(104),
-- svConnLocalEndPt is missing from the SET request
rendpt-missing(105),
-- svConnRemoteEndPt is missing from the SET request
db-lendpt-not-found(106),
-- Could not find Local Endpt in Database
db-rendpt-not-found(107),
-- Could not find Remote Endpt in Database
lendpt-not-found(108),
-- svConnLocalEndPt specified does not exists
rendpt-not-found(109),
-- svConnRemoteEndPt specified does not exists
dangling-endpt(110),
-- The Endpt is part of an incomplete connection
endpt-rowstatus-missing(111),
-- frEndPointRowStatus is missing from the SET request
conn-rowstatus-missing(112),
-- svConnRowStatus is missing from the SET request
invalid-endpt-rowstatus(113),
-- End point RowStatus can not be set to Active
invalid-conn-rowstatus(114),
-- svConnRowStatus can not be set to Active
invalid-connindex(115),
-- Invalid connection Index used for AddConn
testtype-missing(116),
-- svConnTestType is missing from the SET Request
partial-add(117),
-- Connection is added, but modification failed
partial-mod(118),
-- Endpt is modified, but connection params not modified
invalid-bw(119),
-- Invalid BandWidth param relationship.
not-active(120),
-- Connection is not in active state
invalid-adminstatus(121),
-- svConnAdminStatus can be SET to testing only
not-clear(122),
-- svConnOpStatus is not in clear state
invalid-endpt-comb(123),
-- Invalid Endpt combination for the connection
invalid-chantype(124),
-- Invalid chanType for the given Endpt combination
cmgrd-timeout(125),
-- No response from the demon cmgrd
no-cmgrd(126),
-- The demon cmgrd is not running
ronly-for-frp(127),
-- Object is read-only for FRP(IPX) Endpt
invalid-chanFECNconfig(128),
-- Invalid chanFECNconfig for the given chanType
invalid-chanCLPtoDEmap(129),
-- Invalid chanCLPtoDEmap for the given chanType
ibs-less-bc(130),
-- InitialBurstSize(IBS)should be less than or equal to Bc
invalid-NRM(131),
--Invalid NRM value.
invalid-TBE(132),
--Invalid value for Transient Buffer Exposure.
foresight-disabled(133),
-- PIR, MIR and QIR can not be Modified for AXIS endpt,
-- when Foresight is disabled
invalid-FRTT(134),
--Invalid value for the Fixed Round-Trip Time.
invalid-VSVD(135),
--Invalid value for Virtual Source/Virtual Destination
invalid-Policing(136),
--Invalid the traffic policing value.
invalid-PCRZeroPlus1 (137),
--invalid Peak Cell Rate .
invalid-CDVTZeroPlus1 (138),
--Cell Delay Variation Tolerance.
invalid-MCR (139),
--minimum cell rate.
invalid-PercUtil(140),
--percentage utilization setting.
invalid-SCRZeroPlus1 (141),
--Sustainable Cell Rate.
invalid-MBS (142),
--Committed Burst Size.
invalid-FGCRA(143),
--FGCRA
invalid-BCM (144),
--BCM cell enable or disable
invalid-ICR (145),
--Initial Cell Rate.
invalid-RateUp(146),
--The ForeSight Rate Up value
invalid-RateDown (147),
--The ForeSight Rate Down value
invalid-ICRTO(149),
--Initial Cell Rate Time out
invalid-MinAdjustPeriod(150),
--The ForeSight minimum adjustment value
invalid-connectionOvrSubOvrRide(151),
--The oversubsribe value
policing-not-settable-on-axis(152),
-- Policing can not be SET for AXIS
rateup-not-settable-on-axis(153),
-- Rateup can not be SET for AXIS
ratedown-not-settable-on-axis(154),
-- RateDown can not be SET for AXIS
frtt-not-settable-on-axis(155),
-- FRTT can not be SET for AXIS
tbe-not-settable-on-axis(156),
-- TBE can not be SET for AXIS
vsvd-not-settable-on-axis(157),
-- VSVD can not be SET for AXIS
icrto-not-settable-on-axis(158),
-- ICRTimeout can not be SET for AXIS
minadj-not-settable-on-axis(159),
-- MinAdjust can not be SET for AXIS
nrm-not-settable-on-axis(160),
-- NRM can not be SET for AXIS
bcm-not-settable-on-axis(161),
-- BCM can not be SET for AXIS
connSubType-not-settable-for-MODIFY(162),
-- connSubType can not be SET for MODIFY conn.
connSubType-conflicts-with-endPoints(163),
-- connSubType does not fit the End Points
invalid-value-atmEndPointHiCLP(164),
-- atmEndPointHiCLP value invalid
invalid-value-atmEndPointLoCLP(165),
-- atmEndPointLoCLP value invalid
invalid-value-atmEndPointVcQSize(166),
-- atmEndPointVcQSize value invalid
invalid-value-atmEndPointEfciQSize(167),
-- atmEndPointEfciQSize value invalid
invalid-value-atmEndPointIBS(168),
-- atmEndPointIBS value invalid
subType-na-for-axis(200),
-- Specified Subtype Not supported on AXIS cards
no-error-entry(500),
-- No entries available in the ErrorTable
not-applicable(501),
-- Error Code not relevant, rely on Error Description
invalid-flushall(502)
-- Can not set to noOp for svCmpaErrorFlushAll
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object contains the error Code of the GET/SET operation.
The error Codes from 500 onwards are specific to the
Error Table operation itself.
Note that currently GET errors are not updated in the
error table."
::= { svCmpaErrorEntry 3 }
svCmpaErrorLastDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION "This contains the error description of the last error
generated. If error table contains no errors, GET on
this will return NULL string"
::= { connGroup 11 }
svCmpaErrorLastEcode OBJECT-TYPE
SYNTAX INTEGER {
invalid-network(1),
-- No such Network(domain) in the Database
invalid-node(2),
-- No such Node in the Database
invalid-shelf(3),
-- No such Nhelf for the given node
invalid-release(4),
-- Unsupported release fot the given Node/Shelf
node-timeout(5),
-- Timeout from the given Node/Shelf
node-busy(6),
-- Node is busy processing other requests
no-snmpcomm(7),
-- The demon process snmpcomm is not running
snmpcomm-error(8),
-- Internal error at the demon process snmpcomm
node-error(9),
-- Error at the embedded Agent
bad-value(10),
-- Bad value for the given Object
port-not-found(11),
-- The specified port does not exists
slot-is-full(12),
-- AddConn error, no more conns on this slot
slot-not-found(20),
-- The specified slot does not exists
conn-not-found(100),
-- The specified connection does not exists
endpt-exists(101),
-- AddConn error, Endpt already exists
lendpt-exists(102),
-- AddConn error, Local Endpt already exists
rendpt-exists(103),
-- AddConn error, Remote Endpt already exists
lendpt-missing(104),
-- svConnLocalEndPt is missing from the SET request
rendpt-missing(105),
-- svConnRemoteEndPt is missing from the SET request
db-lendpt-not-found(106),
-- Could not find Local Endpt in Database
db-rendpt-not-found(107),
-- Could not find Remote Endpt in Database
lendpt-not-found(108),
-- svConnLocalEndPt specified does not exists
rendpt-not-found(109),
-- svConnRemoteEndPt specified does not exists
dangling-endpt(110),
-- The Endpt is part of an incomplete connection
endpt-rowstatus-missing(111),
-- frEndPointRowStatus is missing from the SET request
conn-rowstatus-missing(112),
-- svConnRowStatus is missing from the SET request
invalid-endpt-rowstatus(113),
-- End point RowStatus can not be set to Active
invalid-conn-rowstatus(114),
-- svConnRowStatus can not be set to Active
invalid-connindex(115),
-- Invalid connection Index used for AddConn
testtype-missing(116),
-- svConnTestType is missing from the SET Request
partial-add(117),
-- Connection is added, but modification failed
partial-mod(118),
-- Endpt is modified, but connection params not modified
invalid-bw(119),
-- Invalid BandWidth param relationship.
not-active(120),
-- Connection is not in active state
invalid-adminstatus(121),
-- svConnAdminStatus can be SET to testing only
not-clear(122),
-- svConnOpStatus is not in clear state
invalid-endpt-comb(123),
-- Invalid Endpt combination for the connection
invalid-chantype(124),
-- Invalid chanType for the given Endpt combination
cmgrd-timeout(125),
-- No response from the demon cmgrd
no-cmgrd(126),
-- The demon cmgrd is not running
ronly-for-frp(127),
-- Object is read-only for FRP(IPX) Endpt
invalid-chanFECNconfig(128),
-- Invalid chanFECNconfig for the given chanType
invalid-chanCLPtoDEmap(129),
-- Invalid chanCLPtoDEmap for the given chanType
ibs-less-bc(130),
-- InitialBurstSize(IBS) should be less than or equal to Bc
invalid-NRM(131),
--Invalid NRM value.
invalid-TBE(132),
--Invalid value for Transient Buffer Exposure.
foresight-disabled(133),
-- PIR, MIR and QIR can not be Modified for AXIS endpt,
-- when Foresight is disabled
invalid-FRTT(134),
--Invalid value for the Fixed Round-Trip Time.
invalid-VSVD(135),
--Invalid value for Virtual Source/Virtual Destination
invalid-Policing(136),
--Invalid the traffic policing value.
invalid-PCRZeroPlus1 (137),
--invalid Peak Cell Rate .
invalid-atmEndPointCDVTZeroPlus1 (138),
--Cell Delay Variation Tolerance.
invalid-MCR (139),
--minimum cell rate.
invalid-PercUtil(140),
--percentage utilization setting.
invalid-SCRZeroPlus1 (141),
--Sustainable Cell Rate.
invalid-MBS (142),
--Committed Burst Size.
invalid-FGCRA(143),
--FGCRA
invalid-BCM (144),
--BCM cell enable or disable
invalid-ICR (145),
--Initial Cell Rate.
invalid-RateUp(146),
--The ForeSight Rate Up value
invalid-RateDown (147),
--The ForeSight Rate Down value
invalid-ICRTO(149),
--Initial Cell Rate Time out
invalid-MinAdjustPeriod(150),
--The ForeSight minimum adjustment value
invalid-connectionOvrSubOvrRide(151),
--The oversubsribe value
policing-not-settable-on-axis(152),
-- Policing can not be SET for AXIS
rateup-not-settable-on-axis(153),
-- Rateup can not be SET for AXIS
ratedown-not-settable-on-axis(154),
-- RateDown can not be SET for AXIS
frtt-not-settable-on-axis(155),
-- FRTT can not be SET for AXIS
tbe-not-settable-on-axis(156),
-- TBE can not be SET for AXIS
vsvd-not-settable-on-axis(157),
-- VSVD can not be SET for AXIS
icrto-not-settable-on-axis(158),
-- ICRTimeout can not be SET for AXIS
minadj-not-settable-on-axis(159),
-- MinAdjust can not be SET for AXIS
nrm-not-settable-on-axis(160),
-- NRM can not be SET for AXIS
bcm-not-settable-on-axis(161),
-- BCM can not be SET for AXIS
connSubType-not-settable-for-MODIFY(162),
-- connSubType can not be SET for MODIFY conn.
connSubType-conflicts-with-endPoints(163),
-- connSubType does not fit the End Points
invalid-value-atmEndPointHiCLP(164),
-- atmEndPointHiCLP value invalid
invalid-value-atmEndPointLoCLP(165),
-- atmEndPointLoCLP value invalid
invalid-value-atmEndPointVcQSize(166),
-- atmEndPointVcQSize value invalid
invalid-value-atmEndPointEfciQSize(167),
-- atmEndPointEfciQSize value invalid
invalid-value-atmEndPointIBS(168),
-- atmEndPointIBS value invalid
subType-na-for-axis(200),
-- Specified Subtype Not supported on AXIS cards
no-error-entry(500),
-- No entries available in the ErrorTable
not-applicable(501),
-- Error Code not relevant, rely on Error Description
invalid-flushall(502)
-- Can not set to noOp for svCmpaErrorFlushAll
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This contains the error code of the last error
generated. If error table contains no errors,
GET on this object returns 500"
::= { connGroup 12 }
ceEndPointTable
-- This is the table describing an cesm (CE-CE) connection end-point.
-- Each connection (virtual circuit or ) end-point describes the
-- particular characteristics of the end-point.
ceEndPointTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeEndPointEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The ce End-Point table. This table
is used to model a PVC end-point. This table
contains the traffic parameters for ce end-point."
::= { connGroup 14 }
ceEndPointEntry OBJECT-TYPE
SYNTAX CeEndPointEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry in the ce End-point table."
INDEX { ceEndPointNodeName, ceEndPointIfShelf, ceEndPointSlot,
ceEndPointPort }
::= { ceEndPointTable 1 }
CeEndPointEntry ::=
SEQUENCE {
ceEndPointNodeName DisplayString,
ceEndPointIfShelf DisplayString,
ceEndPointSlot INTEGER,
ceEndPointPort INTEGER,
ceEndPointConnIndex INTEGER,
ceEndPointOpStatus INTEGER,
ceEndPointRowStatus INTEGER,
ceEndPointType INTEGER,
ceEndPointBufMaxSize INTEGER,
ceEndPointCDVRxT INTEGER,
ceEndPointCellLossPeriod INTEGER
}
ceEndPointNodeName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..10))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Node name of this endpoint."
::= { ceEndPointEntry 1 }
ceEndPointIfShelf OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..10))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Shelf name of this endpoint. If no shelf name than this
value is a NULL string."
::= { ceEndPointEntry 2 }
ceEndPointSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { ceEndPointEntry 3 }
ceEndPointPort OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Logical Port Number. These are numbered starting at 1.
For CESM4 the range is from 1 to 4."
::= { ceEndPointEntry 4 }
ceEndPointConnIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "If the value of this object is greater than 0 then it is
the index identifying the associated svConnEntry."
::= { ceEndPointEntry 5 }
ceEndPointOpStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
clear(2),
fail(3),
down(4),
unknown(200)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Operational Status of the end point.
unknown is returned in case we are not able to find
out the operational status."
::= { ceEndPointEntry 6 }
ceEndPointRowStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
createAndGo(4),
destroy(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The manager must set this to 'createAndGo' when creating
a new entry. Other required elements can also be set in the
same SET request"
::= { ceEndPointEntry 7 }
ceEndPointType OBJECT-TYPE
SYNTAX INTEGER {
cesm-Atm(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Identifies a type of this end point."
::= { ceEndPointEntry 8 }
ceEndPointBufMaxSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum size in octets of egress buffer
"
DEFVAL { 376 }
::= { ceEndPointEntry 9 }
ceEndPointCDVRxT OBJECT-TYPE
SYNTAX INTEGER (1000..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum cell arrival jitter in 10 microsecond
increments that the reassembly process will tolerate
"
DEFVAL { 100 }
::= { ceEndPointEntry 10 }
ceEndPointCellLossPeriod OBJECT-TYPE
SYNTAX INTEGER (1000..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the cell loss integration period in milliseconds
"
DEFVAL { 2500 }
::= { ceEndPointEntry 11 }
--
-- The atmEndPointTable is used to model a PVC end-point.
-- It contains the traffic parameters for an ATM end-point
-- with different service types: CBR, VBR, ABR, and UBR.
--
-- For CBR service type, the traffic parameters used are:
-- atmEndPointPCRZeroPlus1
-- atmEndPointCDVTZeroPlus1
-- atmEndPointPercUtil
--
-- For UBR service type, the traffic parameters used are:
-- atmEndPointPCRZeroPlus1
-- atmEndPointCDVTZeroPlus1
-- atmEndPointFGCRA
-- atmEndPointPercUtil
--
-- For VBR service type, the traffic parameters used are:
-- atmEndPointPCRZeroPlus1
-- atmEndPointCDVTZeroPlus1
-- atmEndPointPercUtil
-- atmEndPointSCRZeroPlus1
-- atmEndPointMBS
-- atmEndPointFGCRA
--
-- For ABR (abr-fs) with ForeSight service type, the traffic parameters used are:
-- atmEndPointPCRZeroPlus1
-- atmEndPointCDVTZeroPlus1
-- atmEndPointMCR
-- atmEndPointPercUtil
-- atmEndPointSCRZeroPlus1
-- atmEndPointMBS
-- atmEndPointFGCRA
-- atmEndPointBCM
-- atmEndPointICR
-- atmEndPointRateUp
-- atmEndPointRateDown
-- atmEndPointICRTO
-- atmEndPointMinAdjustPeriod
-- For ABR (abr-1) without ForeSight service type, the traffic parameters used are:
-- atmEndPointPCRZeroPlus1
-- atmEndPointCDVTZeroPlus1
-- atmEndPointSCRZeroPlus1
-- atmEndPointMBS
-- atmEndPointFGCRA
-- atmEndPointBCM
-- atmEndPointPercUtil
-- atmEndPointICR
-- atmEndPointMinAdjustPeriod
-- atmEndPointRateUp
-- atmEndPointRateDown
-- atmEndPointNRM
-- atmEndPointTBE
-- atmEndPointFRTT
-- atmEndPointVSVD
-- atmEndPointPolicing
atmEndPointTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmEndPointEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The ATM End-Point table. This table
is used to model a PVC end-point. This table
contains the traffic parameters for ATM end-point."
::= { connGroup 15 }
atmEndPointEntry OBJECT-TYPE
SYNTAX AtmEndPointEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry in the ATM End-point table."
INDEX { atmEndPointNodeName, atmEndPointIfShelf, atmEndPointSlot,
atmEndPointPort, atmEndPointVpi, atmEndPointVci }
::= { atmEndPointTable 1 }
AtmEndPointEntry ::=
SEQUENCE {
atmEndPointNodeName DisplayString,
atmEndPointIfShelf DisplayString,
atmEndPointSlot INTEGER,
atmEndPointPort INTEGER,
atmEndPointVpi INTEGER,
atmEndPointVci INTEGER,
atmEndPointConnIndx INTEGER,
atmEndPointOpStatus INTEGER,
atmEndPointRowStatus INTEGER,
atmEndPointType INTEGER,
atmEndPointPCRZeroPlus1 INTEGER,
atmEndPointCDVTZeroPlus1 INTEGER,
atmEndPointMCR INTEGER,
atmEndPointPercUtil INTEGER,
atmEndPointSCRZeroPlus1 INTEGER,
atmEndPointMBS INTEGER,
atmEndPointFGCRA INTEGER,
atmEndPointBCM INTEGER,
atmEndPointICR INTEGER,
atmEndPointRateUp INTEGER,
atmEndPointRateDown INTEGER,
atmEndPointICRTO INTEGER,
atmEndPointMinAdjustPeriod INTEGER,
atmEndPointNRM INTEGER,
atmEndPointTBE INTEGER,
atmEndPointFRTT INTEGER,
atmEndPointVSVD INTEGER,
atmEndPointPolicing INTEGER,
atmEndPointHiCLP INTEGER,
atmEndPointLoCLP INTEGER,
atmEndPointVcQSize INTEGER,
atmEndPointEfciQSize INTEGER,
atmEndPointIBS INTEGER
}
atmEndPointNodeName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..10))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Node name of this endpoint."
::= { atmEndPointEntry 1 }
atmEndPointIfShelf OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..10))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Shelf name of this endpoint. If no shelf name than this
value is a NULL string."
::= { atmEndPointEntry 2 }
atmEndPointSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { atmEndPointEntry 3 }
atmEndPointPort OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Logical Port Number.
The range for different types of ATM ports:
BPX ASI -- (1..2)
BPX BXM (Monarch) -- (1..12)
AXIS AUSM-4 -- (1..4)
AXIS AUSM-8 -- (1..8)
"
::= { atmEndPointEntry 4 }
atmEndPointVpi OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Virtual path index."
::= { atmEndPointEntry 5 }
atmEndPointVci OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "virtual channel index.
For VP only connection, the value
of virtual channel index is zero."
::= { atmEndPointEntry 6 }
atmEndPointConnIndx OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "If the value of this object is greater than 0 then it is
the index identifying the associated svConnEntry."
::= { atmEndPointEntry 7 }
atmEndPointOpStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
clear(2),
fail(3),
down(4),
unknown(200)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Operational Status of the end point.
unknown is returned in case we are not able to find
out the operational status."
::= { atmEndPointEntry 8 }
atmEndPointRowStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
createAndGo(4),
destroy(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The manager must set this to 'createAndGo' when creating
a new entry. Other required elements can also be set in the
same SET request"
::= { atmEndPointEntry 9 }
atmEndPointType OBJECT-TYPE
SYNTAX INTEGER {
asi-Atm(1),
ausm-Atm(2),
bni-Atm(3),
ausm-8-Atm(4),
ausm-8-Aim(5),
bxm-Atm(6),
unknown(200)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Identifies a type of atm end point.
unknown is returned if we are not able to find
the ATM End point type. Note: ausm-Atm(2)refers
to AUSM 4 card, and ausm-8-Atm(4) to AUSM 8 card"
::= { atmEndPointEntry 10 }
atmEndPointPCRZeroPlus1 OBJECT-TYPE
SYNTAX INTEGER (10..1412832)
ACCESS read-write
STATUS mandatory
DESCRIPTION "PCR(0+1), Peak Cell Rate, specifies an upper bound on
rate at which traffic can be submitted on an ATM
connection. This object applies to the First Leaky
Bucket for leaving cells with Cell Loss Priority of 0 or 1.
. Unit is cells per second.
. For AXIS, value range is 10 cells per
second - port rate, and maximum does not
exceed the port rate.
. Applicable connection types:
UBR, CBR, VBR, ABR.FS, ABR.1
. Ranges:
T3 : MCR-96000
E3 : MCR-80000
OC3 : MCR-353208
OC12: MCR-1412832
"
DEFVAL { 50 }
::= { atmEndPointEntry 11 }
atmEndPointCDVTZeroPlus1 OBJECT-TYPE
SYNTAX INTEGER (1..250000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Compliant Cell Delay Variation. Also known as
CDVT(0+1), Cell Delay Variation Tolerance, which
specifies the maximum time period for accumulated
violations of cell-arrival time parameters. This object
applies to the First Leaky bucket for cells with Cell
Loss Priority of 0 or 1.
. Units: microseconds.
. Applicable connection types:
UBR, CBR, VBR, ABR.FS, ABR.1
. Defaults:
CBR: 10000
Others: 250000
. Dependency: This object is not allowed for
BPX->IPX atf/atfst connections.
"
::= { atmEndPointEntry 12 }
atmEndPointMCR OBJECT-TYPE
SYNTAX INTEGER (0..1412832)
ACCESS read-write
STATUS mandatory
DESCRIPTION "MCR, Minimum Cell Rate, specifies the rate at which
the source is always allowed to send. Maximum does
not exceed the port rate.
. Units: cells per second.
. Applicable connection types:
ABR.1, ABR.FS
. Range:
. ASI/BNI
T3 : 0-96000
E3 : 0-80000
OC3 : 0-353208
. BXM
T3 : 50-96000
E3 : 50-80000
OC3 : 50-353208
OC12: 50-1412832
"
DEFVAL { 50 }
::= { atmEndPointEntry 13 }
atmEndPointPercUtil OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is equal to the channel
percentage utilization setting for this end-point.
This is the expected long-term utilization of the
channel by this end-point.
. default value
. ASI, BXM cards - UBR: 1
. others: 100
"
::= { atmEndPointEntry 14 }
atmEndPointSCRZeroPlus1 OBJECT-TYPE
SYNTAX INTEGER (7..1412832)
ACCESS read-write
STATUS mandatory
DESCRIPTION "SCR, Sustainable Cell Rate, is an upper bound on the
conforming average rate of an ATM connection, over
time scales which are long relative to those for which
the PCR is defined. Enforcement of this bound by the UPC
could allow the network to allocate sufficient resources,
but less than those based on the PCR, and still ensure
that the performance objectives (e.g., Cell Loss Ratio)
can be achieved.
. Units: cell per second.
. Applicable connection types:
. VBR
. ABR.1, ABR.FS: VSVD = enable(1)
. Ranges:
. ASI/BNI
T3 : 7-96000
E3 : 7-80000
OC3 : 7-353208
. BXM
T3 : 50-96000
E3 : 50-80000
OC3 : 50-353208
OC12: 50-1412832
. AUSM: 10 - Port Speed
. Maximum does not exceed the port rate
. Default:
ASI, BXM: 50
AUSM : Port Speed
. For ASI-T3 and E3 interfaces only multiples of 10
are used internally.
.For ASI-OC3 interfaces only values in the following
set are used internally:
11, 17, 23, 34, 45, 68, 90, 136, 181,
271, 362, 543, 723, 1085, 1447, 2170,
2894, 4340, 5787, 8681, 11574, 17361,
23148, 34722, 46296, 69444, 92593,
138889, 185185, 277778.
Values between 277778 and 353208 are all valid
for ASI-OC3 interfaces.
All values in the valid range for a given
interface will be accepted, but they will be
internally rounded up to the closest higher
value valid for that interface.
. For Monarch OC3 and OC12, no rounding will be applied.
"
::= { atmEndPointEntry 15 }
atmEndPointMBS OBJECT-TYPE
SYNTAX INTEGER (1..5000000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The object corresponds to CBS (Committed Burst Size).
. Units: cells
. Applicable connection types:
. VBR
. ABR.1, ABR.FS: VSVD = enable(1)
. Default:
. VBR(AUSM, ASI,BXM), ABR.1(ASI,BXM): 1000
. ABR.FS(ASI,BXM): 1000
. ABR.FS(AUSM) : 5000
. Range:
BXM : 1-5000000
ASI : 1-24000
"
::= { atmEndPointEntry 16 }
atmEndPointFGCRA OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "FGCRA (Frame-based Generic Rate Control Algorithm),
applicable with AAL-5 traffic only, so it
is also known as AAL5 Frame-based Traffic Control (FBTC).
. Applicable connection types:
. UBR, VBR, ABR.1, ABR.FS
. ATFR(VBR.3): Cannot be set, but always enable(1).
"
DEFVAL { disable }
::= { atmEndPointEntry 17 }
atmEndPointBCM OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "This object is used to enable or
disable BCM cells when congestion is
detected in the connection (Flow Control
External Segment). The default is BCM
disabled. Note that this option is not for
for an end point terminating on an AUSM
card.
. Applicable connection types:
ABR.1, ABR.FS
"
DEFVAL { disable }
::= { atmEndPointEntry 18 }
atmEndPointICR OBJECT-TYPE
SYNTAX INTEGER (0..1412832)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Initial Cell Rate, the rate at which a
source should send initially, and after an
idle period.
. Units: cells per second
. Applicable connection types:
. ABR.1, ABR.FS
. The value range is 0 - port speed per second.
Maximum does not exceed the port rate.
"
DEFVAL { 50 }
::= { atmEndPointEntry 19 }
atmEndPointRateUp OBJECT-TYPE
SYNTAX INTEGER (0..1412832)
ACCESS read-write
STATUS mandatory
DESCRIPTION "ABR rate adjustment up. Also known as RIF, Rate Increase
Factor, which controls the amount by which the cell
transmission rate may increase upon receipt of an RM-cell.
Applicable to abr-fs (ABR with foresight service) or
abr-1 (standard ABR connections).
On BPX, if the service type is abr-fs,
this object should be in absolute values of
cells per second up to the PCR.
On BPX, if the service type is abr-1
(standard ABR connections),
the value range of this object should be
(1 to 32768) and the value should be in '2 to the power n',
where n = 0 - 15. The default is 1.
The unit is just a factor,
which is used to compute the cells per sec.
Dependency: VSVD = enable(1)
Not supported for AXIS."
::= { atmEndPointEntry 20 }
atmEndPointRateDown OBJECT-TYPE
SYNTAX INTEGER (0..32768)
ACCESS read-write
STATUS mandatory
DESCRIPTION "ABR rate adjustment down. Also known as RDF, Rate Decrease
Factor, which controls the amount by which the cell
transmission rate may decrease upon receipt of an RM-cell.
Applicable to abr-fs (ABR with foresight service) or
abr-1 (standard ABR connections).
On BPX, if the service type is abr-fs,
the unit is in percentage (0%-100%).
On BPX, if the service type is abr-1
(standard ABR connections),
the value range of this object should be
(1 to 32768) and in '2 to the power n', where n = 0 - 15.
The default is 1. The unit is just a factor
which is used to compute the cells per sec.
Dependency: VSVD = enable(1).
Not supported for AXIS."
::= { atmEndPointEntry 21 }
atmEndPointICRTO OBJECT-TYPE
SYNTAX INTEGER (62..255000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "QIR timeout value.
Also known as ACR Decrease Time Factor (ADTF),
which is the time permitted between sending
RM-cells before the rate is decreased to ICR.
. Units: milliseconds
. Applicable connection types:
standard ABR.1, ABR.FS: VSVD = enable(1)
. Dependency:
. ASI: 1000 - 255000
. BXM: 62 - 8000
. Not supported for AXIS.
"
DEFVAL { 1000 }
::= { atmEndPointEntry 23 }
atmEndPointMinAdjustPeriod OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "ForeSight minimum adjustment period. Also known
as TRM, which provides an upper bound on the time
between forward RM-cells for an active source.
. Units: milliseconds.
. Applicable connection types:
. ABR.1, ABR.FS: VSVD = enable(1)
.Not supported for AXIS."
DEFVAL { 100 }
::= { atmEndPointEntry 24 }
atmEndPointNRM OBJECT-TYPE
SYNTAX INTEGER (2..256)
ACCESS read-write
STATUS mandatory
DESCRIPTION "NRM is the maximum number of cells a source may send
for each forward RM-cell.
Units: cells
Applicable connection types: standard ABR only
Dependency: VSVD = enable(1)
This object applies only to ABR(abr-1) without Foresight.
Not supported for AXIS."
DEFVAL { 32 }
::= { atmEndPointEntry 25 }
atmEndPointTBE OBJECT-TYPE
SYNTAX INTEGER (0..1048320)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Transient Buffer Exposure (TBE) is the negotiated number
of cells that the network would like to limit the source
to sending during startup periods, before the first
RM-cell returns.
Units: cells
Applicable connection types: standard ABR only
Dependency: VSVD = enable(1)
This object applies only to ABR(abr-1) without ForeSight.
Not supported for AXIS.
"
DEFVAL { 1048320 }
::= { atmEndPointEntry 26 }
atmEndPointFRTT OBJECT-TYPE
SYNTAX INTEGER (0..16700)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Fixed Round-Trip Time (FRTT) is the sum of the fixed
and propagation delays from the source to a destination
and back.
Units: milliseconds.
Dependency: VSVD = enable(1)
This object applies only to ABR(abr-1) without ForeSight.
Not supported for AXIS.
"
DEFVAL { 0 }
::= { atmEndPointEntry 27 }
atmEndPointVSVD OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Virtual Source/Virtual Destination (VS/VD) is used to
divide an ABR connection into two or more separately
controlled ABR segment. This flag indicates whether
the ATM end points (both ends) will serve as VS/VD
or not.
This object applies only to ABR(abr-1) without ForeSight.
Not supported for AXIS.
"
DEFVAL { disable }
::= { atmEndPointEntry 28 }
atmEndPointPolicing OBJECT-TYPE
SYNTAX INTEGER {
policingVbr1(1),
policingVbr2(2),
policingVbr3(3),
policingPcrplc(4),
none(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specifies the traffic policing for this end point.
--------------- ---------- ----------
Policing Type 1st Bucket 2nd Bucket
--------------- ---------- ----------
none none none
policingVbr1 CLP(0+1) CLP(0+1)
policingVbr2 CLP(0+1) CLP(0)
policingVbr3 CLP(0+1) CLP(0) with CLP Tagging
policingPcrplc CLP(0+1) none
This object applies only to ABR(abr-1) without ForeSight.
Not supported for AXIS.
"
::= { atmEndPointEntry 29 }
atmEndPointHiCLP OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "CLP (Cell Loss Priority) tagging activation threshold.
. Units: % of VCQ Size
. Applicable connections:
ATFST
. Default: 80%
. Dependency: VSVD = enable(1)
"
::= { atmEndPointEntry 30 }
atmEndPointLoCLP OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "CLP (Cell Loss Priority) tagging deactivation threshold.
. Units: % of VCQ Size
. Applicable connections:
ATFST
. Default: 35%
. Dependency: VSVD = enable(1)
"
::= { atmEndPointEntry 31 }
atmEndPointVcQSize OBJECT-TYPE
SYNTAX INTEGER (1..64000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Maximum VC queue depth.
. Units: cells
. Applicable connection types:
ATFR, ATFST
. Default: 1366
. Applicable cards:
. ASI: T3/E3 only: 1-1366 cells
. BXM: 1-61440 cells
. Dependency: VSVD = enable(1)
"
::= { atmEndPointEntry 32 }
atmEndPointEfciQSize OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The threshold setting used by the explicit congestion
notification feature for this end-point's
transmit queue.
. Units: percentage
. Applicable connection types:
ATFR, ATFST
. Defalut: 100%
"
::= { atmEndPointEntry 33 }
atmEndPointIBS OBJECT-TYPE
SYNTAX INTEGER (0..24000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Initial Burst Size (IBS).
. Units: cells
. Applicable connection types: ATFR, ATFST
. Default: 1
. Applicable cards:
. ASI-T3/E3: 1-107 cells
. ASI-155: 0-999 cells
. BXM: 0-24000 cells
"
::= { atmEndPointEntry 34 }
The Frame Relay end point table.
-- Each connection (virtual circuit or PVC) end-point describes the
-- particular characteristics of the end-point. Such information
-- as bandwidth parameters are maintained in the end-point.
frEndPointTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrEndPointEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A List of frame relay virtual circuit end points"
::= { connGroup 16 }
frEndPointEntry OBJECT-TYPE
SYNTAX FrEndPointEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A frame relay end point Entry"
INDEX { frEndPointNodeName, frEndPointIfShelf, frEndPointSlot,
frEndPointLine, frEndPointPort, frEndPointDlci }
::= { frEndPointTable 1 }
FrEndPointEntry ::=
SEQUENCE {
frEndPointNodeName DisplayString,
frEndPointIfShelf DisplayString,
frEndPointSlot INTEGER,
frEndPointPort INTEGER,
frEndPointDlci INTEGER,
frEndPointConnIndex INTEGER,
frEndPointOpStatus INTEGER,
frEndPointRowStatus INTEGER,
frEndPointMIR INTEGER,
frEndPointCIR INTEGER,
frEndPointBc INTEGER,
frEndPointBe INTEGER,
frEndPointVcQSize INTEGER,
frEndPointPIR INTEGER,
frEndPointCMAX INTEGER,
frEndPointEcnQSize INTEGER,
frEndPointQIR INTEGER,
frEndPointPercUtil INTEGER,
frEndPointPriority INTEGER,
frEndPointInitialBurstSize INTEGER,
frEndPointDeTagging INTEGER,
frEndPointIngressDeThreshold INTEGER,
frEndPointEgressQDepth INTEGER,
frEndPointEgressDeThreshold INTEGER,
frEndPointEgressEcnThreshold INTEGER,
frEndPointEgressQSelect INTEGER,
frEndPointLpbkState INTEGER,
frEndPointType INTEGER,
frEndPointchanType INTEGER,
frEndPointchanFECNconfig INTEGER,
frEndPointchanDEtoCLPmap INTEGER,
frEndPointchanCLPtoDEmap INTEGER,
frEndPointLine INTEGER
}
frEndPointNodeName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-write
STATUS mandatory
DESCRIPTION "The node name."
::= { frEndPointEntry 1 }
frEndPointIfShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-write
STATUS mandatory
DESCRIPTION "String identifying the shelf. This is a null string
for end points which do not have a shelf name."
::= { frEndPointEntry 2 }
frEndPointSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { frEndPointEntry 3 }
frEndPointPort OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Logical Port Number.
One exception, physical port for AXIS FRSM."
::= { frEndPointEntry 4 }
frEndPointDlci OBJECT-TYPE
SYNTAX INTEGER (0..16383)
ACCESS read-only
STATUS mandatory
DESCRIPTION "DLCI.
The valid range is 0..1023, and a special value 16383.
when the port type is frp frame forwarding,
only one dlci is specified and its value is 16383(0x3fff).
when the port type is frsm frame forwarding,
only one dlci is specified and its value is 1000."
::= { frEndPointEntry 5 }
frEndPointConnIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION "If the value of this object is greater than 0 then it is
the index identifying the associated svConnEntry.
Value 0 indicates dangling end point."
::= { frEndPointEntry 6 }
frEndPointOpStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
clear(2),
fail(3),
down(4),
alarm(16)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION " Operational Status of the end point.
The value 'alarm' may only occur with and end point whose
frEndPointCardType = 'frsm'. When frEndPointOpStatus has the value
'alarm' then either the slot, the line, or the port containing this
endpoint has an alarm."
::= { frEndPointEntry 7 }
frEndPointRowStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
createAndGo(4),
destroy(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The manager must set this to 'createAndGo' when creating
a new entry. Other end point parameters also can be set
in the same request.
'destroy' is only supported when the end point is not part
of an end to end connection.
seitting the value to active will result in bad value."
::= { frEndPointEntry 8 }
frEndPointMIR OBJECT-TYPE
SYNTAX INTEGER (2400..52000000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The minimum transmit bandwidth (MIR) parameter
(in bits per second) for this end-point. This object
has the relationship MIR <= QIR <= PIR.
This attribute can only be set to values evenly divisable by 100."
DEFVAL { 19200 }
::= { frEndPointEntry 9 }
frEndPointCIR OBJECT-TYPE
SYNTAX INTEGER (2400..52000000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is equal to the committed
information rate (CIR) parameter (in bits
per second) for this end-point.
This attribute can only be set to values evenly divisable by 100."
DEFVAL { 19200 }
::= { frEndPointEntry 10 }
frEndPointBc OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is equal to the committed
burst size (Bc) parameter (in bytes) for
this end-point.
When frEndPointCardType is 'fr', this aittribute is
calculated as follows and should NOT be set:
Bc = (VcQSize/(1 - MIR/port access rate)).
When frEndPointCardType is 'frsm' the value is NOT calculated
and is assigned the default value unless it is set."
DEFVAL { 5100 }
::= { frEndPointEntry 11 }
frEndPointBe OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is equal to the excess
burst size (Be) parameter (in bytes) for
this end-point.
When frEndPointCardType is 'fr', this attribute is
calculated as follows and should NOT be set:
Be = Bc * (PIR/MIR - 1)
When frEndPointCardType is 'frsm' the value is NOT calculated
and is assigned the default value unless it is set."
DEFVAL { 5100 }
::= { frEndPointEntry 12 }
frEndPointVcQSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is the maximum queue depth
(in bytes) for this end-point."
DEFVAL { 65535 }
::= { frEndPointEntry 13 }
frEndPointPIR OBJECT-TYPE
SYNTAX INTEGER (2400..52000000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The peak transmit bandwidth (PIR) parameter
(in bits per second) for this end-point.
This attribute can only be set to values evenly divisable by 100."
DEFVAL { 19200 }
::= { frEndPointEntry 14 }
frEndPointCMAX OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum credits that can be accrued for this
end-point. This is not applicable for AXIS-frsm channels."
DEFVAL { 10 }
::= { frEndPointEntry 15 }
frEndPointEcnQSize OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The threshold setting used by the explicit congestion
notification feature for this end-point's
transmit queue. This value is specified in bytes.
When the frEndPointVcQSize value exceeds this value
then the FECN bit will be set in all frames transmitted
to the remote end-point."
DEFVAL { 6553 }
::= { frEndPointEntry 16 }
frEndPointQIR OBJECT-TYPE
SYNTAX INTEGER (2400..52000000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The transmit quiescent information rate (QIR) parameter
(in bits per second) for this end-point.
This value has the relationship MIR <= QIR <= PIR.
This attribute can only be set to values evenly divisable by 100."
DEFVAL { 19200 }
::= { frEndPointEntry 17 }
frEndPointPercUtil OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is equal to the channel
percentage utilization setting for this end-point.
This is the expected long-term utilization of the
channel by this end-point."
DEFVAL { 100 }
::= { frEndPointEntry 18 }
frEndPointPriority OBJECT-TYPE
SYNTAX INTEGER {
low(1),
high(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Priority for the Egress End.
The value of this object determines the priority
that is given to the data carried by this . If
set to low, then the data is given the standard
priority, and if set to high, the data will be
given a higher priority. Higher priority data
is placed at the beginning of the port's queues.
NOTE:
For a single segment connection(IPX-Routing to IPX-Routing),
SET on frEndPointPriority is allowed for the local endpt only.
i.e., SET on frEndPointPriority on the remote endpt is ignored.
frEndPointPriority for the remote endpt gets the same value as
that of the local endpt.
This is not applicable for AXIS-frsm channels."
DEFVAL { low }
::= { frEndPointEntry 19 }
frEndPointInitialBurstSize OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Initial burst size in bytes.
Note that InitialBurstSize should be less than or equal to Bc.
This is valid for frEndPointType of 'frsm'."
DEFVAL { 100 }
::= { frEndPointEntry 20 }
frEndPointDeTagging OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Enable/disable DE tagging in the ingress direction only.
This is valid for frEndPointType of 'frsm'."
DEFVAL { disable }
::= { frEndPointEntry 21 }
frEndPointIngressDeThreshold OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Ingress threshold at which deletion occurs based on DE.
This is valid for frEndPointType of 'frsm'."
DEFVAL { 32768 }
::= { frEndPointEntry 22 }
frEndPointEgressQDepth OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Egress Q Depth. This is valid for frEndPointType of 'frsm'."
DEFVAL { 65535 }
::= { frEndPointEntry 23 }
frEndPointEgressDeThreshold OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Egress threshold at which deletion occurs based on DE.
This is valid for frEndPointType of 'frsm'."
DEFVAL { 32768 }
::= { frEndPointEntry 24 }
frEndPointEgressEcnThreshold OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "ECN threshold. This is valid for frEndPointType of 'frsm'."
DEFVAL { 65535 }
::= { frEndPointEntry 25 }
frEndPointEgressQSelect OBJECT-TYPE
SYNTAX INTEGER {
highPriority(1),
lowPriority(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Selects one out of two possible port queues.
The default port queue number is 2 which is the low
priority queue.
This is valid for frEndPointType of 'frsm'."
DEFVAL { highPriority }
::= { frEndPointEntry 26 }
frEndPointLpbkState OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The state of loopback mode for the end point. This is a
bit mapped integer with the values defined as follows:
local 1
remote 2
port 4
csu 8
dsu 16
external 32
testcon 64
"
::= { frEndPointEntry 27 }
frEndPointType OBJECT-TYPE
SYNTAX INTEGER {
frp-fr(1),
ait-fr(2),
frsm-fr(3),
frsm-FUNI(4),
frsm-FF(5),
frp-FF(6),
unknown(200)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Identifies the type of fr end point.
unknown is returned if we are not able to find
the FR End point type."
::= { frEndPointEntry 28 }
frEndPointchanType OBJECT-TYPE
SYNTAX INTEGER {
frNIW(1),
frSIW-transparent(2),
frSIW-translate(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "(1) is frame-relay network interworking,
(2) is service interworking with out any SDU translation,
(3) is service interworking with SDU translation."
DEFVAL { frNIW }
::= { frEndPointEntry 29 }
frEndPointchanFECNconfig OBJECT-TYPE
SYNTAX INTEGER {
mapEFCI(1),
setEFCIzero(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The FECN bits in frame-relay are mapped to EFCI bit
in the ATM cells. mapEFCI is valid only for SIW.
This is only valid for frEndPointType of 'frsm'."
DEFVAL { setEFCIzero }
::= { frEndPointEntry 30 }
frEndPointchanDEtoCLPmap OBJECT-TYPE
SYNTAX INTEGER {
mapCLP(1),
setCLPzero(2),
setCLPone(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "For (1), The DE bit is mapped to CLP bit in ATM cell.
For (2) and (3), the DE bit is ignored and CLP bit
is set to the constant value.
This is only valid for frEndPointType of 'frsm'."
DEFVAL { mapCLP }
::= { frEndPointEntry 31 }
frEndPointchanCLPtoDEmap OBJECT-TYPE
SYNTAX INTEGER {
mapDE(1),
setDEzero(2),
setDEone(3),
ignoreCLP(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Values (1), (2) and (3) are valid for SIW.
Values (1) and (4) are valid for NIW.
For (1), the CLP bit is mapped to DE bit in frame-relay.
For (2) and (3), the CLP bit is ignored and DE bit
is set to the constant value.
ignoreCLP ignores CLP bit and DE bit remains as received.
This is only valid for frEndPointType of 'frsm'."
DEFVAL { mapDE }
::= { frEndPointEntry 32 }
frEndPointLine OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Physical Line associated with this port.
The value of this object is applicable to AXIS FRSM only
and is used mainly for the MIB indexing purpose.
Get:
value 0 is returned for ports other than AXIS FRSM.
Set:
value 0 must be used for ports other than AXIS FRSM."
::= { frEndPointEntry 33 }
-- Table for PVCs in Alarmed state.
-- Note that Incomplete PVCs do not fall into this category.
-- Expected performance:
-- walk on this table gives 25 objects/sec.
NOTE: For performance reasons data in this table is cached
-- for 5 mts. Real time changes occured within 5 mts.
-- may not be reflected in the data provided to the
-- SNMP managers.
svConnAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvConnAlarmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Table for PVCs in Alarmed state."
::= { connGroup 17 }
svConnAlarmEntry OBJECT-TYPE
SYNTAX SvConnAlarmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "PVC Alarm Entry.
Indexed by the Local EndPt information of the PVC."
INDEX { svConnAlarmNode, svConnAlarmShelf,
svConnAlarmSlot, svConnAlarmLine, svConnAlarmPort,
svConnAlarmVpiOrDlci, svConnAlarmVci }
::= { svConnAlarmTable 1 }
SvConnAlarmEntry ::=
SEQUENCE {
svConnAlarmNode DisplayString,
svConnAlarmShelf DisplayString,
svConnAlarmSlot INTEGER,
svConnAlarmLine INTEGER,
svConnAlarmPort INTEGER,
svConnAlarmVpiOrDlci INTEGER,
svConnAlarmVci INTEGER,
svConnAlarmRemoteEnd OBJECT IDENTIFIER,
svConnAlarmConnType INTEGER
}
svConnAlarmNode OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Routing Node Name."
::= { svConnAlarmEntry 1 }
svConnAlarmShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Shelf or Feeder Name."
::= { svConnAlarmEntry 2 }
svConnAlarmSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { svConnAlarmEntry 3 }
svConnAlarmLine OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Line Number. Applicable to AXIS-FRSM Endpts only.
Value 0 is returned for other endpts."
::= { svConnAlarmEntry 4 }
svConnAlarmPort OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Physical Port Number."
::= { svConnAlarmEntry 5 }
svConnAlarmVpiOrDlci OBJECT-TYPE
SYNTAX INTEGER (0..16383)
ACCESS read-only
STATUS mandatory
DESCRIPTION "For Frame relay EndPt this is DLCI and
for ATM EndPt this is VPI."
::= { svConnAlarmEntry 6 }
svConnAlarmVci OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "VCI for ATM EndPts, valid range is 1..65535.
Not applicable for Frame Relay EndPts, so 0 is used."
::= { svConnAlarmEntry 7 }
svConnAlarmRemoteEnd OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The object identifier of the 1st attribute
of the end point in the associated protocol specific
end point table(frEndPointTable or atmEndPointTable)."
::= { svConnAlarmEntry 8 }
svConnAlarmConnType OBJECT-TYPE
SYNTAX INTEGER {
fr(1),
atm(2),
atm-fr(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Connection Type.
fr indicates Framerelay to Framerelay connection.
atm indicates Atm to Atm connection and
atm-fr indicates Atm to FrameRelay connection."
::= { svConnAlarmEntry 9 }
-- END of connGroup, ConnProxy MIB
-- port MIBs for SV+ Rel8.4 onward
-- Port Service MIB defines tables and attributes for maintaining frame
-- relay, atm, ima and circuit emulation ports for the following
-- cards using SNMP interface.
-- AXIS FRSM-4/8 , AXIS FRSM HS1, AXIS CESM-4, AXIS AUSM-4,
-- AXIS AUSM-8, BPX ASI-2/OC3, BPX BXM(Monarch), IGX UFM/UFMU, IPX FRP,
-- IGX FRM
-- All tables are indexed by a port (apart from node, shelf, slot).
-- Frame Relay Ports table is indexed by line also which is required
-- for FRSM ports.
-- The port would have a range that varies from card to card.
-- Note that svPortTable and svFrPortTable are indexed by line also.
-- The MIB also gives information on the configuration state of the ports
-- The svPortTable provides state information irrespective of its type (i.e
-- Frame relay or ATM ...) .
-- The svAtmPortTable is a new table to support ATM and IMA port configuration
-- It facilitates creation and modification of ATM ports on BPX ASI
-- BPX BXM (Monarch), AXIS AUSM-4, AXIS AUSM-8, AXIS CESM-4.
-- The svFrPortTable is a new table with most of its variables derived from
-- the 8.1 PortService MIB table frPortsCfgTable. It is meant for the
-- creation and maintenance of frame relay ports on AXIS FRSM, IPX FRP,
-- IGX FRM, IGX UFM/UFMU, and AXIS FRSM HS1.
-- While most of the attributes in a particular table are applicable to all
-- the types of ports that the table represents, there are a few exceptions.
-- In such exceptional cases,
-- * A naming convention, as described before the table definition, is used
-- to easily identify that the attribute is specific to a particular
-- card/node. This may not be followed strictly and in any case the
-- description of a variable will state the applicability of the
-- variable to various cards.
--
-- * The value '-2' will be returned whenever a particular variable is not
-- applicable to a port on a particular card.
-- * The value '-1' will be returned when a particular variable is not
-- relevant in a particular context or not supported for some types of
-- ports in the current implementation.
-- The 'svPortTable' gives the state information of all ports irrespective
-- of its type (i.e, FR or ATM)
--
-- Note that the table is indexed by svPortLineIndex also, just for the sake of FRSM ports.
svPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Port state information table."
::= { portGroup 1 }
svPortEntry OBJECT-TYPE
SYNTAX SvPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Ports Information Entry."
INDEX { svPortNode, svPortShelf,
svPortSlot, svPortLineIndex, svPortPort }
::= { svPortTable 1 }
SvPortEntry ::=
SEQUENCE {
svPortNode DisplayString,
svPortShelf DisplayString,
svPortSlot INTEGER,
svPortPort INTEGER,
svPortCardType INTEGER,
svPortIfType INTEGER,
svPortState INTEGER,
svPortSpeed INTEGER,
svPortLine INTEGER,
svPortLineIndex INTEGER
}
svPortNode OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name of the routing node."
::= { svPortEntry 1 }
svPortShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "String identifying the feeder/shelf."
::= { svPortEntry 2 }
svPortSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Slot Number."
::= { svPortEntry 3 }
svPortPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"port number - a unique value greater than '0' within a card.
The range for each type of card is given below:
IPX FRP -- (1..24) for T1, (1..32) for E1
IPX FRP port concentrator -- (1..44)
IGX FRM -- (1..24) for T1, (1..32) for E1
IGX UFM -- (1..250)
IGX UFMU -- (1..4) for HSSI, (1..12) for V35 & X21
AXIS CESM-4 -- (1..4)
BPX ASI -- (1..2)
BPX BXM (Monarch) -- (1..12)
AXIS FRSM HS1 -- (1..4)
AXIS FRSM-4 -- (1..32)
AXIS AUSM-4 -- (1..4)
AXIS AUSM-8 ports -- (1..8)
"
::= { svPortEntry 4 }
svPortCardType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
frp (2),
frsm-4(3),
cesm(4),
ufm (5),
ausm-4 (6),
ausm-8 (7),
asi(8),
bxm(9),
frsm-8(10),
frm(11),
frsm-hs1(12),
ufmU(14),
bxm-1(15),
bxm-2(16),
bxm-4(17),
bxm-8(18),
bxm-12(19)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the card type. bxm-nn is a monarch card, where
nn is the max number of lines on that card. bxm(9) is for
earlier version of switch software on bxm card, keep
here for backward compatability."
::= { svPortEntry 5 }
svPortIfType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
t1 (2),
e1 (3),
t3 (4),
e3 (5),
oc3-smf (6),
oc3-mmf (7),
oc3-stm1 (8),
oc3-utp (9),
oc3-stp (10),
oc3-smflr (11),
oc12-smf (16),
oc12-mmf (17),
oc12-smflr (18),
v35 (23),
x21 (24),
hssi (25),
lm_bxm (26),
t3-smf (27),
t3-mmf (28),
t3-smflr (29),
t3-snm (30),
e3-smf (31),
e3-mmf (32),
e3-smflr (33),
e3-snm (34),
oc3-snm (35),
oc12-snm (36)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the interface type."
::= { svPortEntry 6 }
svPortState OBJECT-TYPE
SYNTAX INTEGER {
inactive (1),
clear (2),
fail (3),
down (4),
remoteLoopback (5),
lineFailure (6),
signallingFailure (7),
outOfCellDelineation (8),
bandwidthChanged (9),
failedDueToAcpTimeout (10),
failedDueToMajorAlmonAimGrp (11),
failedDueToAimSigFailure (12),
failedDueToBadDiffDelay (13),
failedDueToArbConflict (14)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the Port state.
For IMA ports on AXIS AUSM-8 card the states are:
'active', 'bandwidthChanged',
'failedDueToAcpTimeout', 'failedDueToMajorAlmonAimGrp',
'failedDueToAimSigFailure', 'failedDueToBadDiffDelay',
'failedDueToArbConflict'
For ATM UNI ports on AXIS AUSM-4/8 card the states are:
'active', 'outofcelldelineation',
'remoteloopback', 'linefailure', 'signallingFailure'
AXIS FRSM ports :
'active', 'remoteloopback',
'failedDueToLine', 'failedDueToSignalling', 'inactive' .
IPX-FRP, IGX-FRM, IGX-UFM/UFMU and BPX-ASI, BXM ports :
'active', 'inActive', 'remoteLoopback', 'failed'
AXIS-CESM ports :
'active', 'failed', 'alarm'
"
::= { svPortEntry 7 }
svPortSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Configured speed of port.
Units: For Framerelay in 100 bps.
For Atm & Ce in cps."
::= { svPortEntry 8 }
svPortLine OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Physical Line associated with this port.
For IPX FRP and IGX FRM, this value is always 0.
For IMA ports this is the starting line associated
with the port."
::= { svPortEntry 9 }
svPortLineIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Physical Line associated with this port for FRSM ports.
The value of this object is applicable to AXIS FRSM only
and is used mainly for the MIB indexing purpose.
For all other ports value 0 is returned.
svPortLine gives the physical line for other ports."
::= { svPortEntry 10 }
-- Table svNextLogicalPortTable is useful to get the next available logical
-- port on a card supporting logical ports. Users trying to create ports on
-- cards that have a logical port numbers can get the next available port
-- number by doing a 'GET' on this table. The table supports only SNMP GET.
svNextLogicalPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvNextLogicalPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "
Table useful to get the next available logical port on
a card supporting logical ports. The table supports only
SNMP GET."
::= { portGroup 2 }
svNextLogicalPortEntry OBJECT-TYPE
SYNTAX SvNextLogicalPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Next Logical Ports Entry on a card. An entry is uniquely
identified by a node, shelf and slot"
INDEX { svNode, svShelf, svSlot }
::= { svNextLogicalPortTable 1 }
SvNextLogicalPortEntry ::=
SEQUENCE {
svNode DisplayString,
svShelf DisplayString,
svSlot INTEGER,
svPort INTEGER
}
svNode OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Name of the routing node."
::= { svNextLogicalPortEntry 1 }
svShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "String identifying the feeder/shelf."
::= { svNextLogicalPortEntry 2 }
svSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { svNextLogicalPortEntry 3 }
svPort OBJECT-TYPE
SYNTAX INTEGER (1..256)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Next available logical port number - a unique value greater
than '0'. This table is supported for the following ports:
IGX UFM, AXIS AUSM-8.
To create ports on these cards users may first get the next
available logical port on the card by foing a SNMP GET on this
variable, and use that number as the 'port index' in the
respective port configuration tables.
For other cards where logical ports are not supported,
GET will result in a NO-SUCH-NAME error.
"
::= { svNextLogicalPortEntry 4 }
-- The following table svPhysicalToLogicalMap is useful
-- to get the logical port given the Physical port specifics.
-- FRSM-4, FRSM-8, AUSM-8 and UFM are the cards that use logical ports.
--
-- The logical port so obtained can be used to operate on tables
-- svPortTable, svFrPortTable and svAtmPortTable and also for
-- creating connections.
-- Since we need only the physical port for AXIS FRSM
-- for operating on the port tables and connections,
-- it is not neccessary to find the logical port info for FRSM.
svPhysicalToLogicalMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvPhysicalToLogicalMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "
Table provides the logical port associated with the given
physical port specifics on a card supporting logical ports.
"
::= { portGroup 3 }
svPhysicalToLogicalMapEntry OBJECT-TYPE
SYNTAX SvPhysicalToLogicalMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Physical to Logical Mapping Entry for a port. An entry is
uniquely identified by a node, shelf, slot and Physical
Info.
"
INDEX { svMapNode, svMapShelf, svMapSlot, svMapPhysicalInfo }
::= { svPhysicalToLogicalMapTable 1 }
SvPhysicalToLogicalMapEntry ::=
SEQUENCE {
svMapNode DisplayString,
svMapShelf DisplayString,
svMapSlot INTEGER,
svMapPhysicalInfo DisplayString,
svMapLogicalPort INTEGER
}
svMapNode OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Name of the routing node."
::= { svPhysicalToLogicalMapEntry 1 }
svMapShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "String identifying the feeder/shelf."
::= { svPhysicalToLogicalMapEntry 2 }
svMapSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { svPhysicalToLogicalMapEntry 3 }
svMapPhysicalInfo OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION "String identifying the Physical Port Attributes.
For FRSM-4, FRSM-8 and UFM this must be in the following
format (no quotes needed)
'<Line Number>.<Starting Channel Number>'
For ATM ports on AUSM-8 this must be in the
following format (no quotes needed)
'<Line Number>'
For IMA ports on AUSM-8 this must be in the
following format (no quotes needed)
'<Line1 Number>.<Line2 Number>. .. .<Line N number>.'
where 'Line1', 'Line2' .. 'Line N' are the 'N' lines
associated with the IMA port
Note that all the line numbers need to be specified
and otherwise a NO SUCH NAME will be returned.
All other formats will result in NO SUCH NAME error.
For cards that do not have any logical port
"
::= { svPhysicalToLogicalMapEntry 4 }
svMapLogicalPort OBJECT-TYPE
SYNTAX INTEGER (1..256)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"logical port number - a unique value greater than '0' on
a card supporting logical ports. AXIS FRSM-4/8, IGX UFM,
AXIS AUSM-8 are the cards that support
logical ports. On all other cards GET will result in
NO SUCH NAME.
If no port exists as described by all the above indices
a NO SUCH NAME will be returned.
"
::= { svPhysicalToLogicalMapEntry 5 }
-- The following svFrPortTable is used for maintaining
-- frame relay ports for AXIS, IPX and IGX.
-- Objects with 'svFrPort' suffix are applicable to all - AXIS, IPX and IGX.
-- Objects suffixed with 'svFrAxPort' are specific to AXIS
-- Objects suffixed with 'svFrIxPort' are specific to IPX and IGX.
-- Creation of ports is explained below.
-- To delete a FR port, use the port index used during creation, and
-- send a 'SET' PDU with 'svFrPortRowStatus' set to 'delete' .
-- To modify a FR port, use the port index used during creation, and send a
-- 'SET' PDU with 'svFrPortRowStatus' set to 'modify' along with other
-- parameters that need to be modified. Note that certain parameters
-- can be set only at the creation time, and can not be modified later.
Creating FR ports
-- FRP/FRM
-- ~~~~~~~
-- Creation :
-- T1/E1
-- use index svFrPortPort = statrting Channel Number
-- Specify
-- svFrPortRowStatus = add (Mandatory)
-- svFrPortDs0ChSpeed (Optional: Default = s64k)
-- svFrPortSpeed (Optional: Default = 1 time slot speed)
-- SNMP Request will be rejected if any of svFrPortStartingCh or
-- svFrPortLine are specified.
--
-- V.35
-- use index svFrPortPort = Line Number
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- svFrPortAdminState = enable (Mandatory)
-- svFrPortSpeed (Mandatory)
-- SNMP Request will be rejected if any of svFrPortStartingCh or
-- svFrPortLine or svFrPortDs0ChSpeed are specified.
-- X.21
-- use index svFrPortPort = Line Number
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- svFrPortAdminState = enable (Mandatory)
--
-- SNMP Request will be rejected if any of svFrPortStartingCh or
-- svFrPortLine or svFrPortDs0ChSpeed are specified.
-- Modify
-- ~~~~~~
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- Other attributes to be modified.
-- (svFrPortDs0ChSpeed, svFrPortStartingCh, svFrPortLine ,
-- svFrPortType can't be modifed.
-- svFrPortSpeed can be modifed only for v.35)
-- Delete
-- T1/E1
-- ~~~~~
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = delete (Mandatory)
-- V.35/X.21
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- svFrPortAdminState = disable (Mandatory)
--
-- FRSM-4/8
-- ~~~~~~~~
-- Creation :
-- use index svFrPortPort = starting Channel Number
-- Specify
-- svFrPortRowStatus = add (Mandatory)
-- svFrPortDs0ChSpeed (Optional : Default = s64k)
-- svFrPortSpeed ( Optional : Default = 1 time slot speed)
-- svFrPortType ( Optional : Default = frame-relay)
--
-- Modify
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- Other attributes to be modified.
-- (svFrPortDs0ChSpeed, svFrPortStartingCh, svFrPortLine,
-- svFrPortSpeed, svFrPortType can't be modified)
--
-- Delete
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = delete (Mandatory)
-- UFM
-- Creation :
-- Get the next logical port from svNextLogicalPort table
-- use index svFrPortPort = number got from svNextLogicalPort table.
-- Specify
-- svFrPortRowStatus = add (Mandatory)
-- svFrPortLine = Line number (Mandatory)
-- svFrPortStartingCh = Starting Ds0 Channel number (Mandatory)
-- svFrPortDs0ChSpeed (Optional : Default = s64k)
-- svFrPortSpeed ( Optional : Default = 1 time slot speed)
-- Modify
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- Other attributes to be modified.
-- (svFrPortDs0ChSpeed, svFrPortStartingCh, svFrPortLine,
-- svFrPortSpeed, svFrPortType can't be modified)
-- Delete
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = delete (Mandatory)
-- UFM/U
-- Creation :
-- use index svFrPortPort = Line Number
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- svFrPortAdminState = enable (Mandatory)
svFrPortSpeed (Mandatory)
-- SNMP Request will be rejected if any of svFrPortStartingCh or
-- svFrPortLine or svFrPortDs0ChSpeed are specified.
-- Modify
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- Other attributes to be modified.
-- (svFrPortDs0ChSpeed, svFrPortStartingCh, svFrPortLine,
-- svFrPortType can't be modified)
--
-- Delete
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- svFrPortAdminState = disable (Mandatory)
-- FRSM-Hs1
-- Creation :
-- use index svFrPortPort = Line Num
-- Specify
-- svFrPortRowStatus = add (Mandatory)
--
-- Modify
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = modify (Mandatory)
-- Other attributes to be modified.
-- Delete
-- use index svFrPortPort = port number used during creation
-- Specify
-- svFrPortRowStatus = delete (Mandatory)
-- Note that the table is indexed by svFrPortLineIndex also
-- just for the sake of FRSM ports.
-- A valid line number must be specified on svFrPortLineIndex
-- for FRSM ports and 0 for other ports.
svFrPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvFrPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The frame relay port table maintains configuration
information about all the frame relay ports in the network"
::= { portGroup 4 }
svFrPortEntry OBJECT-TYPE
SYNTAX SvFrPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Ports Configuration Entry. An entry is uniquely
identified by a node, shelf, slot, line and port"
INDEX { svFrPortNode, svFrPortShelf,
svFrPortSlot, svFrPortLineIndex, svFrPortPort}
::= { svFrPortTable 1 }
SvFrPortEntry ::=
SEQUENCE {
svFrPortNode DisplayString,
svFrPortShelf DisplayString,
svFrPortSlot INTEGER,
svFrPortPort INTEGER,
svFrPortRowStatus INTEGER,
svFrPortType INTEGER,
svFrPortCardType INTEGER,
svFrPortIfType INTEGER,
svFrPortOperState INTEGER,
svFrPortAdminState INTEGER,
svFrPortLine INTEGER,
svFrPortStartingCh INTEGER,
svFrPortChCnt INTEGER,
svFrPortSpeed INTEGER,
svFrPortDs0ChSpeed INTEGER,
svFrPortSigProt INTEGER,
svFrPortNNIStatus INTEGER,
svFrPortAsyncUpd INTEGER,
svFrPortPollVerTimer INTEGER,
svFrPortErrThresh INTEGER,
svFrPortMonEveCnt INTEGER,
svFrPortFrmFlags INTEGER,
svFrPortLinkTimer INTEGER,
svFrPortPollCycle INTEGER,
svFrPortCLLMEnable INTEGER,
svFrPortCLLMTimer INTEGER,
svFrPortVcCount INTEGER,
svFrPortVcPtr OBJECT IDENTIFIER,
-- Variables specific to FR cards available on AXIS
svFrAxPortSvcRatio INTEGER,
-- Variables specific to IPX/IGX
svFrIxPortMaxTxQDepth INTEGER,
svFrIxPortECNQThresh INTEGER,
svFrIxPortDEThresh INTEGER,
svFrIxPortIDEMap INTEGER,
svFrIxPortCommPri INTEGER,
svFrIxPortUpRNR INTEGER,
svFrIxPortLowRNR INTEGER,
svFrIxPortOamThresh INTEGER,
svFrIxPortEFCItoBECN INTEGER,
-- Subrate interface specific Variables supported on IPX/IGX
svFrIxPortClockType INTEGER,
svFrIxPortSrRTS INTEGER,
svFrIxPortSrDTR INTEGER,
svFrIxPortSrDCD INTEGER,
svFrIxPortSrCTS INTEGER,
svFrIxPortSrDSR INTEGER,
svFrIxPortLoopBack INTEGER,
svFrIxPortExtConFail INTEGER,
svFrPortLineIndex INTEGER,
svFrPortEnhancedLmi INTEGER
}
svFrPortNode OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Name of the routing node."
::= { svFrPortEntry 1 }
svFrPortShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "String identifying the feeder/shelf."
::= { svFrPortEntry 2 }
svFrPortSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { svFrPortEntry 3 }
svFrPortPort OBJECT-TYPE
SYNTAX INTEGER (1..250)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Port number - a unique value greater than '0' within a card.
On IPX FRP, IGX FRM and AXIS FRSM this is the starting Channel number.
On IGX UFM this is a logical port number.
On AXIS FRSM-HS1, IGX UFMU this is the physical line number.
The range for each type of card is given below:
IPX FRP -- (1..24) for T1, (1..32) for E1
IPX FRP port concentrator -- (1..44)
IGX FRM -- (1..24) for T1, (1..32) for E1
IGX UFM -- (1..250)
IGX UFMU -- (1..4) for HSSI, (1..12) for V35 & X21
AXIS FRSM HSI/X.21 -- (1..4)
AXIS FRSM-4 -- (1..32)
When creating ports on cards with logical port indexing, users
may get the next available logical port at the card using the
svNextAvailableLogicalPortTable.
"
::= { svFrPortEntry 4 }
svFrPortRowStatus OBJECT-TYPE
SYNTAX INTEGER {
add(2),
delete(3),
modify(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "User requested operation for this port table row. Users can
'add' or 'delete' or 'modify' a port.
This is a mandatory parameter that should be specified
for all configuration requests( involving a 'SNMP SET'
on any of the 'read-write' attributes in this table).
This is a write only parameter, and a SNMP GET on this
variable will return any one of the enumerations.
"
::= { svFrPortEntry 5 }
svFrPortType OBJECT-TYPE
SYNTAX INTEGER {
frame-relay(1),
frFUNI(2),
frame-forward(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "This represents the port type. For AXIS FRSM card this
could be one of 'frame-relay', 'frFUNI', 'frame-forward'
For all other cards the value is 'frame-relay'.
Set -
The attribute is set only once while adding the port."
DEFVAL { frame-relay }
::= { svFrPortEntry 6 }
svFrPortCardType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
frp (2),
frsm-4(3),
ufm (5),
frsm-8(10),
frm(11),
frsm-hs1(12),
ufmU(14)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Card type."
::= { svFrPortEntry 7 }
svFrPortIfType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
t1 (2),
e1 (3),
v35 (23),
x21 (24),
hssi (25)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the interface type."
::= { svFrPortEntry 8 }
svFrPortOperState OBJECT-TYPE
SYNTAX INTEGER {
inactive (1),
clear (2),
fail (3),
down (4),
remoteLoopback (5),
lineFailure (6),
signallingFailure (7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Gives the operating status of the port."
::= { svFrPortEntry 9 }
svFrPortAdminState OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "
User requested state for port table row. A User may
enable or disable an existing port.
"
::= { svFrPortEntry 10 }
svFrPortLine OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Physical Line associated with this port.
Get -
For IPX-FRP & IGX-FRM ports , this value is always 0.
For AXIS FRSM-4 the value (1..4) is returned.
Set -
This is a mandatory create time parameter for ports on
IGX-UFM, range (1..4) can be specifed.
Should not be specified for IPX-FRP, IGX-FRM, AXIS FRSM-
HS1, IGX-UFMU. If it is specified, an error will be reported.
The parameter can be set during port creation only.
An error will be returned for subsequent sets.
"
::= { svFrPortEntry 11 }
svFrPortStartingCh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The starting channel number for this port.
(FR T1/E1 interface only).
Get -
The object is not applicable for non-channelized ports,
and the value '-1' will be reported.
Set -
This is a mandatory create time parameter for ports on
IGX-UFM, AXIS FRSM-4, AXIS FRSM-8.
The parameter can be set only for FRSM-4, UFM, FRSM-8 only.
For IPX-FRP and IGX-FRM cards, the svFrPortPort is the
starting channel, and this value should not be specified.
An attempt to set this on FRP/FRM/FRSM-Hs1/UFMU cards will
result in SNMP BAD VALUE error.
The parameter can be set during port creation only.
An error will be returned for subsequent sets.
"
::= { svFrPortEntry 12 }
svFrPortChCnt OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of aggregate channels assigned to this port
(FR T1/E1 interface only).
For non-channelized ports, this object is always 1"
::= { svFrPortEntry 13 }
svFrPortSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Configured speed of port in 100 bits per second.
- Set operation:
For subrate(V.35) interface PortSpeed can be modified.
For E1/T1, you can set only while adding a new port.
It can not be modified after the first set. Attmepts
to set is subsequently will result in a SNMP BAD
VALUE error. For Channelized T1/E1 the default is
one time slot speed.
For AXIS FRSM-HS1/x21 the speed is determined by the
configured speed of the line and it should not be specifed
during creation. An attempt to specify it will result
in a SNMP BAD VALUE error.
"
::= { svFrPortEntry 14 }
svFrPortDs0ChSpeed OBJECT-TYPE
SYNTAX INTEGER {
s56k(1),
s64k(2),
na(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "channel speed. This is not applicable for V35 subrate ports
and non channelized ports.
Get operation:
- Value (na) will be returned for non applicable cases.
Set operation:
- Not applicable to FRP v.35 ports. An attempt to set
it will result in a SNMP BAD VALUE error.
- Allowed only while adding the port.
"
DEFVAL { s64k }
::= { svFrPortEntry 15 }
svFrPortSigProt OBJECT-TYPE
SYNTAX INTEGER {
disabled (1),
lmi-noasyn (2),
lmi-asyn (3),
uni-annexA (4),
uni-annexD (5),
nni-annexA (6),
nni-annexD (7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The specified LMI operation mode. The options can be
1 - (UNI)LMI disabled
2 - (UNI)LMI enabled but asynchronous update disabled
3 - (UNI)LMI and asynchronous update enabled
4 - (UNI)LMI enabled using CCITT O.933 Annex A parameters
5 - (UNI)LMI enabled using ANSI T1.617 parameters
6 - (NNI)LMI enabled using CCITT O.933 Annex A parameters
7 - (NNI)LMI enabled using ANSI T1.617 parameters.
The lmi-noasyn is also known as strataLMI."
DEFVAL { disabled }
::= { svFrPortEntry 16 }
svFrPortNNIStatus OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The flag indicating whether NNI is active on the specified
slot.port.
- Get Operation:
This object is always NO if the network manager attempts
to GET svFrPortNNIStatus from a disabled or LMI port.
In other cases, the value of this object is determined
by whether the port is configured as NNI or not."
::= { svFrPortEntry 17 }
svFrPortAsyncUpd OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag indicating whether the system should send unsolicited
LMI update messages as they appear or wait for the polling
from the user device. This object is applicable to only
Annex A/D UNI and Annex A/D NNI protocols for write and
LMI, Annex A/D UNI and Annex A/D NNI for read.
- Get Operation:
This object is always NO for ports without protocols;
otherwise, its value is determined by the asynchronous
status of the port.
- Set Operation:
If the network manager attempts to SET this object of
a port with none or LMI protocol, an error is reported."
DEFVAL { no }
::= { svFrPortEntry 18 }
svFrPortPollVerTimer OBJECT-TYPE
SYNTAX INTEGER (5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The link integrity verification timer heartbeat (keep-alive)
period. It should be set to 5 seconds more than the
heartbeat time in the user device.
- Get Operation:
Since this object is not applicable to disabled protocol,
(-1) is returned if the network manager attempts to GET
this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object of
a port without any protocol, an error is reported."
DEFVAL { 15 }
::= { svFrPortEntry 19 }
svFrPortErrThresh OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of the failures in the monitored events that
cause the keep-alive process to report an alarm.
- Get Operation:
Since this object is not applicable to disabled protocol,
(-1) is returned if the network manager attempts to GET
this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object of a
port without any protocol, an error is reported."
::= { svFrPortEntry 20 }
svFrPortMonEveCnt OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of monitored events for the keep-alive process.
A port communication fail condition is cleared after this
number of successful polling cycles.
- Get Operation:
Since this object is not applicable to disabled protocol,
(-1) is returned if the network manager attempts to GET
this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object of a
port without any protocol, an error is reported."
::= { svFrPortEntry 21 }
svFrPortFrmFlags OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The minimum number of flags between frames.
The valid range for
AXIS FRSM-4/8 and AXIS FRSM-Hs1 ports is (1..10)
IPX-FRP, IGX-UFM/UFMU, IGX-FRM ports is (1..255)."
DEFVAL { 1 }
::= { svFrPortEntry 22 }
svFrPortLinkTimer OBJECT-TYPE
SYNTAX INTEGER (5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION "T391 - Link Integrity Timer (applicable to NNI port only),
indicating the interval at which a Status Enquiry message
is sent.
- Get Operation:
the network manager attempts to GET this object from a
port with a protocol other than NNIs, (-1) is returned.
- Set Operation:
If the network manager attempts to SET this object of a
port with a protocol other than NNIs, an error is reported."
DEFVAL { 10 }
::= { svFrPortEntry 23 }
svFrPortPollCycle OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "N391 - Number of UNI/NNI Full Status Polling Cycles.
For IPX-FRP, IGX-UFM/UFMU, IGX-FRM applicable to NNI ports only.
- Get Operation(for IPX-FRP, IGX-UFM/UFMU, IGX-FRM):
If the network manager attempts to GET this object from
a port with a protocol other than NNIs, (-1) is returned.
- Set Operation(for IPX-FRP, IGX-UFM/UFMU, IGX-FRM):
If the network manager attempts to SET this object of a
port with a protocol other than NNIs, an error is reported."
::= { svFrPortEntry 24 }
svFrPortCLLMEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "This will enable CLLM.
- Get Operation:
If the network manager attempts to GET this object from
a port where ForeSight is not supported, (-1) is returned.
- Set Operation:
If the network manager attempts to SET this object of a
port where ForeSight is not supported, an error is
reported.
Note that ForeSight (CLLM) is available only if the firmware
supports it."
::= { svFrPortEntry 25 }
svFrPortCLLMTimer OBJECT-TYPE
SYNTAX INTEGER (40..350)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The timer for CLLM messages in CLLM intervals( 10 milli secs).
The variable is valid only if svFrPortCLLMEnable is set to
'enable'. The value should be in the range 40 to 350.
The unit is hundredth of a sec.
- Get Operation:
If the network manager attempts to GET this object from
a port where ForeSight is not supported, (-1) is returned.
- Set Operation:
If the network manager attempts to SET this object of a
port where ForeSight is not supported, an error is
reported.
Note that ForeSight (CLLM) is available only if the firmware
supports it."
::= { svFrPortEntry 26 }
svFrPortVcCount OBJECT-TYPE
SYNTAX INTEGER (0..1000)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of virtual connections that terminate on this
port.
IPX-FRP and IGX-FRM cards can have a maximum of 252
connections shared among the ports. An FRP/FRM port may
have up to 252 connections allocated.
A IGX-UFM/UFMU card can have a maximum of 1000 connections shared
among the ports.
"
::= { svFrPortEntry 27 }
svFrPortVcPtr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION "
The object identifier denoting the first endpoint
associated with this port. For current implementation,
this OID points to the first frame relay connection on
the port. It has a NULL OID value (i.e. { 0 0 }) if there
is no frame relay connection on this port. The management
station can retrieve all the information about the first
connection by reading from row pointed to by this OID.
Specifically, this OID specifies the first column of the
appropriate row in the frEndPointTable of the Connection
Service MIB.
"
::= { svFrPortEntry 28 }
svFrAxPortSvcRatio OBJECT-TYPE
SYNTAX INTEGER (1..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Queue 1 is the low-priority queue and queue 2 is the
high-priority queue. This object describes the service
ratio between the 2 queues. This ratio decides the number i
of times queue 1 should be serviced for every time queue 2
is serviced. The attribute is useful to avoid concentration
on one particular queue.
Only applicable to AXIS-FRSM ports.
The value (-2) will be returned for other types of ports."
DEFVAL { 1 }
::= { svFrPortEntry 29 }
svFrIxPortMaxTxQDepth OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum bytes queued for transmission from the port.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
DEFVAL { 65535 }
::= { svFrPortEntry 30 }
svFrIxPortECNQThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Port explicit congestion notification threshold. This is
the point at which the BECN and FECN bits will be set in
the communications to the user device.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
DEFVAL { 65535 }
::= { svFrPortEntry 31 }
svFrIxPortDEThresh OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The percentage of the queue depth above which frames
with the Discard Eligibility bit set will be discarded.
An entry of 100% effectively disables DE for the port.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
DEFVAL { 100 }
::= { svFrPortEntry 32 }
svFrIxPortIDEMap OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag indicating whether IDE to DE mapping should
be performed.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
DEFVAL { yes }
::= { svFrPortEntry 33 }
svFrIxPortCommPri OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag specifying if the connection SNA priority should
be communicated to the user device attached to the port.
- Get Operation:
Since this object is specific to LMI protocols, (-1) is
returned if the network manager attempts to GET this
object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET this
object of a non-LMI port, an error is reported.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 34 }
svFrIxPortUpRNR OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The upper Receiver-Not-Ready threshold. This threshold
specifies the number of receiver not ready indications
from the user equipment before an alarm is generated
for this connection.
- Get Operation:
Since this object is specific to LMI protocols, (-1) is
returned if the network manager attempts to GET this
object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET this
object of a non-LMI port, an error is reported.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
DEFVAL { 75 }
::= { svFrPortEntry 35 }
svFrIxPortLowRNR OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Lower Receiver-Not-Ready threshold. This threshold
specifies the number of receiver not ready indications
from the user equipment before an alarm is cleared for
this connection.
- Get Operation:
Since this object is specific to LMI protocols, (-1)
is returned if the network manager attempts to GET
this object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET
this object of a non-LMI port, an error is reported.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
DEFVAL { 75 }
::= { svFrPortEntry 36 }
svFrIxPortOamThresh OBJECT-TYPE
SYNTAX INTEGER (0..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The alarm threshold for number of OAM heartbeat
FastPackets missed before propagating A-bit=0. This
threshold is applicable to both UNI and NNI Frame Relay
ports when the node has FR NNI feature enabled and the
firmware supports it.
- Get Operation:
Since this object is not applicable to disabled protocol,
(-1) is returned if the network manager attempts to GET
this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object of
a port without any protocol, an error is reported.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 37 }
svFrIxPortEFCItoBECN OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2),
none(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates whether EFCI to BECN mapping is enabled.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 38 }
svFrIxPortClockType OBJECT-TYPE
SYNTAX INTEGER {
normal (1),
looped (2),
none(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of port clock (FR subrate interface only). For
T1/E1 interface this object should be none.
- Get Operation:
If the network manager attempts to get this object from
a T1/E1 port, none(3) is returned.
- Set Operation:
If the network manager attempts to set this object on a
T1/E1 port an error is returned.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 39 }
svFrIxPortSrRTS OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
none(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current status of the RTS lead (subrated FRI only).
none is used for T1/E1 FRI.
- Get Operation:
This object is valid only if the port is subrated and
DTE. Otherwise, none(3) is returned.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 40 }
svFrIxPortSrDTR OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
none(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current status of the DTR lead (subrated FRI only).
none is used for T1/E1 FRI.
- Get Operation:
This object is valid only if the port is subrated and
DTE. Otherwise, none(3) is returned.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 41 }
svFrIxPortSrDCD OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
none(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current status of the DCD lead (subrated FRI only).
none is used for T1/E1 FRI.
- Get Operation:
This object is valid only if the port is subrated and
DCE. Otherwise, none(3) is returned.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 42 }
svFrIxPortSrCTS OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
none(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current status of the CTS lead (subrated FRI only).
none is used for T1/E1 FRI.
- Get Operation:
This object is valid only if the port is subrated and
DCE. Otherwise, none(3) is returned.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 43 }
svFrIxPortSrDSR OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
none(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current status of the DSR lead (subrated FRI only).
none is used for T1/E1 FRI.
- Get Operation:
This object is valid only if the port is subrated and DCE.
Otherwise, none(3) is returned.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 44 }
svFrIxPortLoopBack OBJECT-TYPE
SYNTAX INTEGER {
none (1),
local(2),
remote(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The loopback mode.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 45 }
svFrIxPortExtConFail OBJECT-TYPE
SYNTAX INTEGER {
false (1),
true (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The flag indicating if the connection with the external
device is lost.
Applicable to IPX-FRP, IGX-FRM and IGX-UFM/UFMU ports Only.
The value (-2) will be returned for other types of ports."
::= { svFrPortEntry 46 }
svFrPortLineIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Physical Line associated with FRSM ports.
The value of this object is applicable to AXIS FRSM only
and is used mainly for the MIB indexing purpose.
Get:
value (1..4) is returned for AXIS FRSM-4.
value 0 is returned for ports other than AXIS FRSM.
Set:
value (1..4) must be used for AXIS FRSM-4.
value 0 must be used for ports other than AXIS FRSM.
svFrPortLine specifies the physical line for other ports."
::= { svFrPortEntry 47 }
svFrPortEnhancedLmi OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2),
none(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "This object defines if enhanced LMI is enabled on a
port.
- Get Operation:
Since this object is specific to ports with signalling
protocal enabled, none(3) is returned if the network manager
attempts to GET this object from a port with no
signalling protocol.
- Set Operation:
Likewise, if the network manager attempts to SET this
object of a port with no signalling protocol, an error
is reported. Settable values are disable(1) and enable(2).
Applicable to Release 4 AXIS FRSM 4/8, FRSM HS1 ports Only.
The value none(3) will be returned for other types of ports."
::= { svFrPortEntry 48 }
-- The "svAtmPortTable" lets a manager configure ATM, IMA and CE ports on
-- a node. Configuring these ports is explained below for each card
-- Objects with suffix 'svAtmIma' are applicable to IMA ports only.
-- Objects with suffix 'svAtmBx' are applicable to ports on BPX nodes only.
-- To delete an ATM port, use the port number used at creation time as index,
-- and send a 'SET' PDU with 'svAtmPortRowStatus' set to 'delete' .
-- To modify a ATM port, use the port number used at creation time as index,
-- and send a 'SET' PDU with 'svAtmPortRowStatus' set to 'modify' along
-- with other parameters that need to be modified. Note that certain
-- parameters can be set only at the creation time, and can not be
-- modified later.
-- To add lines to an existing ATM IMA port, use the port number used at
-- creation time as index and send a 'SET' PDU with
-- svAtmPortRowStatus = 'addlines'
-- svAtmPortAssociatedLines = Display string of lines to be added.
-- (Eg. "4.7" )
-- To delete lines from an existing ATM IMA port, use the port number used at
-- creation time as index and send a 'SET' PDU with
-- svAtmPortRowStatus = 'dellines'
-- svAtmPortAssociatedLines = Display string of lines to be deleted.
-- (Eg. "2.5" )
-- Port Creation, modification, deletion on various ATM cards :
-- AUSM-4 :
-- svAtmPortRowStatus can be only "modify"
-- "svAtmPortMode" is not writtable and always has a value of "atm".
-- Enable Port:
-- Use index svAtmPortPort = Physical Line number.
-- Specify
-- svAtmPortRowStatus = modify (Mandatory)
-- svAtmPortAdminState = enable (Mandatory)
-- svAtmPortType = atm-uni or atm-nni only
-- (optional: Default = atm-uni)
-- Modify Port :
-- Use index svAtmPortPort = Physical Line number.
-- Specify
-- svAtmPortRowStatus = modify (Mandatory)
-- Other attributes.
-- (Cannot change svAtmPortType)
--
-- Disable Port :
-- Use index svAtmPortPort = Physical Line number.
-- Specify
-- svAtmPortRowStatus = modify (Mandatory)
-- svAtmPortAdminState = disable (Mandatory)
-- AUSM-8
-- "svAtmPortAdminState" is not applicable.
-- Get the next logical port from svNextLogicalPort table
-- Create ATM Port:
-- Use index svAtmPortPort = number got from svNextLogicalPort table.
-- Specify
-- svAtmPortRowStatus = add (Mandatory)
-- svAtmPortAssociatedLines = "<Line No>" (Mandatory)
-- svAtmPortType = atm-uni or atm-nni only (Mandatory)
-- Modify ATM Port :
-- Use index svAtmPortPort = number used during Create.
-- Specify
-- svAtmPortRowStatus = modify (Mandatory)
-- Other attributes.
-- (Cannot change svAtmPortAssociatedLines, svAtmPortType)
-- Delete ATM Port :
-- Use index svAtmPortPort = number used during Create.
-- Specify
-- svAtmPortRowStatus = delete (Mandatory)
-- Create IMA Port:
-- Use index svAtmPortPort = number got from svNextLogicalPort table.
-- Specify
-- svAtmPortRowStatus = add (Mandatory)
-- svAtmPortAssociatedLines = "<Line1>.<Line2> ....." (Mandatory)
-- svAtmPortMode = ima (Mandatory)
-- svAtmPortType = atm-uni or atm-nni or atm-sti (Mandatory)
-- Modify IMA Port :
-- Use index svAtmPortPort = number used during Create.
-- Specify
-- svAtmPortRowStatus = modify (Mandatory)
-- Other attributes.
-- (Cannot change svAtmPortAssociatedLines, svAtmPortType,
-- svAtmPortMode)
-- Delete IMA Port :
-- Use index svAtmPortPort = number used during Create.
-- Specify
-- svAtmPortRowStatus = delete (Mandatory)
-- add-lines IMA port :
-- Use index svAtmPortPort = number used during Create.
-- Specify
-- svAtmPortRowStatus = add-lines (Mandatory)
-- svAtmPortAssociatedLines = string of lines to be added (Mandatory)
-- del-lines IMA port :
-- Use index svAtmPortPort = number used during Create.
-- Specify
-- svAtmPortRowStatus = del-lines (Mandatory)
-- svAtmPortAssociatedLines = string of lines to be deleted (Mandatory)
--
-- ASI/BXM
-- "svAtmPortAdminState" is not applicable.
-- "svAtmPortMode" is not writtable and always has a value of "atm".
-- Create Port:
-- Use index svAtmPortPort = Physical Line number
-- Specify
-- svAtmPortRowStatus = add (Mandatory)
-- svAtmPortType = atm-uni or atm-nni only (Mandatory)
-- Modify ATM Port :
-- Use index svAtmPortPort = Physical Line number
-- Specify
-- svAtmPortRowStatus = modify (Mandatory)
-- Other attributes.
-- Delete ATM Port :
-- Use index svAtmPortPort = Physical Line number
-- Specify
-- svAtmPortRowStatus = delete (Mandatory)
-- CESM-4 :
-- "svAtmPortRowStatus" can be one of 'add' or 'delete' only.
-- Create Port:
-- Use index svAtmPortPort = Physical Line number.
-- Specify
-- svAtmPortRowStatus = add (Mandatory)
-- (No other parameters allowed)
-- Delete/Disable Port :
-- Use index svAtmPortPort = Physical Line number.
-- Specify
-- svAtmPortRowStatus = delete (Mandatory)
svAtmPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvAtmPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "This table maintains configuration information about all
the 'atm', 'ima' and 'circuit emulation' ports in the network"
::= { portGroup 5 }
svAtmPortEntry OBJECT-TYPE
SYNTAX SvAtmPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Ports Configuration Entry."
INDEX { svAtmPortNode, svAtmPortShelf,
svAtmPortSlot, svAtmPortPort }
::= { svAtmPortTable 1 }
SvAtmPortEntry ::=
SEQUENCE {
svAtmPortNode DisplayString,
svAtmPortShelf DisplayString,
svAtmPortSlot INTEGER,
svAtmPortPort INTEGER,
svAtmPortRowStatus INTEGER,
svAtmPortOperState INTEGER,
svAtmPortAdminState INTEGER,
svAtmPortCardType INTEGER,
svAtmPortIfType INTEGER,
svAtmPortSpeed INTEGER,
svAtmPortVcCount INTEGER,
svAtmPortVcPtr OBJECT IDENTIFIER,
svAtmPortType INTEGER,
svAtmPortSignallingProtocol INTEGER,
--- ILMI parameters;
svAtmPortIlmiVpi INTEGER,
svAtmPortIlmiVci INTEGER,
svAtmPortIlmiTrapEnable INTEGER,
svAtmPortIlmiMinimumTrapInterval INTEGER,
svAtmPortIlmiAlivePollEnable INTEGER,
svAtmPortIlmiAlivePollInterval INTEGER,
svAtmPortIlmiEventThreshold INTEGER,
svAtmPortIlmiErrorThreshold INTEGER,
svAtmPortIlmiEnquiryInterval INTEGER,
--- LMI parameters;
svAtmPortLmiVpi INTEGER,
svAtmPortLmiVci INTEGER,
svAtmPortLmiPollEnable INTEGER,
svAtmPortLmiStatEnqTimer INTEGER,
svAtmPortLmiUpdStatTimer INTEGER,
svAtmPortLmiStatEnqRetry INTEGER,
svAtmPortLmiUpdStatRetry INTEGER,
svAtmPortLmiPollTimer INTEGER,
-- Parameters specific to BPX
svAtmBxPortMetro INTEGER,
--- IMA port configuration parameters
svAtmPortNumLines INTEGER,
svAtmPortAssociatedLines DisplayString,
svAtmImaPortMode INTEGER,
svAtmImaPortNumRedundantLines INTEGER,
svAtmImaPortMaxTolerableDiffDelay INTEGER
}
svAtmPortNode OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Name of the routing Node."
::= { svAtmPortEntry 1 }
svAtmPortShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "String identifying the feeder/shelf."
::= { svAtmPortEntry 2 }
svAtmPortSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { svAtmPortEntry 3 }
svAtmPortPort OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"port number - a unique value greater than '0' within a card.
On BPX ASI, BXM this is the physical line number.
On AXIS AUSM-4, this is the physical line number.
On AXIS CESM-4, this is the physical line number.
On AXIS AUSM-8, this is a logical port number.
The range for each type of card is given below:
BPX ASI -- (1..2)
BPX BXM (Monarch) -- (1..12)
AXIS AUSM-4 -- (1..4)
AXIS CESM-4 -- (1..4)
AXIS AUSM-8 ports -- (1..8)
When creating ports on cards with logical port indexing, users
may get the next available logical port at the card using the
'svNextAvailableLogicalPortTable' .
"
::= { svAtmPortEntry 4 }
svAtmPortRowStatus OBJECT-TYPE
SYNTAX INTEGER {
add(2),
delete(3),
modify(4),
addlines(7),
dellines(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "User requested operation for this port table row. User may
'add' a new port or 'delete'/'modify' an existing port.
This is a mandatory parameter that should be specified
for all configuration requests(involving a 'SNMP SET'
on any of the 'read-write' attributes in this table).
For ports on AUSM-4 this could be only 'modify'
For ports on CESM-4 this could be 'add' or 'delete' only.
Values 'addlines' and 'dellines' are specific to IMA ports,
on AXIS AUSM-8 card, using which an user can add
or delete lines from an existing IMA port.
This is a write only parameter, and a SNMP GET on this
variable will return any one of the enumerations.
An error will be reported when non applicable values are set.
"
::= { svAtmPortEntry 5 }
svAtmPortOperState OBJECT-TYPE
SYNTAX INTEGER {
inactive (1),
clear (2),
fail (3),
down (4),
remoteLoopback (5),
lineFailure (6),
signallingFailure (7),
outOfCellDelineation (8),
bandwidthChanged (9),
failedDueToAcpTimeout (10),
failedDueToMajorAlmonAimGrp (11),
failedDueToAimSigFailure (12),
failedDueToBadDiffDelay (13),
failedDueToArbConflict (14)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "This operating status of the port.
For IMA ports on AXIS AUSM-8 card the states are:
'active', 'bandwidthChanged',
'failedDueToAcpTimeout', 'failedDueToMajorAlmonAimGrp',
'failedDueToAimSigFailure', 'failedDueToBadDiffDelay',
'failedDueToArbConflict'
For ATM UNI ports on AXIS AUSM-4/8 card the states are:
'active', 'outofcelldelineation',
'remoteloopback', 'linefailure', 'signallingFailure'
For ATM ports on ASI the states are:
'active', 'inActive', 'remoteLoopback', 'failed'
For AXIS-CESM ports :
'active', 'failed', 'alarm'
"
::= { svAtmPortEntry 6 }
svAtmPortAdminState OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "
User requested state for port table row. A User may
enable or disable an existing port. Applicable only
for ports on AUSM-4.
This is a mandatory paramter to be specified to enable
disable ports on AUSM-4.
"
::= { svAtmPortEntry 7 }
svAtmPortCardType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
cesm(4),
ausm-4 (6),
ausm-8 (7),
asi(8),
bxm(9),
bxm-1(15),
bxm-2(16),
bxm-4(17),
bxm-8(18),
bxm-12(19)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the card type. bxm-nn is a monarch card, where
nn is the max number of lines on that card. bxm(9) is for
earlier version of switch software on bxm card, keep
here for backward compatability."
::= { svAtmPortEntry 8 }
svAtmPortIfType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
t1 (2),
e1 (3),
t3 (4),
e3 (5),
oc3-smf (6),
oc3-mmf (7),
oc3-stm1 (8),
oc3-utp (9),
oc3-stp (10),
oc3-smflr (11),
oc12-smf (16),
oc12-mmf (17),
oc12-smflr (18),
lm_bxm (26),
t3-smf (27),
t3-mmf (28),
t3-smflr (29),
t3-snm (30),
e3-smf (31),
e3-mmf (32),
e3-smflr (33),
e3-snm (34),
oc3-snm (35),
oc12-snm (36)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Type of the physical interface with which the port is
associated. For AXIS only t1 and e1 are valid. For BPX-
ASI, t3, e3, oc3-smf, oc3-mmf are the valid values.
For BPX-BXM, lm_bxm, t3-smf/mmf/smflr/snm, e3-smf/mmf/smflr/snm,
oc3-smf/mmf/smflr/snm, oc12-smf/mmf/smflr/snm"
::= { svAtmPortEntry 9 }
svAtmPortSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The speed of the port in cells per second.
Port Speeds for various Interfaces:
AUSM/CESM/T1 - 3622 cps
AUSM/CESM/E1 - 4528 cps
ASI/T3 - 80000 cps
ASI/E3 - 96000 cps
ASI/BXM/OC3 - 353208 cps
BXM/OC12 - 1412830 cps
For IMA ports this depends on the number of lines
associated with the port"
::= { svAtmPortEntry 10 }
svAtmPortVcCount OBJECT-TYPE
SYNTAX INTEGER (0..1024)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of virtual connections that terminate on
this port.
"
::= { svAtmPortEntry 11 }
svAtmPortVcPtr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The object identifier denoting the first endpoint
associated with this port. For current implementation,
this OID points to the first atm connection on the port.
It has a NULL OID value (i.e. { 0 0 }) if there is no atm
connection on this port. The management station can retrieve
all the information about the first connection by reading
from row pointed to by this OID. Specifically, For ATM and
IMA this OID specifies the first column of the
appropriate row in the atmEndPointTable of the connection
service MIB. For CESM ports this specifies the first column
of the appropriate row in the ceEndPtTable of the
Connection Service Mib"
::= { svAtmPortEntry 12 }
svAtmPortType OBJECT-TYPE
SYNTAX INTEGER {
atm-uni(4),
atm-nni(5),
atm-sti(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the configuration type of port.
atm-sti is StrataCom Trunk Interface.
AXIS AUSM-4 :
the value could be one of 'atm-uni' or 'atm-nni'. This is
a optional create time parameter with 'atm-uni' as default.
AXIS AUSM-8 :
the value could be one of 'atm-uni', 'atm-nni', 'atm-sti'.
This is a mandatory create time parameter to be specified.
BPX :
it could be one of 'atm-uni' or 'atm-nni'.
the switch supports this operation only on a per-card
level, so changing one port changes the others also.
The value of this object cannot be changed if there are
active connections on the card.
This is a mandatory create time parameter to be specified.
"
::= { svAtmPortEntry 13 }
svAtmPortSignallingProtocol OBJECT-TYPE
SYNTAX INTEGER {
none (1),
lmi(2),
ilmi(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The port management protocl in use.
For BPX ASI card this could be one of 'none', 'lmi', 'ilmi'
and the default is 'none'.
For AXIS AUSM 4/8 this could be one of none, ilmi.
Not applicable to CESM ports.
"
DEFVAL { none }
::= { svAtmPortEntry 14 }
svAtmPortIlmiVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Virtual Path Identifier for the ILMI protocol.
For UNI ports it ranges from 0 to 255 and for NNI
ports it ranges from 0 to 4095. The default value is 0.
Not applicable to CESM ports.
"
DEFVAL { 0 }
::= { svAtmPortEntry 15 }
svAtmPortIlmiVci OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The virtual channel identifier for the ILMI protocol.
Ranges from 1 to 65535. The default value is 16.
Not applicable to CESM ports.
"
DEFVAL { 16 }
::= { svAtmPortEntry 16 }
svAtmPortIlmiTrapEnable OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Enable/disable ILMI trap sending. If enabled the ILMI
agent will send unsolicited Trap PDUs.
The variable is applicable only when the signalling protocol
is ILMI. For other protocols the value (-2) is returned
for 'GET' and an error is returned for 'SET'.
Not applicable to CESM ports.
"
::= { svAtmPortEntry 17 }
svAtmPortIlmiMinimumTrapInterval OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The minimum amount of time in seconds between two
consecutive traps. It is supported only on AXIS cards.
The variable is applicable only when the signalling protocol
is ILMI. For other protocols the value (-2) is returned
for 'GET' and an error is returned for 'SET.
Not applicable to CESM ports.
"
::= { svAtmPortEntry 18 }
svAtmPortIlmiAlivePollEnable OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Enable/disable Keep Alive Polling.
The variable is applicable only when the signalling protocol
is ILMI. For other protocols the value (-2) is returned
for 'GET' and an error is returned for 'SET.
Not applicable to CESM ports.
"
::= { svAtmPortEntry 19 }
svAtmPortIlmiAlivePollInterval OBJECT-TYPE
SYNTAX INTEGER {
v1(5),
v2(10),
v3(15),
v4(20),
v5(25),
v6(30),
v7(35),
v8(40),
v9(45),
v10(50),
v11(55),
v12(60)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of seconds between each keep alive poll
transmitted by the port (T491). The interval has to
be an integral multiple of 5, ranging between 5 and 60.
The variable is applicable only when the signalling protocol
is ILMI. For other protocols the value (-2) is returned
for 'GET' and an error is returned for 'SET.
Not applicable to CESM ports.
"
::= { svAtmPortEntry 20 }
svAtmPortIlmiEventThreshold OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "It specifies the number of keep alive polls within
which if N491 polls fail the port is placed in the
failed state (N492).
The variable is applicable only when the signalling protocol
is ILMI. For other protocols the value (-2) is returned
for 'GET' and an error is returned for 'SET.
Not applicable to CESM ports.
"
::= { svAtmPortEntry 21 }
svAtmPortIlmiErrorThreshold OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of keep alive polls that must fail within
a window of N492 polls, before the port is placed in
the failed state (N491).
The variable is applicable only when the signalling protocol
is ILMI. For other protocols the value (-2) is returned
for 'GET' and an error is returned for 'SET.
Not applicable to CESM ports.
"
::= { svAtmPortEntry 22 }
svAtmPortIlmiEnquiryInterval OBJECT-TYPE
SYNTAX INTEGER (1..20)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Minimum Enquiry Interval (T493) . This is supported only
on AXIS cards.
The variable is applicable only when the signalling protocol
is ILMI. For other protocols the value (-2) is returned
for 'GET' and an error is returned for 'SET.
Not applicable to CESM ports.
"
::= { svAtmPortEntry 23 }
svAtmPortLmiVpi OBJECT-TYPE
SYNTAX INTEGER (0..4095)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Virtual Path Identifier for the LMI protocol.
For UNI ports it ranges from 0 to 255, and for NNI
ports it ranges from 0 to 4095. The default value is 0.
Not applicable to AUSM & CESM ports.
"
DEFVAL { 0 }
::= { svAtmPortEntry 24 }
svAtmPortLmiVci OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The virtual channel identifier for the LMI protocol.
It ranges from 1 to 65535. The default value is 31.
Not applicable to AUSM & CESM ports.
"
DEFVAL { 31 }
::= { svAtmPortEntry 25 }
svAtmPortLmiPollEnable OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "if enabled a 'Status Enquiry' message is sent when the
polling timer expires. The parameter is valid only when
the signalling protocol is LMI.
For other protocols the value (-2) will be returned for
'GET' and an error is returned for 'SET'.
Not applicable to AUSM & CESM ports.
"
::= { svAtmPortEntry 26 }
svAtmPortLmiStatEnqTimer OBJECT-TYPE
SYNTAX INTEGER (5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Link integrity timer for the port(T393) indicating the interval
at which a status enquiry message is sent . The parameter
is valid only when the signalling protocol is LMI.
For other protocols the value (-2) will be returned for
'GET' and an error is returned for 'SET'.
Not applicable to AUSM & CESM ports.
"
::= { svAtmPortEntry 27 }
svAtmPortLmiUpdStatTimer OBJECT-TYPE
SYNTAX INTEGER (5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Update status timer for the port (T394). The parameter
is valid only when the signalling protocol is LMI.
For other protocols the value (-2) will be returned for
'GET' and an error is returned for 'SET' .
Not applicable to AUSM & CESM ports.
"
::= { svAtmPortEntry 28 }
svAtmPortLmiStatEnqRetry OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum number of times a Status Enquiry message is
retransmitted. A Status Enquiry message is retransmitted
when timer T393 expires (N394). The parameter is valid
only when the signalling protocol is LMI. For other
protocols the value (-2) will be returned for 'GET' and
an error is returned for 'SET'.
Not applicable to AUSM & CESM ports.
"
::= { svAtmPortEntry 29 }
svAtmPortLmiUpdStatRetry OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum number of times an Update Status message is
retransmitted. An Update Status message is retransmitted
when timer T394 expires (N395). The parameter is valid
only when the signalling protocol is LMI. For other
protocols the value (-2) will be returned for 'GET' and
an error is returned for 'SET'.
Not applicable to AUSM & CESM ports.
"
::= { svAtmPortEntry 30 }
svAtmPortLmiPollTimer OBJECT-TYPE
SYNTAX INTEGER (5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Polling timer (T396). If polling is enabled a Status
Enquiry message is sent when this timer expires. The
parameter is valid only when the signalling protocol
is LMI. For other protocols the value (-2) will be
returned for 'GET' and an error is returned for 'SET'.
Not applicable to AUSM & CESM ports.
"
::= { svAtmPortEntry 31 }
svAtmBxPortMetro OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Metro Data Cell Header Format. This object applies to
T3 ports only. Only applicable to BPX. The value (-2)
will be returned for all other cases."
DEFVAL { disable }
::= { svAtmPortEntry 32 }
svAtmPortNumLines OBJECT-TYPE
SYNTAX INTEGER (1..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION "IMA ports can span across multiple lines . This
variable indicates the number of lines the port is
configured of. In all other cases it's value is 1
"
::= { svAtmPortEntry 33 }
svAtmPortAssociatedLines OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..15))
ACCESS read-write
STATUS mandatory
DESCRIPTION "The list of lines in an IMA port delimited by dots.
Eg '2.3.7' .
This is a mandatory variable to create ports (ATM & IMA)
on AUSM-8 card.
Set -
Used in four ways, and is mandatory in all cases.
- To create an ATM port use this variable to specify
the line(single) that the port is associated with.
- To create an IMA port use this variable to specify
the lines that the port should consists of.
- To add lines to an existing IMA port use this variable
to specify the lines to be added.
- To delete lines to from existing IMA port use this
variable to specify the lines to be deleted.
SET is Applicable to ports on AUSM-8 only.
For other types of ports SNMP BAD VALUE error will
be returned.
Get -
Get a display string showing the lines that the port
contains.
"
::= { svAtmPortEntry 34 }
svAtmImaPortMode OBJECT-TYPE
SYNTAX INTEGER {
atm(1),
ima(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "
Indicates the configuration mode of ports on AUSM-8 and
card. Applicable only to AUSM-8 card.
For other cards GET will return 'atm' and SET will result
in SNMP BAD VALUE error. To create a IMA port this is a
mandatory parameter and must be set to 'ima'.
"
::= { svAtmPortEntry 35 }
svAtmImaPortNumRedundantLines OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of redundant (spare) lines in the IMA port.
This indicates the number of lines the system can lose
from this IMA group without bringing it down.
By default, the system can tolerate all line(s) to go down.
Applicable to IMA ports only. For other types of ports
the value (-2) will be returned."
::= { svAtmPortEntry 36 }
svAtmImaPortMaxTolerableDiffDelay OBJECT-TYPE
SYNTAX INTEGER (1..28)
ACCESS read-write
STATUS mandatory
DESCRIPTION "This indicates the maximum tolerable differential delay
in milliseconds between the various lines in the IMA
port. The default value is 28 milliseconds.
Applicable to IMA ports only. For other types of ports
the value (-2) will be returned."
::= { svAtmPortEntry 37 }
ERROR STATUS TABLE
-- This object contains the value of the request id for the latest
-- entry in the error status table.
-- This value can be used to retrieve the error code and description
-- for the last SET operation failed.
psaErrorLastIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If at least one entry exists in the error status table, the value of
this object contains the index corresponding to the last entry inserted
in the table. If no entries have ever been inserted in the psaErrorTable,
then the agent will return 0 for a query of this variable. Actually
this object is not required any more because of the new objects
psaErrorLastDesc and psaErrorLastEcode. One can do GET directly on
psaErrorLastDesc/LastEcode."
::= { portGroup 6 }
psaErrorFlushAll OBJECT-TYPE
SYNTAX INTEGER {
noOp(1),
flush(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object to the value 'flush' indicates to the agent that
a manager would like the psaErrorTable to be immediately flushed of
all entries.
A management retrieval of this object will always return the value
'noOp'. Setting this object to the value 'noOp' is invalid."
::= { portGroup 7 }
-- The following table is used to maintain status information about
-- SNMP SET requests from a Manager. When an SNMP SET fails, an
-- entry in this table is created and the object psaErrorLastIndex
-- is updated.
-- Even though this table is indexed by requestId only,
-- same requestId can be used by different managers.
-- The reason is Managers's IpAddr is also used as an additional index,
-- but is kept transparent to the user.
psaErrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF PsaErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A List of recent Errors reported by the Port Service Agent (PSA)."
::= { portGroup 8 }
psaErrorEntry OBJECT-TYPE
SYNTAX PsaErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A General Error Status Entry."
INDEX { psaErrorReqId }
::= { psaErrorTable 1 }
PsaErrorEntry ::= SEQUENCE {
psaErrorReqId INTEGER,
psaErrorDesc DisplayString,
psaErrorEcode INTEGER
}
psaErrorReqId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains the PDU request ID associated with the SET
request. The manager must use this information to find the error
associated with a particular SNMP request.
Note that an SNMP request ID may be reused by the same manager.
When this occurs, the older entry in the table will be replaced
with the new error status. Managers must be aware that error
information may therefore be lost."
::= { psaErrorEntry 1 }
psaErrorDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains error status information for failed SETS to
one or more objects in one or more of the following tables:
svFrPortTable, svAtmPortTable
Rows in this table may be created as the result of a failed SNMP SET
operation. Since the SNMP standard allows only limited number of error
result codes, the managers can retrieve this variable to get additional
information on a failed SET operation. Typically this object will
contain a user friendly description of the cause of the error."
::= { psaErrorEntry 2 }
psaErrorEcode OBJECT-TYPE
SYNTAX INTEGER
{
invalid-network(1),
-- No such Network(domain) in the Database
invalid-node(2),
-- No such Node in the Database
invalid-shelf(3),
-- No such Nhelf for the given node
invalid-release(4),
-- Unsupported release fot the given Node/Shelf
node-timeout(5),
-- Timeout from the given Node/Shelf
node-busy(6),
-- Node is busy processing other requests
no-snmpcomm(7),
-- The demon process snmpcomm is not running
snmpcomm-error(8),
-- Internal error at the demon process snmpcomm
node-error(9),
-- Error at the embedded Agent
bad-value(10),
-- Bad value for the given Object
port-not-found(11),
-- The specified port does not exists
slot-is-full(12),
-- AddPort error, no more ports on this slot
no-emd(13),
-- The demon process emd is not running
emd-error(14),
-- Internal error at the daemon process 'emd'
rowstatus-missing(100),
-- RowStatus object is missing from the SET request
port-exists(101),
-- AddPort error, port already exists
invalid-slot(102),
-- No such slot
invalid-line(103),
-- No such line
line-is-full(104),
-- AddPort error, no more ports on this line
multiple-ports(105),
-- Multiple ports are specified in the request
port-reserved(106),
-- Port is Reserved for internal use(Signalling)
na-frsm(107),
-- This object is not applicable for AXIS FRSM ports
na-frp(108),
-- This object is not applicable for IPX-FRP ports
no-up-down-frsm(109),
-- RowStatus can not be up-frp and down-frp for frsm ports
invalid-set(110),
-- SET is allowed for addport only
illegal-set(111),
-- Dependency on other parameter values
partial-add(112),
-- Added the port, but unable to modify params
na-ausm(113),
-- This object is not applicable for AXIS AUSM ports
na-iam(114),
-- This object is not applicable for IMA ports
na-atm(115),
-- This object is not applicable for ATM ports
na-bxm(116),
-- This object is not applicable for bxm (monarch) ATM ports
na-hs1(117),
-- This object is not applicable for frsm hs1 ports
na-cesm(118),
-- This object is not applicable for cesm ports
invalid-port-index(119),
-- Port index used is out of the specified range
unsupported-card(120),
-- The specified slot has a card that is not supported.
lmi-var(121),
-- An LMI variable is speciifed for a card that doesn't support LMI.
na-ufm(122),
-- This object is not applicable for IGX-UFM ports
na-frm(123),
-- This object is not applicable for IGX-FRM ports
na-asi(124),
-- This object is not applicable for ASI ports
na-card(125),
-- This object is not applicable for the card
missing-mandatory(127),
-- A mandatory object is missing from the SET request
na-frsm-hs1(128),
-- This object is not applicable for frsm-hs1 ports
invalid-line-number(129),
-- Invalid line number
na-ufmU(130),
-- This object is not applicable for IGX-UFMU ports
no-error-entry(500),
-- No entries available in the ErrorTable
not-applicable(501),
-- Error Code not relevant, rely on Error Description
invalid-flushall(502)
-- Can not set to noOp for psaErrorFlushAll
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains the error Code of the GET/SET operation.
The error Codes from 500 onwards are specific to the Error Table
operation itself.
Note that currently GET errors are not updated in the error table."
::= { psaErrorEntry 3 }
psaErrorLastDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This contains the error description of the last error generated.
If error table contains no errors, GET on this will return NULL string"
::= { portGroup 9 }
psaErrorLastEcode OBJECT-TYPE
SYNTAX INTEGER
{
invalid-network(1),
-- No such Network(domain) in the Database
invalid-node(2),
-- No such Node in the Database
invalid-shelf(3),
-- No such Shelf for the given node
invalid-release(4),
-- Unsupported release for the given Node/Shelf
node-timeout(5),
-- Timeout from the given Node/Shelf
node-busy(6),
-- Node is busy processing other requests
no-snmpcomm(7),
-- The demon process snmpcomm is not running
snmpcomm-error(8),
-- Internal error at the demon process snmpcomm
node-error(9),
-- Error at the embedded Agent
bad-value(10),
-- Bad value for the given Object
port-not-found(11),
-- The specified port does not exists
slot-is-full(12),
-- AddPort error, no more ports on this slot
no-emd(13),
-- The demon process emd is not running
emd-error(14),
-- Internal error at the daemon process 'emd'
rowstatus-missing(100),
-- RowStatus object is missing from the SET request
port-exists(101),
-- AddPort error, port already exists
invalid-slot(102),
-- No such slot
invalid-line(103),
-- No such line
line-is-full(104),
-- AddPort error, no more ports on this line
multiple-ports(105),
-- Multiple ports are specified in the request
port-reserved(106),
-- Port is Reserved for internal use(Signalling)
na-frsm(107),
-- This object is not applicable for AXIS FRSM ports
na-frp(108),
-- This object is not applicable for IPX-FRP ports
no-up-down-frsm(109),
-- RowStatus can not be up-frp and down-frp for frsm ports
invalid-set(110),
-- SET is allowed for addport only
illegal-set(111),
-- Dependency on other parameter values
partial-add(112),
-- Added the port, but unable to modify params
na-ausm(113),
-- This object is not applicable for AXIS AUSM ports
na-iam(114),
-- This object is not applicable for IMA ports
na-atm(115),
-- This object is not applicable for ATM ports
na-bxm(116),
-- This object is not applicable for bxm (monarch) ATM ports
na-hs1(117),
-- This object is not applicable for frsm hs1 ports
na-cesm(118),
-- This object is not applicable for cesm ports
invalid-port-index(119),
-- Port index used is out of the specified range
unsupported-card(120),
-- The specified slot has a card that is not supported.
lmi-var(121),
-- An LMI variable is speciifed for a card that doesn't support LMI.
na-ufm(122),
-- This object is not applicable for IGX-UFM ports
na-frm(123),
-- This object is not applicable for IGX-FRM ports
na-asi(124),
-- This object is not applicable for ASI ports
na-card(125),
-- This object is not applicable for the card
missing-mandatory(127),
-- A mandatory object is missing from the SET request
na-frsm-hs1(128),
-- This object is not applicable for frsm-hs1 ports
invalid-line-number(129),
-- Invalid line number
na-ufmU(130),
-- This object is not applicable for IGX-UFMU ports
no-error-entry(500),
-- No entries available in the ErrorTable
not-applicable(501),
-- Error Code not relevant, rely on Error Description
invalid-flushall(502)
-- Can not set to noOp for psaErrorFlushAll
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This contains the error code of the last error generated.
If error table contains no errors, GET on this object returns 500."
::= { portGroup 10 }
-- Table for Frame Relay and ATM ports in Alarmed state.
-- Expected performance:
-- walk on this table gives 25 objects/sec.
NOTE: For performance reasons data in this table is cached for 5 mts. Real time
changes occured within 5 mts. may not be reflected in the data provided to
the SNMP managers.
svPortAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvPortAlarmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table for the Frame Relay and ATM ports in Alarmed State."
::= { portGroup 11 }
svPortAlarmEntry OBJECT-TYPE
SYNTAX SvPortAlarmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Ports Alarm Entry"
INDEX { svPortAlarmNode, svPortAlarmShelf,
svPortAlarmSlot, svPortAlarmLine, svPortAlarmPort }
::= { svPortAlarmTable 1 }
SvPortAlarmEntry ::=
SEQUENCE {
svPortAlarmNode DisplayString,
svPortAlarmShelf DisplayString,
svPortAlarmSlot INTEGER,
svPortAlarmLine INTEGER,
svPortAlarmPort INTEGER,
svPortAlarmPortType INTEGER
}
svPortAlarmNode OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Routing Node Name."
::= { svPortAlarmEntry 1 }
svPortAlarmShelf OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"String identifying the feeder/shelf."
::= { svPortAlarmEntry 2 }
svPortAlarmSlot OBJECT-TYPE
SYNTAX INTEGER (1..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Slot Number."
::= { svPortAlarmEntry 3 }
svPortAlarmLine OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Line Number.
Only applicable to AXIS-FRSM.
Value 0 is returned for all other ports."
::= { svPortAlarmEntry 4 }
svPortAlarmPort OBJECT-TYPE
SYNTAX INTEGER (1..250)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"port number - a unique value greater than '0' within a card.
The range for each type of card is given below:
IPX FRP -- (1..24) for T1, (1..32) for E1
IPX FRP port concentrator -- (1..44)
IGX FRM -- (1..24) for T1, (1..32) for E1
IGX UFM -- (1..250)
IGX UFMU -- (1..4) for HSSI, (1..12) for V35 & X21
AXIS CESM-4 -- (1..4)
BPX ASI -- (1..2)
BPX BXM (Monarch) -- (1..12)
AXIS FRSM HS1 -- (1..4)
AXIS FRSM-4 -- (1..128)
AXIS AUSM-4 -- (1..4)
AXIS AUSM-8 ports -- (1..8)
This is physical port Number for FRSM/FRP. Logical Port Number
for others.
"
::= { svPortAlarmEntry 5 }
svPortAlarmPortType OBJECT-TYPE
SYNTAX INTEGER {
fr(1),
atm(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Port Type, Frame relay or ATM."
::= { svPortAlarmEntry 6 }
-- END of portGroup, PortProxy MIB for Rel8.4 onwards
insDas
-- INS DAS MIBs for ANI, Conn and Assc backup configuration
--
-- insDas MIB defines tables and attributes for configuring
-- ANIs , Dialup/Dialbackup FrameRelay Conns and Associative backup.
dasAniTable
-- Table for Configuring ANIs.
--
Following SET operations are supported on dasAniTable:
-- Adding an ANI:
Following Objects must be SET in the request.
--
-- dasAniRowStatus (value is addAni)
-- dasAniAniType
-- Since dasAniAni is the table index,
-- it is part of the above objects anyway,
-- hence no need to supply that object in the SET request.
-- Default values are considered for the other objects which are
-- not supplied in the SET request.
-- To override the default values, include those objects in the request.
-- Modifying an ANI:
Following Object must be SET in the request.
--
-- dasAniRowStatus (value is modAni)
--
-- Include any other objects(read-write) which need to be modified.
--
-- Deleting an ANI:
Following Object must be SET in the request.
-- dasAniRowStatus (value is delAni)
--
-- NOTE: Configuring multiple ANIs in the same SET request is not supported.
dasAniTable OBJECT-TYPE
SYNTAX SEQUENCE OF DasAniEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "ANI information."
::= { insDas 1 }
dasAniEntry OBJECT-TYPE
SYNTAX DasAniEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX { dasAniAni }
::= { dasAniTable 1 }
DasAniEntry ::=
SEQUENCE {
dasAniAni DisplayString,
dasAniRowStatus INTEGER,
dasAniAniType INTEGER,
dasAniMaxTxQDepth INTEGER,
dasAniECNQThresh INTEGER,
dasAniDEThresh INTEGER,
dasAniCLLMTimer INTEGER,
dasAniIDEMap INTEGER,
dasAniFrmFlags INTEGER,
dasAniSigProto INTEGER,
dasAniPortIf INTEGER,
dasAniAsyncStatus INTEGER,
dasAniPollVerTimer INTEGER,
dasAniErrThresh INTEGER,
dasAniMonEveCnt INTEGER,
dasAniOamThresh INTEGER,
dasAniCommPri INTEGER,
dasAniUpRNR INTEGER,
dasAniLowRNR INTEGER
}
dasAniAni OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION "ANI, subscriber's telephone number or node name.
The range for telephone number is (1..20) and
for node name is (1..10).
Ex1: 4088822651, Ex2: nmsipx12."
::= { dasAniEntry 1 }
dasAniRowStatus OBJECT-TYPE
SYNTAX INTEGER {
addAni(1),
delAni(2),
modAni(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Specify addAni(1) for Adding ANI,
delAni(2) for deleting ANI and modAni(3) for modifying
the ANI parameters."
::= { dasAniEntry 2 }
dasAniAniType OBJECT-TYPE
SYNTAX INTEGER {
dialup (1),
dialbackup (2),
dasiDialup (3),
dasiDialbackup(4),
hostnameDialup(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "ANI type, must be SET for adding"
::= { dasAniEntry 3 }
dasAniMaxTxQDepth OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum bytes queued for transmission from the port."
DEFVAL { 65535 }
::= { dasAniEntry 4 }
dasAniECNQThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Port explicit congestion notification threshold.
This is the point at which the BECN and FECN bits
will be set in the communications to the user device."
DEFVAL { 65535 }
::= { dasAniEntry 5 }
dasAniDEThresh OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The percentage of the queue depth above which frames
with the Discard Eligibility bit set will be discarded.
An entry of 100% effectively disables DE for the port."
DEFVAL { 100 }
::= { dasAniEntry 6 }
dasAniCLLMTimer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The timer for CLLM messages in CLLM intervals.
No CLLM if 0 is configured. If a user configures this
value to be greater than 0 then it should be in the
range 4 to 35. The unit is hundredth of a second."
DEFVAL { 0 }
::= { dasAniEntry 7 }
dasAniIDEMap OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag indicating whether IDE to DE
mapping should be performed."
DEFVAL { no }
::= { dasAniEntry 8 }
dasAniFrmFlags OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The minimum number of flags between frames."
DEFVAL { 1 }
::= { dasAniEntry 9 }
dasAniSigProto OBJECT-TYPE
SYNTAX INTEGER {
none (1),
strataLMI (2),
annexA (3),
annexD (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Signalling Protocol."
DEFVAL { none }
::= { dasAniEntry 10 }
dasAniPortIf OBJECT-TYPE
SYNTAX INTEGER {
nni(1),
uni(2),
na (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag indicating whether the port is NNI/UNI.
This is valid only when SigProto is annexA or annexD.
- Get Operation:
This object is always na(3) for ports without annexA/D.
- Set Operation:
If the network manager attempts to SET this object
for a port with none or LMI protocol,
an error is reported.
Also if the network manager attempts to SET this object
to na(3) an error is reported.
"
DEFVAL { nni }
::= { dasAniEntry 11 }
dasAniAsyncStatus OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag indicating whether unsolicited LMI
update messages should be sent as they appear or
wait for the polling from the user device.
- Get Operation:
This object is always no(1) for ports without protocols.
- Set Operation:
If the network manager attempts to SET this object of a
port without any protocol, an error is reported.
"
DEFVAL { no }
::= { dasAniEntry 12 }
dasAniPollVerTimer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The link integrity verification timer heartbeat (keep-alive)
period. It should be set to 5 seconds more than the heartbeat
time in the user device.
The valid range is (5..30).
- Get Operation:
Since this object is not applicable to disabled protocol,
(0) is returned if the network manager attempts
to GET this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object
of a port without any protocol, an error is reported."
DEFVAL { 15 }
::= { dasAniEntry 13 }
dasAniErrThresh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of the failures in the monitored events that
cause the keep-alive process to report an alarm.
The valid range is (1..10).
- Get Operation:
Since this object is not applicable to disabled protocol,
(0) is returned if the network manager attempts
to GET this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object
of a port without any protocol, an error is reported."
DEFVAL { 5 }
::= { dasAniEntry 14 }
dasAniMonEveCnt OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of monitored events for the keep-alive process.
A port communication fail condition is cleared after this
number of successful polling cycles.
The valid range is (1..10)
- Get Operation:
Since this object is not applicable to disabled protocol,
(0) is returned if the network manager attempts
to GET this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object
of a port without any protocol, an error is reported."
DEFVAL { 5 }
::= { dasAniEntry 15 }
dasAniOamThresh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The alarm threshold for number of OAM heartbeat
FastPackets missed before propagating A-bit=0.
The valid range is (0..15).
- Get Operation:
Since this object is not applicable to disabled protocol,
(0) is returned if the network manager attempts
to GET this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object
of a port without any protocol, an error is reported."
DEFVAL { 5 }
::= { dasAniEntry 16 }
dasAniCommPri OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag specifying if the connection SNA priority should
be communicated to the user device attached to the port.
- Get Operation:
Since this object is specific to LMI protocols,
no(1) is returned if the network manager attempts
to GET this object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET
this object of a non-LMI port, an error is reported.
"
DEFVAL { no }
::= { dasAniEntry 17 }
dasAniUpRNR OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The upper Receiver-Not-Ready threshold. This threshold
specifies the number of receiver not ready indications
from the user equipment before an alarm is generated for
this connection.
The valid range is (1..100)
- Get Operation:
Since this object is specific to LMI protocols,
(0) is returned if the network manager attempts
to GET this object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET
this object of a non-LMI port, an error is reported."
DEFVAL { 75 }
::= { dasAniEntry 18 }
dasAniLowRNR OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Lower Receiver-Not-Ready threshold. This threshold
specifies the number of receiver not ready indications
from the user equipment before an alarm is cleared for
this connection.
The valid range is (1..100)
- Get Operation:
Since this object is specific to LMI protocols,
(0) is returned if the network manager attempts
to GET this object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET
this object of a non-LMI port, an error is reported."
DEFVAL { 75 }
::= { dasAniEntry 19 }
-- End of dasAniTable definition
dasConnTable
-- Table for Configuring Dialup/Dialbackup connections and Backup Assocoations.
--
-- Following SET operations are supported on dasConnTable:
--
-- Adding Dialup/Dialbackup connection:
-- Following Objects must be SET in the request.
--
-- dasConnRowStatus (value is addConn)
-- dasConnTrmEndpt
-- Since dasConnAni and dasConnOrgDlci
-- are the table indices, they are part of the above objects anyway,
-- hence no need to supply those objects in the SET request.
-- Default values are considered for the other objects which are
-- not supplied in the SET request.
-- To override the default values, include those objects in the request.
-- Adding Association with an existing Dialbackup conn:
-- Following Objects must be SET in the request.
--
-- dasConnRowStatus (value is addAssc)
-- dasConnAsscEndpt
-- Default values are considered for the other objects which are
-- not supplied in the SET request.
-- To override the default values, include those objects in the request.
-- Adding Dialbackup conn and also Association:
-- Following Objects must be SET in the request.
--
-- dasConnRowStatus (value is addConnAndAssc)
-- dasConnTrmEndpt
-- dasConnAsscEndpt
-- Since dasConnAni and dasConnOrgDlci
-- are the table indices, they are part of the above objects anyway,
-- hence no need to supply those objects in the SET request.
-- Default values are considered for the other objects which are
-- not supplied in the SET request.
-- To override the default values, include those objects in the request.
-- Modifying Dialup/Dialbackup connection:
-- Following Object must be SET in the request.
-- dasConnRowStatus (value is modConn)
--
-- Include any other objects(read-write) which need to be modified.
--
-- Deleting Dialup/Dialbackup connection:
-- Following Object must be SET in the request.
--
-- dasConnRowStatus (value is delConn)
--
-- Deleting /Dialbackup Association:
-- Following Object must be SET in the request.
--
-- dasConnRowStatus (value is delAssc)
--
NOTE: Configuring multiple Conns/Asscs in the same SET request not supported.
dasConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DasConnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Dialup/Dialbackup connection Table."
::= { insDas 2 }
dasConnEntry OBJECT-TYPE
SYNTAX DasConnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION ""
INDEX { dasConnAni, dasConnOrgDlci }
::= { dasConnTable 1 }
DasConnEntry ::=
SEQUENCE {
dasConnAni DisplayString,
dasConnOrgDlci INTEGER,
dasConnRowStatus INTEGER,
dasConnAniType INTEGER,
dasConnConnType INTEGER,
dasConnTrmEndpt DisplayString,
dasConnAsscEndpt DisplayString,
dasConnForesight INTEGER,
dasConnCos INTEGER,
dasConnTrkAvoid INTEGER,
dasConnZcs INTEGER,
dasConnOrgCir INTEGER,
dasConnOrgMir INTEGER,
dasConnOrgPir INTEGER,
dasConnOrgQir INTEGER,
dasConnOrgBc INTEGER,
dasConnOrgBe INTEGER,
dasConnOrgPerUtil INTEGER,
dasConnOrgIbs INTEGER,
dasConnOrgCmax INTEGER,
dasConnOrgVcQDepth INTEGER,
dasConnOrgEgrVcQDepth INTEGER,
dasConnOrgEcnThresh INTEGER,
dasConnOrgEgrEcnThresh INTEGER,
dasConnOrgIngDeThresh INTEGER,
dasConnOrgEgrDeThresh INTEGER,
dasConnOrgEgrQSelect INTEGER,
dasConnOrgIgrDeTag INTEGER,
dasConnTrmCir INTEGER,
dasConnTrmMir INTEGER,
dasConnTrmPir INTEGER,
dasConnTrmQir INTEGER,
dasConnTrmBc INTEGER,
dasConnTrmBe INTEGER,
dasConnTrmPerUtil INTEGER,
dasConnTrmIbs INTEGER,
dasConnTrmCmax INTEGER,
dasConnTrmVcQDepth INTEGER,
dasConnTrmEgrVcQDepth INTEGER,
dasConnTrmEcnThresh INTEGER,
dasConnTrmEgrEcnThresh INTEGER,
dasConnTrmIngDeThresh INTEGER,
dasConnTrmEgrDeThresh INTEGER,
dasConnTrmEgrQSelect INTEGER,
dasConnTrmIgrDeTag INTEGER,
dasConnOrgPriority INTEGER,
dasConnTrmPriority INTEGER
}
dasConnAni OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION "ANI, subscriber's telephone number.
Ex: 8822651"
::= { dasConnEntry 1 }
dasConnOrgDlci OBJECT-TYPE
SYNTAX INTEGER (0..1023)
ACCESS read-only
STATUS mandatory
DESCRIPTION "DLCI, Parameter for the Originating End.
This parameter is not applicable for AniType dasiDialup(3)
and dasiDialbackup(4), and hence the value (0) must be used."
::= { dasConnEntry 2 }
dasConnRowStatus OBJECT-TYPE
SYNTAX INTEGER {
addConn (1),
delConn (2),
modConn (3),
addAssc (4),
delAssc (5),
addConnAndAssc(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "addConn(1) for adding Dialup/Dialbackup conns.
delConn(2) for deleting Dialup/Dialbackup conns.
modConn(3) for modifying Dialup/Dialbackup conns.
addAssc(4) for adding Backup Association.
delAssc(5) for deleting Backup Association.
addConnAndAssc(6) for adding Backup conn and
also association."
::= { dasConnEntry 3 }
dasConnAniType OBJECT-TYPE
SYNTAX INTEGER {
dialup (1),
dialbackup (2),
dasiDialup (3),
dasiDialbackup(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "ANI Type."
::= { dasConnEntry 4 }
dasConnConnType OBJECT-TYPE
SYNTAX INTEGER {
fr-fr (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Connection Type."
::= { dasConnEntry 5 }
dasConnTrmEndpt OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..50))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Terminating Endpt specification.
Format for dialup, dasiDialup and hostnameDialup ANIs:
node.shelf.slot.line.port.dlci
Ex1: bpx01.axis01.5.4.2.100
Ex2: ipx01..5.4.2.100
Format for dialbackup and dasiDialbackup ANIs:
node.shelf.slot.line.port
Ex: bpx01.axis01.5.4.2
(No dlci is required for Dialbackup ANIs)
Set Operation:
Allowed only at the time of adding Connection.
i.e., when RowStatus is addConn(1) or addConnAndAssc(6).
Parameter for the Terminating End."
::= { dasConnEntry 6 }
dasConnAsscEndpt OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..50))
ACCESS read-write
STATUS mandatory
DESCRIPTION "Originating Endpt Specification of the Connection,
to which this Dialbackup Conn is getting associated.
Format:
node.shelf.slot.line.port.dlci
Ex: bpx01.axis01.5.4.2.100
Set Operation:
Allowed only at the time of adding Association.
i.e., when RowStatus is addAssc(4) or addConnAndAssc(6).
Not applicable for AniTypes: dialup and dasiDialup."
::= { dasConnEntry 7 }
dasConnForesight OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Flag to enable/disable foresight."
DEFVAL { disable }
::= { dasConnEntry 8 }
dasConnCos OBJECT-TYPE
SYNTAX INTEGER (0..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Class of service for this connection. The lower
the class value, the higher the routing priority
of the connection."
DEFVAL { 0 }
::= { dasConnEntry 9 }
dasConnTrkAvoid OBJECT-TYPE
SYNTAX INTEGER {
none (1),
satellite (2),
terrestrial(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "User selectable types of trunks to avoid for the
transfer of data. Current choices are to avoid
satellite links, terrestrial links, or to not avoid
any specific type of link."
DEFVAL { none }
::= { dasConnEntry 10 }
dasConnZcs OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Flag to force the connection to avoid trunks with
Zero Code Suppression."
DEFVAL { false }
::= { dasConnEntry 11 }
dasConnOrgCir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Committed Information Rate in bits per second.
This attribute can only be set to values divisible by 100.
Parameter for the Originating End."
DEFVAL { 9600 }
::= { dasConnEntry 12 }
dasConnOrgMir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The minimum transmit bandwidth in bits per second.
This object has the relationship MIR <= CIR.
This attribute can only be set to values divisible by 100.
Parameter for the Originating End."
DEFVAL { 9600 }
::= { dasConnEntry 13 }
dasConnOrgPir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The peak transmit bandwidth in bits per second.
This attribute can only be set to values divisible by 100.
Parameter for the Originating End."
DEFVAL { 9600 }
::= { dasConnEntry 14 }
dasConnOrgQir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The transmit quiescent information rate in bits per second.
This object has the relationship CIR <= QIR <= PIR.
This attribute can only be set to values divisible by 100.
Parameter for the Originating End."
DEFVAL { 9600 }
::= { dasConnEntry 15 }
dasConnOrgBc OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Committed burst size in bytes.
Parameter for the Originating End."
::= { dasConnEntry 16 }
dasConnOrgBe OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Excess burst size in bytes.
Parameter for the Originating End."
::= { dasConnEntry 17 }
dasConnOrgPerUtil OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is equal to the channel
percentage utilization setting for this end-point.
This is the expected long-term utilization of the
channel by this end-point.
Parameter for the Originating End."
DEFVAL { 100 }
::= { dasConnEntry 18 }
dasConnOrgIbs OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Initial burst size in bytes.
Applicable to AXIS-FRSM only.
Parameter for the Originating End."
DEFVAL { 5100 }
::= { dasConnEntry 19 }
dasConnOrgCmax OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum credits that can be accrued for this end-point.
Applicable to IPX/IGX only.
Parameter for the Originating End."
DEFVAL { 10 }
::= { dasConnEntry 20 }
dasConnOrgVcQDepth OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Maximum queue depth in bytes.
Queue Depth on Ingress for AXIS-FRSM.
Parameter for the Originating End."
DEFVAL { 65535 }
::= { dasConnEntry 21 }
dasConnOrgEgrVcQDepth OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Maximum queue depth in bytes on Egress.
Parameter for the Originating End.
Applicable to AXIS-FRSM only.
Parameter for the Originating End."
DEFVAL { 65535 }
::= { dasConnEntry 22 }
dasConnOrgEcnThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Threshold setting used by the explicit congestion
notification.
ECN Threshold on Ingress for AXIS-FRSM.
Parameter for the Originating End."
DEFVAL { 6553 }
::= { dasConnEntry 23 }
dasConnOrgEgrEcnThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Threshold setting used by the explicit congestion
notification on Egress. Applicable to AXIS-FRSM only.
Parameter for the Originating End."
DEFVAL { 6553 }
::= { dasConnEntry 24 }
dasConnOrgIngDeThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Ingress threshold at which deletion occurs based on DE.
Applicable to AXIS-FRSM only.
Parameter for the Originating End."
DEFVAL { 32768 }
::= { dasConnEntry 25 }
dasConnOrgEgrDeThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Egress threshold at which deletion occurs based on DE.
Applicable to AXIS-FRSM only.
Parameter for the Originating End."
DEFVAL { 32768 }
::= { dasConnEntry 26 }
dasConnOrgEgrQSelect OBJECT-TYPE
SYNTAX INTEGER {
highPriority(1),
lowPriority(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Selects one out of two possible port queues.
The default port queue number is 2 which is the low
priority queue. Applicable to AXIS-FRSM only.
Parameter for the Originating End."
DEFVAL { lowPriority }
::= { dasConnEntry 27 }
dasConnOrgIgrDeTag OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Enable/disable DE tagging in the ingress direction.
Applicable to AXIS-FRSM only.
Parameter for the Originating End."
DEFVAL { disable }
::= { dasConnEntry 28 }
dasConnTrmCir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Committed Information Rate in bits per second.
This attribute can only be set to values divisible by 100.
Parameter for the Terminating End."
DEFVAL { 9600 }
::= { dasConnEntry 29 }
dasConnTrmMir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The minimum transmit bandwidth in bits per second.
This object has the relationship MIR <= CIR.
This attribute can only be set to values divisible by 100.
Parameter for the Terminating End."
DEFVAL { 9600 }
::= { dasConnEntry 30 }
dasConnTrmPir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The peak transmit bandwidth in bits per second.
This attribute can only be set to values divisible by 100.
Parameter for the Terminating End."
DEFVAL { 9600 }
::= { dasConnEntry 31 }
dasConnTrmQir OBJECT-TYPE
SYNTAX INTEGER (2400..2048000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The transmit quiescent information rate in bits per second.
This object has the relationship CIR <= QIR <= PIR.
This attribute can only be set to values divisible by 100.
Parameter for the Terminating End."
DEFVAL { 9600 }
::= { dasConnEntry 32 }
dasConnTrmBc OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Committed burst size in bytes.
Parameter for the Terminating End."
::= { dasConnEntry 33 }
dasConnTrmBe OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Excess burst size in bytes.
Parameter for the Terminating End."
::= { dasConnEntry 34 }
dasConnTrmPerUtil OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The value of this object is equal to the channel
percentage utilization setting for this end-point.
This is the expected long-term utilization of the
channel by this end-point.
Parameter for the Terminating End."
DEFVAL { 100 }
::= { dasConnEntry 35 }
dasConnTrmIbs OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Initial burst size in bytes.
Applicable to AXIS-FRSM only.
Parameter for the Terminating End."
DEFVAL { 5100 }
::= { dasConnEntry 36 }
dasConnTrmCmax OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum credits that can be accrued for this end-point.
Applicable to IPX/IGX only.
Parameter for the Terminating End."
DEFVAL { 10 }
::= { dasConnEntry 37 }
dasConnTrmVcQDepth OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Maximum queue depth in bytes.
Ingress Queue Depth for AXIS-FRSM.
Parameter for the Terminating End."
DEFVAL { 65535 }
::= { dasConnEntry 38 }
dasConnTrmEgrVcQDepth OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Maximum queue depth in bytes on Egress.
Applicable to AXIS-FRSM only.
Parameter for the Terminating End."
DEFVAL { 65535 }
::= { dasConnEntry 39 }
dasConnTrmEcnThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Threshold setting used by the explicit congestion
notification.
Ingress ECN Threshold for AXIS-FRSM.
Parameter for the Terminating End."
DEFVAL { 6553 }
::= { dasConnEntry 40 }
dasConnTrmEgrEcnThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Threshold setting used by the explicit congestion
notification on Egress. Applicable to AXIS-FRSM only.
Parameter for the Terminating End."
DEFVAL { 6553 }
::= { dasConnEntry 41 }
dasConnTrmIngDeThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Ingress threshold at which deletion occurs based on DE.
Applicable to AXIS-FRSM only.
Parameter for the Terminating End."
DEFVAL { 32768 }
::= { dasConnEntry 42 }
dasConnTrmEgrDeThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Egress threshold at which deletion occurs based on DE.
Applicable to AXIS-FRSM only.
Parameter for the Terminating End."
DEFVAL { 32768 }
::= { dasConnEntry 43 }
dasConnTrmEgrQSelect OBJECT-TYPE
SYNTAX INTEGER {
highPriority(1),
lowPriority(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Selects one out of two possible port queues.
The default port queue number is 2 which is the low
priority queue. Applicable to AXIS-FRSM only.
Parameter for the Terminating End."
DEFVAL { lowPriority }
::= { dasConnEntry 44 }
dasConnTrmIgrDeTag OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Enable/disable DE tagging in the ingress direction.
Applicable to AXIS-FRSM only.
Parameter for the Terminating End."
DEFVAL { disable }
::= { dasConnEntry 45 }
dasConnOrgPriority OBJECT-TYPE
SYNTAX INTEGER {
highPriority(1),
lowPriority(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Selects one out of two possible port queues.
The default port queue number is 2 which is the low
priority queue. Applicable to IPX/IGX only.
Parameter for the Originating End."
DEFVAL { lowPriority }
::= { dasConnEntry 46 }
dasConnTrmPriority OBJECT-TYPE
SYNTAX INTEGER {
highPriority(1),
lowPriority(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Selects one out of two possible port queues.
The default port queue number is 2 which is the low
priority queue. Applicable to IPX/IGX only.
Parameter for the Terminating End."
DEFVAL { lowPriority }
::= { dasConnEntry 47 }
-- End of dasConnTable definition
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- dasErrorTable
-- *************
--
-- Table for Storing SET errors encountered in the DAS Proxy execution
--
-- This table is used to maintain status information about
-- SNMP SET requests from a Manager. When an SNMP SET fails, an
-- entry in this table is created.
dasErrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF DasErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A List of recent Errors reported by the
DAS Proxy Agent."
::= { insDas 4 }
dasErrorEntry OBJECT-TYPE
SYNTAX DasErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A General Error Status Entry."
INDEX { dasErrorReqId }
::= { dasErrorTable 1 }
DasErrorEntry ::= SEQUENCE {
dasErrorReqId INTEGER,
dasErrorDesc DisplayString,
dasErrorEcode INTEGER
}
dasErrorReqId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object contains the PDU request ID associated with
the SET request. The manager must use this information to
find the error associated with a particular SNMP request.
Note that an SNMP request ID may be reused by
the same manager. When this occurs,
the older entry in the table will be replaced with the
new error status. Managers must be aware that
error information may therefore be lost."
::= { dasErrorEntry 1 }
dasErrorDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object contains error status information for failed
SETS to one or more objects in one or more of the
following tables:
dasAniTable and dasConnTable
Rows in this table may be created as the result of
a failed SNMP SET operation.
Since the SNMP standard allows only limited number of
error result codes, the managers can retrieve this
variable to get additional information on a failed
SET operation. Typically this object will contain
a user friendly description of the cause of the error."
::= { dasErrorEntry 2 }
ErrCode ::= INTEGER {
invalid-node(2),
-- No such Node in the Database
invalid-shelf(3),
-- No such Shelf for the given node
invalid-release(4),
-- Unsupported release fot the given Node/Shelf
bad-value(10),
-- Bad value for the given Object
insd-timeout(20),
-- No response from INS demon
insd-died(21),
-- INS demon died during the transaction
insd-unavailable(22),
-- INS demon unavailable for communication
insd-error(23),
-- Error from INS demon
insd-connect-error(24),
-- Could not connect to insd
insd-node-not-found(25),
-- Not able to find the Active INSD host
sv-db-error(30),
-- SV+ Database Error, database not available?
ins-db-error(31),
-- INS Database Error, database not available?
malloc-error(40),
-- System out of swap
interna-error(41),
-- Proxy internal error
delete-conns-first(50),
-- Connections must be deleted first, before deleting ANI
anitype-missing(90),
-- RowStatus object is missing from the SET request
trmendpt-missing(91),
-- dasConnTrmEndpt is missing from the SET request
asscendpt-missing(92),
-- dasConnAsscEndpt is missing from the SET request
trmend-mismatch(93),
-- Invalid AsscEndpt, PVC/backupConn Terminating Ends mis-match
invalid-dlci(95),
-- Invalid DLCI index, Out of range
multiple-instances(99),
-- multiple instances of the same object in the Request
rowstatus-missing(100),
-- RowStatus object is missing from the SET request
ani-exists(101),
-- add ANI error, ANI already exists
ani-not-found(102),
-- mod/del ANI error, ANI specified not found
invalid-ani(103),
-- Invalid ANI, probably characters other than digits used
multiple-anis(105),
-- Multiple anis are specified in the SET request
invalid-format(106),
-- The object format does not match the specification
na-frsm(107),
-- This object is not applicable for FRSM endpt
na-frp(108),
-- This object is not applicable for FRP endpt
invalid-set(110),
-- SET on this object is allowed for adds only
illegal-set(111),
-- Dependency on other parameter values
trmend-exists(120),
-- add Conn error, end point already exists
conn-exists(121),
-- add Conn error, Conn already exists
conn-not-found(122),
-- mod/del Conn error, Conn specified not found
multiple-conns(125),
-- Multiple conns are specified in the SET request
no-more-conns(126),
-- No more conns for the ANI, limit exceeded
port-not-found(127),
-- port specified in the conn endpt does not exist
assc-endpt-not-found(130),
-- Assc Endpt specified does not exist
no-error-entry(500),
-- No entries available in the ErrorTable
not-applicable(501),
-- Error Code not relevant, rely on Error Description
invalid-flushall(502)
-- Can not set to noOp for dasErrorFlushAll
}
dasErrorEcode OBJECT-TYPE
SYNTAX ErrCode
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object contains the error Code of the SET operation.
The error Codes from 500 onwards are specific to the
Error Table operation itself."
::= { dasErrorEntry 3 }
-- End of dasErrorTable definition
-- Error Status scalars
-- These Objects give information out of the error table.
dasErrorLastIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "If at least one entry exists in the error status table,
the value of this object contains the index corresponding
to the last entry inserted in the table. If no entries
have ever been inserted in the dasErrorTable, then
the agent will return 0 for a query of this variable.
Actually this object is not required any more because
of the new objects dasErrorLastDesc and dasErrorLastEcode.
One can do GET directly on dasErrorLastDesc/LastEcode."
::= { insDas 5 }
dasErrorFlushAll OBJECT-TYPE
SYNTAX INTEGER {
noOp(1),
flush(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this object to the value 'flush' indicates to
the agent that a manager would like the dasErrorTable
to be immediately flushed of all entries.
A management retrieval of this object will always return
the value 'noOp'.
Setting this object to the value 'noOp' is invalid."
::= { insDas 6 }
dasErrorLastDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION "This contains the error description of the last error
generated. If error table contains no errors, GET on
this will return NULL string"
::= { insDas 7 }
dasErrorLastEcode OBJECT-TYPE
SYNTAX ErrCode
ACCESS read-only
STATUS mandatory
DESCRIPTION "This contains the error code of the last error
generated. If error table contains no errors,
GET on this object returns 500"
::= { insDas 8 }
-- END insDas Group, DasProxy MIBs
END
|
|