diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-17 21:29:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-17 21:29:53 +0000 |
commit | 73e982ce0cf3d1e0ef060238797149813a89ea12 (patch) | |
tree | 8302d5860fce48ca4529d3501c356c16263742e0 | |
parent | 38912058a092afe32c698146b64821788bee0514 (diff) | |
download | upstream-73e982ce0cf3d1e0ef060238797149813a89ea12.tar.gz upstream-73e982ce0cf3d1e0ef060238797149813a89ea12.tar.bz2 upstream-73e982ce0cf3d1e0ef060238797149813a89ea12.zip |
Fix the issue where the default gateway is not set in static mode most of the time. Seems like the bridge is not fast enough at switching to 'forwarding' mode so a short delay before setting the routes is necessary.
SVN-Revision: 6123
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 96890acacd..ffce9f6aa3 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -97,6 +97,12 @@ setup_interface() { $DEBUG brctl setfd "br-$config" 0 $DEBUG brctl addif "br-$config" "$iface" iface="br-$config" + + # need to bring up the bridge and wait a second for + # it to switch to the 'forwarding' state, otherwise + # it will lose its routes... + ifconfig "$iface" up + sleep 1 } ;; esac |