summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2013-01-28 14:07:27 +0000
committerSteven Barth <cyrus@openwrt.org>2013-01-28 14:07:27 +0000
commitec41a6a08ce79da472372fde532136643153f752 (patch)
tree65aefd61940509eb06bba11893f64cc967e83f1b
parent75b06607db4876ef6a67adc831971a5e53183039 (diff)
downloadmtk-20170518-ec41a6a08ce79da472372fde532136643153f752.zip
mtk-20170518-ec41a6a08ce79da472372fde532136643153f752.tar.gz
mtk-20170518-ec41a6a08ce79da472372fde532136643153f752.tar.bz2
netifd: IPv6 sysctl, restart IPv6 in static mode to send RS
SVN-Revision: 35347
-rw-r--r--package/network/config/netifd/Makefile2
-rw-r--r--package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static4
2 files changed, 5 insertions, 1 deletions
diff --git a/package/network/config/netifd/Makefile b/package/network/config/netifd/Makefile
index b7baf05..a8f4ada 100644
--- a/package/network/config/netifd/Makefile
+++ b/package/network/config/netifd/Makefile
@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=netifd
-PKG_VERSION:=2013-01-28
+PKG_VERSION:=2013-01-28.1
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_SOURCE_PROTO:=git
diff --git a/package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static b/package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static
index 9f5b727..7f671b1 100644
--- a/package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static
+++ b/package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static
@@ -10,6 +10,10 @@ case "$ACTION" in
if [ "$proto" = "static" -a "$ip6slaac" = "1" ]; then
echo 2 > "/proc/sys/net/ipv6/conf/$DEVICE/accept_ra"
echo 2 > "/proc/sys/net/ipv6/conf/$DEVICE/forwarding"
+
+ # Though this should be save here, it is not recommended
+ echo 1 > "/proc/sys/net/ipv6/conf/$DEVICE/disable_ipv6"
+ echo 0 > "/proc/sys/net/ipv6/conf/$DEVICE/disable_ipv6"
fi
;;
esac