mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-08 09:30:30 +00:00
zebra: Correctly report metrics
Report the routes metric in IPFORWARDMETRIC1 and return
-1 for the other metrics as required by the IP-FORWARD-MIB.
inetCidrRouteMetric2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An alternate routing metric for this route. The
semantics of this metric are determined by the routing-
protocol specified in the route's inetCidrRouteProto
value. If this metric is not used, its value should be
set to -1."
DEFVAL { -1 }
::= { inetCidrRouteEntry 13 }
I've included metric2 but it's the same for all of them.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
(cherry picked from commit e41ae0acc1
)
This commit is contained in:
parent
9488f0cc4f
commit
448b9b2a7e
@ -491,23 +491,23 @@ static uint8_t *ipFwTable(struct variable *v, oid objid[], size_t *objid_len,
|
|||||||
*val_len = sizeof(int);
|
*val_len = sizeof(int);
|
||||||
return (uint8_t *)&result;
|
return (uint8_t *)&result;
|
||||||
case IPFORWARDMETRIC1:
|
case IPFORWARDMETRIC1:
|
||||||
result = 0;
|
result = re->metric;
|
||||||
*val_len = sizeof(int);
|
*val_len = sizeof(int);
|
||||||
return (uint8_t *)&result;
|
return (uint8_t *)&result;
|
||||||
case IPFORWARDMETRIC2:
|
case IPFORWARDMETRIC2:
|
||||||
result = 0;
|
result = -1;
|
||||||
*val_len = sizeof(int);
|
*val_len = sizeof(int);
|
||||||
return (uint8_t *)&result;
|
return (uint8_t *)&result;
|
||||||
case IPFORWARDMETRIC3:
|
case IPFORWARDMETRIC3:
|
||||||
result = 0;
|
result = -1;
|
||||||
*val_len = sizeof(int);
|
*val_len = sizeof(int);
|
||||||
return (uint8_t *)&result;
|
return (uint8_t *)&result;
|
||||||
case IPFORWARDMETRIC4:
|
case IPFORWARDMETRIC4:
|
||||||
result = 0;
|
result = -1;
|
||||||
*val_len = sizeof(int);
|
*val_len = sizeof(int);
|
||||||
return (uint8_t *)&result;
|
return (uint8_t *)&result;
|
||||||
case IPFORWARDMETRIC5:
|
case IPFORWARDMETRIC5:
|
||||||
result = 0;
|
result = -1;
|
||||||
*val_len = sizeof(int);
|
*val_len = sizeof(int);
|
||||||
return (uint8_t *)&result;
|
return (uint8_t *)&result;
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user