mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-19 08:25:28 +00:00
[zebra] Include metric on connected routes.
2006-01-17 Gunnar Stigen <gunnar.stigen@axxessit.no> * connected.c: (connected_up_ipv{4,6}) Include interface metric on connected routes.
This commit is contained in:
parent
c6371718f3
commit
c713300ab4
@ -1,3 +1,8 @@
|
||||
2006-01-17 Gunnar Stigen <gunnar.stigen@axxessit.no>
|
||||
|
||||
* connected.c: (connected_up_ipv{4,6}) Include interface metric on
|
||||
connected routes.
|
||||
|
||||
2006-01-16 Paul Jakma <paul.jakma@sun.com>
|
||||
|
||||
* zserv.c: Read/write updated Zserv header.
|
||||
|
@ -140,7 +140,8 @@ connected_up_ipv4 (struct interface *ifp, struct connected *ifc)
|
||||
if (prefix_ipv4_any (&p))
|
||||
return;
|
||||
|
||||
rib_add_ipv4 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, ifp->ifindex, 0, 0, 0);
|
||||
rib_add_ipv4 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, ifp->ifindex, 0,
|
||||
ifp->metric, 0);
|
||||
|
||||
rib_update ();
|
||||
}
|
||||
@ -322,7 +323,8 @@ connected_up_ipv6 (struct interface *ifp, struct connected *ifc)
|
||||
return;
|
||||
#endif
|
||||
|
||||
rib_add_ipv6 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, ifp->ifindex, 0, 0, 0);
|
||||
rib_add_ipv6 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, ifp->ifindex, 0,
|
||||
ifp->metric, 0);
|
||||
|
||||
rib_update ();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user