IPFRR-MIB: View SNMP OID List / Download MIB
VENDOR: INTERNET-STANDARD
Home | MIB: IPFRR-MIB | |||
---|---|---|---|---|
Download as: |
Download standard MIB format if you are planning to load a MIB file into some system (OS, Zabbix, PRTG ...) or view it with a MIB browser. CSV is more suitable for analyzing and viewing OID' and other MIB objects in excel. JSON and YAML formats are usually used in programing even though some systems can use MIB in YAML format (like Logstash).
|
|||
Object Name | OID | Type | Access | Info |
ipFrrMIB | 1.3.6.1.2.1.4.999 |
IP MIB module for management of IP Fast-Reroute. Copyright (C) The Internet Society (date). This version of this MIB module is part of draft-ietf-rtgwg-ipfrr-ip-mib-00.txt |
||
ipFrrMIBObjects | 1.3.6.1.2.1.4.999.1 | |||
ipFrrProtectStats | 1.3.6.1.2.1.4.999.1.1 | |||
ipFrrTotalRoutes | 1.3.6.1.2.1.4.999.1.1.1 | gauge32 | read-only |
The number of valid routes known by this entity. |
ipFrrUnprotectedRoutes | 1.3.6.1.2.1.4.999.1.1.2 | gauge32 | read-only |
The number of valid routes known by this entity which do not have an alternate next-hop associated with any primary next-hop. |
ipFrrProtectedRoutes | 1.3.6.1.2.1.4.999.1.1.3 | gauge32 | read-only |
The number of routes known by this entity which have at least one alternate next-hop. |
ipFrrLinkProtectedRoutes | 1.3.6.1.2.1.4.999.1.1.4 | gauge32 | read-only |
The number of routes known by this entity for which all alternate next-hops provide link protection for their associated primary next-hops. |
ipFrrNodeProtectedRoutes | 1.3.6.1.2.1.4.999.1.1.5 | gauge32 | read-only |
The number of routes known by this entity for which all alternate next-hops provide node protection for their associated primary next-hops. |
ipFrrAltTable | 1.3.6.1.2.1.4.999.1.2 | no-access |
This entity's IP Fast Reroute Alternates table. |
|
1.3.6.1.2.1.4.999.1.2.1 | no-access |
An entry containing information on a particular route, one of its particular (primary) next-hops and one of the associated alternate next-hops. Implementers need to be aware that if the total number of elements (octets or sub-identifiers) in inetCidrRouteDest, inetCidrRoutePolicy, inetCidrRouteNextHop, and ipFrrAltNextHop exceeds 107 then OIDs of column instances in this table will have more than 128 sub-identifiers and cannot be accessed using SNMPv1, SNMPv2c, or SNMPv3. |
||
ipFrrAltNextHopType | 1.3.6.1.2.1.4.999.1.2.1.1 | inetaddresstype | no-access |
The type of the ipFrrNextHop 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. |
ipFrrAltNextHop | 1.3.6.1.2.1.4.999.1.2.1.2 | inetaddress | no-access |
The address of the next system along the alternate route. The type of this address is determined by the value of the ipFrrAltNextHopType. |
ipFrrAltIfIndex | 1.3.6.1.2.1.4.999.1.2.1.3 | interfaceindex | read-only |
The ifIndex value which identifies the local interface through which the next hop of this alternate route should be reached. |
ipFrrAltType | 1.3.6.1.2.1.4.999.1.2.1.4 | integer | read-only |
The type of alternate which is provided by the alternate next-hop. The supported types are as follows: equalCost : The alternate next-hop is another primary next-hop. loopFree : The shortest route to the destination IP address from the alternate next-hop does not traverse this system. See draft-ietf-rtgwg-ipfrr-spec-base-04. uTurn : The alternate next system, which is indicated by the alternate next-hop, has itself a primary path that traverses this system but also has an alternate next-hop for this route that does not traverse this system. See draft-atlas-ip-local-protect-uturn-02. other : The mechanism by which the alternate next-hop can be used is not specified. Enumeration: 'uTurn': 4, 'other': 1, 'loopFree': 3, 'equalCost': 2. |
ipFrrAltProtectionAvailable | 1.3.6.1.2.1.4.999.1.2.1.5 | bits | read-only |
This object specifies the scope of protection for which this alternate next-hop can provide failure protection. The alternate next-hop should provide one or more of node-protection and link-protection. If the protection provided by the alternate next-hop is unknown, then only unknownProtection should be specified. Specifying uknownProtection with any other type of protection is not supported. Bits: 'nodeProtect': 0, 'unknownProtection': 2, 'linkProtect': 1. |
ipFrrAltMetric1 | 1.3.6.1.2.1.4.999.1.2.1.6 | integer32 | read-only |
This is the primary routing metric for this alternate path to the destination IP address. If the alternate path metric is unknown, the value should be set to -1. |
ipFrrAltStatus | 1.3.6.1.2.1.4.999.1.2.1.7 | rowstatus | read-only |
The row status variable, used according to row installation and removal conventions. |
ipFrrNoAltTable | 1.3.6.1.2.1.4.999.1.3 | no-access |
This entity's IP Fast Reroute Unprotected Routes table. |
|
1.3.6.1.2.1.4.999.1.3.1 | no-access |
An entry containing the reason why a route does not have an alternate next-hop. The existence of an entry for a route indicates that there is no alternate next-hop. |
||
ipFrrNoAltCause | 1.3.6.1.2.1.4.999.1.3.1.1 | integer | read-only |
For valid routes without an alternate next-hop, this object enumerates the reason why no protection is available. The possibilities are as follows. ipFrrUnavailable : The supported IP Fast-Reroute mechanisms could not find a safe alternate next-hop. localAddress : The route represents a local address. This system is the destination so no alternate path is possible or necessary. ipFrrDisabled : Finding of alternate next-hops is operationally disabled. ipFrrUturnDisabled : Finding of u-turn alternate next-hops is operationally disabled. No loop-free alternate could be found. See draft-atlas-ip-local-protect-uturn-02 other : The reason is unknown or different from those specifically enumerated possible causes. Enumeration: 'other': 5, 'ipFrrDisabled': 3, 'ipFrrUnavailable': 1, 'ipFrrUturnDisabled': 4, 'localAddress': 2. |
ipFrrMIBConformance | 1.3.6.1.2.1.4.999.2 | |||
ipFrrMIBCompliances | 1.3.6.1.2.1.4.999.2.1 | |||
ipFrrMIBCompliance | 1.3.6.1.2.1.4.999.2.1.1 |
Minimum requirements to state conformity to this MIB. Supporting only IP v4 addresses This is deprecated in favor of ipFrrMIBInetCompliance There are a number of INDEX objects that cannot be represented in the form of OBJECT clauses in SMIv2, but for which there are compliance requirements, expressed in OBJECT clause form in this description: OBJECT inetCidrRouteDestType SYNTAX InetAddressType { ipv4(1), ipv4z(3) } MIN-ACCESS read-only DESCRIPTION A (deprecated) complying implementation at this level is required to support IPv4 addresses only. This compliance level is defined so an implementation only needs to support the addresses it actually supports on the device. OBJECT inetCidrRouteNextHopType SYNTAX InetAddressType { ipv4(1), ipv4z(3) } MIN-ACCESS read-only DESCRIPTION A (deprecated) complying implementation at this level is required to support IPv4 addresses only. This compliance level is defined so an implementation only needs to support the addresses it actually supports on the device. OBJECT ipFrrAltNextHopType SYNTAX InetAddressType { ipv4(1), ipv4z(3) } MIN-ACCESS read-only DESCRIPTION A (deprecated) complying implementation at this level is required to support IPv4 addresses only. This compliance level is defined so an implementation only needs to support the addresses it actually supports on the device. |
||
ipFrrMIBInetCompliance | 1.3.6.1.2.1.4.999.2.1.2 |
Full conformity to this MIB. |
||
ipFrrReadOnlyCompliance | 1.3.6.1.2.1.4.999.2.1.3 |
When this MIB is implemented without support for read-create (i.e. in read-only mode), then that implementation can claim read-only compliance. In that case, ipFrrAlt group can be monitored but cannot be configured with this MIB. |
||
ipFrrMIBGroups | 1.3.6.1.2.1.4.999.2.2 | |||
ipFrrBasicGroup | 1.3.6.1.2.1.4.999.2.2.1 |
The entire collection of objects defined in this MIB for management of IP Fast Reroute . |