From 76097edc0ebdb1f8cb68e0f362ec5af42140345e Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 30 Jul 2003 08:22:53 +0000 Subject: [PATCH] Eric Spakman writes: The recent changes in ifupdown where all calls to 'ip link set' and 'ip addr set' are swapped give some problems with v4tunnels. For plain ipv4 and ipv6 interfaces it works correct, other methods not tried. The patch below change the behaviour back for v4tunnels only. Without the patch the following errors are shown: RTNETLINK answers: Network is down RTNETLINK answers: No route to host and the tunnel is not fully brought up With this patch all works as expected. --- networking/ifupdown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/ifupdown.c b/networking/ifupdown.c index d685fc209..bae9f4ea4 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -435,8 +435,8 @@ static int v4tunnel_up(struct interface_defn_t *ifd, execfn *exec) int result; result = execute("ip tunnel add %iface% mode sit remote " "%endpoint% [[local %local%]] [[ttl %ttl%]]", ifd, exec); - result += execute("ip addr add %address%/%netmask% dev %iface% label %label%", ifd, exec); result += execute("ip link set %iface% up", ifd, exec); + result += execute("ip addr add %address%/%netmask% dev %iface% label %label%", ifd, exec); result += execute("[[ ip route add ::/0 via %gateway% ]]", ifd, exec); return( result); }