1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #396 from pyakpyak/master

fix for #14633, use original nexthop ip value instead of obtained via…
This commit is contained in:
Jana Radhakrishnan 2015-07-15 09:08:11 -07:00
commit 90de4b4f3f

View file

@ -111,7 +111,7 @@ func programRoute(path string, dest *net.IPNet, nh net.IP) error {
return netlink.RouteAdd(&netlink.Route{ return netlink.RouteAdd(&netlink.Route{
Scope: netlink.SCOPE_UNIVERSE, Scope: netlink.SCOPE_UNIVERSE,
LinkIndex: gwRoutes[0].LinkIndex, LinkIndex: gwRoutes[0].LinkIndex,
Gw: gwRoutes[0].Gw, Gw: nh,
Dst: dest, Dst: dest,
}) })
}) })
@ -128,7 +128,7 @@ func removeRoute(path string, dest *net.IPNet, nh net.IP) error {
return netlink.RouteDel(&netlink.Route{ return netlink.RouteDel(&netlink.Route{
Scope: netlink.SCOPE_UNIVERSE, Scope: netlink.SCOPE_UNIVERSE,
LinkIndex: gwRoutes[0].LinkIndex, LinkIndex: gwRoutes[0].LinkIndex,
Gw: gwRoutes[0].Gw, Gw: nh,
Dst: dest, Dst: dest,
}) })
}) })