hi, I've encrountred some problem with iproute2... I'm building a router with kernel 2.4.20 but my script fail when I try to do a load balancing over a specific traffic, how explained on LARTC for balance the access between more link we should simple: ip route add default scope global nexthop via IP1 dev ETH0 weight 1 \ nexthop via IP2 dev ETH1 weight 1 for specific traffic I'm marking some packets with mangle table and --set-mark, I've make iproute to lookup for marked packet and assign them over my specific table, but my command line for set routing: ip route add table http nexthop via IP1 dev ETH0 weight 1 \ nexthop via IP2 dev ETH1 weight 1 fail, but I did't undestound why... are there some suggestions :) ?