diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-25 22:44:37 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-25 22:44:37 +0000 |
commit | f9188878785eb24b7bad172e39373795d1255bf2 (patch) | |
tree | 144529bba804981841fa46eba8f95fd8e0a3dc0e /package/base-files | |
parent | 17fb256964676c522c25bf42b65428cf64fba790 (diff) | |
download | upstream-f9188878785eb24b7bad172e39373795d1255bf2.tar.gz upstream-f9188878785eb24b7bad172e39373795d1255bf2.tar.bz2 upstream-f9188878785eb24b7bad172e39373795d1255bf2.zip |
[package] base-files: fix sysctl handling, do not react on fake ifaces in route hotplug handler
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25713 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rw-r--r-- | package/base-files/files/etc/hotplug.d/iface/10-routes | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/base-files/files/etc/hotplug.d/iface/10-routes b/package/base-files/files/etc/hotplug.d/iface/10-routes index 76a4062846..a36885b871 100644 --- a/package/base-files/files/etc/hotplug.d/iface/10-routes +++ b/package/base-files/files/etc/hotplug.d/iface/10-routes @@ -68,6 +68,9 @@ add_route6() { ${mtu:+mss "$mtu"} } +# Skip fake devices (e.g. relayd) +grep -qs "^ *$DEVICE:" /proc/net/dev || exit 0 + case "$ACTION" in ifup) include /lib/network @@ -108,14 +111,14 @@ case "$ACTION" in logger -t ifup "Allowing Router Advertisements on $INTERFACE ($DEVICE)" accept_ra=2 } - do_sysctl "net.ipv6.conf.$INTERFACE.accept_ra" $accept_ra + do_sysctl "net.ipv6.conf.$DEVICE.accept_ra" $accept_ra config_get_bool send_rs "$INTERFACE" send_rs $send_rs [ $send_rs -eq 0 ] || { logger -t ifup "Enabling Router Solicitations on $INTERFACE ($DEVICE)" send_rs=2 } - do_sysctl "net.ipv6.conf.$INTERFACE.forwarding" $send_rs + do_sysctl "net.ipv6.conf.$DEVICE.forwarding" $send_rs # Setup routes |