499 lines
15 KiB
Plaintext
499 lines
15 KiB
Plaintext
F10-FIB-MIB DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
MODULE-IDENTITY, OBJECT-TYPE,
|
|
Unsigned32, Gauge32, Integer32, IpAddress, Counter64
|
|
FROM SNMPv2-SMI
|
|
InterfaceIndexOrZero
|
|
FROM IF-MIB
|
|
InetAddressType, InetAddress, InetAddressPrefixLength
|
|
FROM INET-ADDRESS-MIB
|
|
MacAddress
|
|
FROM SNMPv2-TC
|
|
MODULE-COMPLIANCE, OBJECT-GROUP
|
|
FROM SNMPv2-CONF
|
|
chSysCardNumber
|
|
FROM F10-CHASSIS-MIB
|
|
f10Mgmt
|
|
FROM FORCE10-SMI;
|
|
|
|
f10IpForwardMib MODULE-IDENTITY
|
|
LAST-UPDATED "200709141200Z" -- Sep 14, 2007 12:00:00 GMT
|
|
ORGANIZATION "Dell Inc"
|
|
CONTACT-INFO
|
|
"http://www.force10networks.com/support"
|
|
DESCRIPTION
|
|
"This MIB module is used to display CIDR multipath IP Routes."
|
|
REVISION "201107081200Z" -- Jul 08, 2011 12:00:00 GMT
|
|
DESCRIPTION
|
|
"This version of MIB module deprecates the f10IpForwardTable
|
|
and replaces it with f10InetCidrRouteTable which adds the
|
|
IP Protocol Independance "
|
|
REVISION "200709141200Z" -- Sep 14, 2007 12:00:00 GMT
|
|
DESCRIPTION
|
|
"Initial version of this MIB module."
|
|
::= { f10Mgmt 9 }
|
|
|
|
|
|
-- ****************************************************************************
|
|
--
|
|
-- Top-Level Object Identifier Assignments for the FIB MIB
|
|
--
|
|
-- ****************************************************************************
|
|
|
|
f10IpForwardMibObjects OBJECT IDENTIFIER ::= { f10IpForwardMib 1 }
|
|
f10IpForwardMibConformance OBJECT IDENTIFIER ::= { f10IpForwardMib 2 }
|
|
|
|
-- ****************************************************************************
|
|
--
|
|
-- IP Forward Version Table
|
|
--
|
|
-- ****************************************************************************
|
|
|
|
f10IpForwardVersionTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF F10IpForwardVersionEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This entity's IP forward version table."
|
|
::= { f10IpForwardMibObjects 1 }
|
|
|
|
f10IpForwardVersionEntry OBJECT-TYPE
|
|
SYNTAX F10IpForwardVersionEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The row definition for the ip forward version Table."
|
|
INDEX {
|
|
chSysCardNumber,
|
|
f10IpForwardAddrFamily
|
|
}
|
|
::= { f10IpForwardVersionTable 1 }
|
|
|
|
F10IpForwardVersionEntry ::=
|
|
SEQUENCE {
|
|
f10IpForwardAddrFamily
|
|
InetAddressType,
|
|
f10IpForwardVersion
|
|
Counter64
|
|
}
|
|
|
|
f10IpForwardAddrFamily OBJECT-TYPE
|
|
SYNTAX InetAddressType
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Address Family of the IP Forwarding Table for which this entry
|
|
provides the Version information. "
|
|
|
|
::= { f10IpForwardVersionEntry 1}
|
|
|
|
f10IpForwardVersion OBJECT-TYPE
|
|
SYNTAX Counter64
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A version number on the Forwarding Table.
|
|
This is always fetched from one line card."
|
|
::= { f10IpForwardVersionEntry 2 }
|
|
|
|
|
|
-- ****************************************************************************
|
|
--
|
|
-- IP Forwarding Table
|
|
--
|
|
-- The IP Forwarding Table obsoletes and replaces the ipRoute Table current
|
|
-- in MIB-I and MIB-II. It adds knowledge of the autonomous system of
|
|
-- the next hop, multiple next hop support, and policy routing support.
|
|
--
|
|
-- ****************************************************************************
|
|
|
|
f10IpForwardTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF F10IpForwardEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"This entity's IP Routing table."
|
|
::= { f10IpForwardMibObjects 2 }
|
|
|
|
f10IpForwardEntry OBJECT-TYPE
|
|
SYNTAX F10IpForwardEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"A particular route to a particular destination,
|
|
under a particular policy."
|
|
INDEX {
|
|
chSysCardNumber,
|
|
f10IpforwardDest,
|
|
f10IpforwardMask,
|
|
f10IpforwardNextHop,
|
|
f10IpforwardFirstHop
|
|
}
|
|
::= { f10IpForwardTable 1 }
|
|
|
|
F10IpForwardEntry ::=
|
|
SEQUENCE {
|
|
f10IpforwardDest
|
|
IpAddress,
|
|
f10IpforwardMask
|
|
IpAddress,
|
|
f10IpforwardNextHop
|
|
IpAddress,
|
|
f10IpforwardFirstHop
|
|
IpAddress,
|
|
f10IpforwardIfIndex
|
|
Integer32,
|
|
f10IpforwardMacAddress
|
|
MacAddress,
|
|
f10IpforwardEgressPort
|
|
OCTET STRING,
|
|
f10IpforwardCamIndex
|
|
Integer32
|
|
}
|
|
|
|
f10IpforwardDest OBJECT-TYPE
|
|
SYNTAX IpAddress
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"The destination IP address of this route. An
|
|
entry with a value of 0.0.0.0 is considered a
|
|
default route."
|
|
::= { f10IpForwardEntry 1 }
|
|
|
|
f10IpforwardMask OBJECT-TYPE
|
|
SYNTAX IpAddress
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"Indicate the mask to be logical-ANDed with the destination
|
|
address before being compared to the value in
|
|
the f10IpforwardDest field."
|
|
::= { f10IpForwardEntry 2 }
|
|
|
|
f10IpforwardNextHop OBJECT-TYPE
|
|
SYNTAX IpAddress
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"On remote routes, the address of the next system
|
|
en route; Otherwise, 0.0.0.0."
|
|
::= { f10IpForwardEntry 3 }
|
|
|
|
f10IpforwardFirstHop OBJECT-TYPE
|
|
SYNTAX IpAddress
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"On remote routes, the address of the Gateway
|
|
to the nexthop; 0.0.0.0 if the Nexthop itself is a Gateway
|
|
to the Destination"
|
|
::= { f10IpForwardEntry 4 }
|
|
|
|
f10IpforwardIfIndex OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"The ifIndex value which identifies the local
|
|
interface through which the next hop of this
|
|
route should be reached."
|
|
::= { f10IpForwardEntry 5 }
|
|
|
|
f10IpforwardMacAddress OBJECT-TYPE
|
|
SYNTAX MacAddress
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"The Mac address of the NextHop."
|
|
::= { f10IpForwardEntry 6 }
|
|
|
|
f10IpforwardEgressPort OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE (0..255))
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"The name of the egress port to which the packets will be
|
|
forwarded."
|
|
::= { f10IpForwardEntry 7 }
|
|
|
|
f10IpforwardCamIndex OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS read-only
|
|
STATUS deprecated
|
|
DESCRIPTION
|
|
"Cam Entry corresponding to a row."
|
|
::= { f10IpForwardEntry 8 }
|
|
|
|
-- ****************************************************************************
|
|
|
|
-- f10 scalar objects which provide the number of current f10InetCidrRouteTable entries
|
|
-- each per destination type
|
|
|
|
-- ****************************************************************************
|
|
|
|
f10InetCidrIpv4RouteNumber OBJECT-TYPE
|
|
SYNTAX Gauge32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The number of current f10InetCidrRouteTable entries that are not
|
|
Invalid and whose f10InetCidrRouteDestType is ipv4(1)"
|
|
::= { f10IpForwardMibObjects 3 }
|
|
|
|
f10InetCidrIpv6RouteNumber OBJECT-TYPE
|
|
SYNTAX Gauge32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The number of current f10InetCidrRouteTable entries that are not
|
|
Invalid and whose f10InetCidrRouteDestType is ipv6(2)"
|
|
::= { f10IpForwardMibObjects 4 }
|
|
|
|
|
|
-- ****************************************************************************
|
|
-- f10 Inet Cidr Route Table
|
|
|
|
-- The f10 Inet Cidr Route Table deprecates and replaces the f10IpForwardTable.
|
|
-- It adds IP Protocol Independence.
|
|
|
|
-- ****************************************************************************
|
|
|
|
|
|
f10InetCidrRouteTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF F10InetCidrRouteTableEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This entity's IP Routing table."
|
|
::= { f10IpForwardMibObjects 5 }
|
|
|
|
f10InetCidrRouteTableEntry OBJECT-TYPE
|
|
SYNTAX F10InetCidrRouteTableEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A particular route to a particular destination
|
|
|
|
Implementers need to be aware that if the total number
|
|
of elements (octets or sub-identifiers) in
|
|
inetCidrRouteDest, inetCidrRoutePolicy, and
|
|
inetCidrRouteNextHop exceeds 111, then OIDs of column
|
|
instances in this table will have more than 128 sub-
|
|
identifiers and cannot be accessed using SNMPv1,
|
|
SNMPv2c, or SNMPv3.
|
|
|
|
For S-Series Platform, Value of chSysCardNumber will always
|
|
be zero"
|
|
|
|
INDEX {
|
|
chSysCardNumber,
|
|
f10InetCidrRouteDestType,
|
|
f10InetCidrRouteDest,
|
|
f10InetCidrRoutePfxLen,
|
|
f10InetCidrRouteNextHopType,
|
|
f10InetCidrRouteNextHop,
|
|
f10InetCidrRouteFirstHopType,
|
|
f10InetCidrRouteFirstHop
|
|
}
|
|
::= { f10InetCidrRouteTable 1 }
|
|
|
|
F10InetCidrRouteTableEntry ::=
|
|
SEQUENCE {
|
|
f10InetCidrRouteDestType
|
|
InetAddressType,
|
|
f10InetCidrRouteDest
|
|
InetAddress,
|
|
f10InetCidrRoutePfxLen
|
|
InetAddressPrefixLength,
|
|
f10InetCidrRouteNextHopType
|
|
InetAddressType,
|
|
f10InetCidrRouteNextHop
|
|
InetAddress,
|
|
f10InetCidrRouteFirstHopType
|
|
InetAddressType,
|
|
f10InetCidrRouteFirstHop
|
|
InetAddress,
|
|
f10InetCidrRouteIfIndex
|
|
InterfaceIndexOrZero,
|
|
f10InetCidrRouteMacAddress
|
|
MacAddress,
|
|
f10InetCidrRouteEgressPort
|
|
OCTET STRING,
|
|
f10InetCidrRouteCamIndex
|
|
Unsigned32
|
|
}
|
|
|
|
f10InetCidrRouteDestType OBJECT-TYPE
|
|
SYNTAX InetAddressType
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The type of the inetCidrRouteDest address, as defined
|
|
in the InetAddress MIB.
|
|
|
|
Only those address types that may appear in an actual
|
|
routing table are allowed as values of this object."
|
|
|
|
::= { f10InetCidrRouteTableEntry 1 }
|
|
|
|
f10InetCidrRouteDest OBJECT-TYPE
|
|
SYNTAX InetAddress
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The destination IP address of this route.
|
|
The type of this address is determined by the value of
|
|
the inetCidrRouteDestType object."
|
|
|
|
::= { f10InetCidrRouteTableEntry 2 }
|
|
|
|
f10InetCidrRoutePfxLen OBJECT-TYPE
|
|
SYNTAX InetAddressPrefixLength
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Indicates the number of leading one bits that form the
|
|
mask to be logical-ANDed with the destination address
|
|
before being compared to the value in the inetCidrRouteDest field."
|
|
|
|
::= { f10InetCidrRouteTableEntry 3 }
|
|
|
|
f10InetCidrRouteNextHopType OBJECT-TYPE
|
|
SYNTAX InetAddressType
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The type of the inetCidrRouteNextHop address, as
|
|
defined in the InetAddress MIB.
|
|
|
|
Value should be set to unknown(0) for non-remote
|
|
routes.
|
|
|
|
Only those address types that may appear in an actual
|
|
routing table are allowed as values of this object."
|
|
::= { f10InetCidrRouteTableEntry 4 }
|
|
|
|
f10InetCidrRouteNextHop OBJECT-TYPE
|
|
SYNTAX InetAddress
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"On remote routes, the address of the next system en
|
|
route. For non-remote routes, a zero length string.
|
|
|
|
The type of this address is determined by the value of
|
|
the inetCidrRouteNextHopType object."
|
|
::= { f10InetCidrRouteTableEntry 5 }
|
|
|
|
f10InetCidrRouteFirstHopType OBJECT-TYPE
|
|
SYNTAX InetAddressType
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The type of the inetCidrRouteFirstHop address, as
|
|
defined in the InetAddress MIB.
|
|
|
|
Value should be set to unknown(0) for non-remote
|
|
routes.
|
|
|
|
Only those address types that may appear in an actual
|
|
routing table are allowed as values of this object."
|
|
::= { f10InetCidrRouteTableEntry 6 }
|
|
|
|
f10InetCidrRouteFirstHop OBJECT-TYPE
|
|
SYNTAX InetAddress
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The address of the gateway to the Nexthop.
|
|
If the nexthop itself is the gateway, a zero length string.
|
|
|
|
The type of this address is determined by the value of
|
|
the inetCidrRouteFirstHopType object."
|
|
::= { f10InetCidrRouteTableEntry 7 }
|
|
|
|
f10InetCidrRouteIfIndex OBJECT-TYPE
|
|
SYNTAX InterfaceIndexOrZero
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The ifIndex value that identifies the local interface
|
|
through which the next hop of this route should be
|
|
reached. A value of 0 is valid and represents the
|
|
scenario where no interface is specified."
|
|
::= { f10InetCidrRouteTableEntry 8 }
|
|
|
|
f10InetCidrRouteMacAddress OBJECT-TYPE
|
|
SYNTAX MacAddress
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The Mac address of the NextHop."
|
|
::= { f10InetCidrRouteTableEntry 9 }
|
|
|
|
f10InetCidrRouteEgressPort OBJECT-TYPE
|
|
SYNTAX OCTET STRING (SIZE (0..255))
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The name of the egress port to which the packets will be
|
|
forwarded."
|
|
::= { f10InetCidrRouteTableEntry 10 }
|
|
|
|
f10InetCidrRouteCamIndex OBJECT-TYPE
|
|
SYNTAX Unsigned32
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Cam Entry corresponding to a row."
|
|
::= { f10InetCidrRouteTableEntry 11 }
|
|
|
|
|
|
-- ****************************************************************************
|
|
--
|
|
-- Module Conformance Statement
|
|
--
|
|
-- DESCRIPTION: This module conformance statement includes the compliance
|
|
-- statements and the units of conformance section.
|
|
--
|
|
-- ****************************************************************************
|
|
|
|
f10IpForwardMibCompliances OBJECT IDENTIFIER ::= { f10IpForwardMibConformance 1 }
|
|
f10IpForwardMibGroups OBJECT IDENTIFIER ::= { f10IpForwardMibConformance 2 }
|
|
|
|
-- ****************************************************************************
|
|
-- Compliance Statement
|
|
-- ****************************************************************************
|
|
|
|
f10IpForwardMibCompliance MODULE-COMPLIANCE
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The basic implementation requirements for the
|
|
Dell Networking OS Ip Forward MIB."
|
|
MODULE -- this module
|
|
MANDATORY-GROUPS {
|
|
f10IpForwardObjectGroup
|
|
}
|
|
::= { f10IpForwardMibCompliances 1 }
|
|
|
|
-- ****************************************************************************
|
|
-- Units of Conformance
|
|
-- ****************************************************************************
|
|
|
|
f10IpForwardObjectGroup OBJECT-GROUP
|
|
OBJECTS {
|
|
f10IpForwardVersion,
|
|
f10InetCidrRouteIfIndex,
|
|
f10InetCidrRouteMacAddress,
|
|
f10InetCidrRouteEgressPort,
|
|
f10InetCidrRouteCamIndex
|
|
}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Objects for the IP aware Route Table."
|
|
::= { f10IpForwardMibGroups 1 }
|
|
|
|
END
|