diff options
author | Steven Barth <steven@midlink.org> | 2013-01-29 10:13:39 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2013-01-29 10:13:39 +0000 |
commit | cfda22b8c6561906fc5440ecbca68314c9c6d0da (patch) | |
tree | c2e826e79c284bb8efcee62f53d006509437fd5f /package/network/config | |
parent | 581546b6d23128a7c12278eed497ee0321db8578 (diff) | |
download | upstream-cfda22b8c6561906fc5440ecbca68314c9c6d0da.tar.gz upstream-cfda22b8c6561906fc5440ecbca68314c9c6d0da.tar.bz2 upstream-cfda22b8c6561906fc5440ecbca68314c9c6d0da.zip |
netifd: remove IPv6 forwarding-sysctl workaround
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35369 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/config')
-rw-r--r-- | package/network/config/netifd/Makefile | 2 | ||||
-rw-r--r-- | package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/network/config/netifd/Makefile b/package/network/config/netifd/Makefile index 99f26f6b2b..61ea582665 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.2 +PKG_VERSION:=2013-01-29 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 7f671b1c21..d7248948e6 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 @@ -9,7 +9,6 @@ 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" |