- set the scope properly. Thanks to Jean Wolter, who wrote:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 11 Apr 2007 16:23:57 +0000 (16:23 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 11 Apr 2007 16:23:57 +0000 (16:23 -0000)
commit12c96a64a4b7ab75cb0e4a7dfde8960c4391b2a8
tree821458424798193ed98a8884d5448a895920bff8
parent0d058361e722757af84fefdf1b1b8eac7ba53fc0
- set the scope properly. Thanks to Jean Wolter, who wrote:
busybox ip and the original ip utility behave differently when setting
the following route (verified with ip route show using the original ip
utility):

   ip route add 10.0.0.138 dev eth0

Result for busybox ip:

       # ip route add 10.0.0.138 dev eth0
       # /usr/local/bin/ip route show
       10.0.0.138 dev eth0

Result for ip:

       # /usr/local/bin/ip route add 10.0.0.138 dev eth0
       #  /usr/local/bin/ip route show
       10.0.0.138 dev eth0  scope link

A following "ip route add default via 10.0.0.138" fails for busybox
ip, since the kernel can not find a route to 10.0.0.138 (it replies
with Network is unreachable).

The reasons seems to be that the original ip utility explicitly sets
the scope after parsing all parameters. This is missing in busybox,
the attached patch fixes this. I took this from the original iproute
sources and removed some variables, which are not needed for busybox.
networking/libiproute/iproute.c