summaryrefslogtreecommitdiffstats
path: root/package/network/ipv6
diff options
context:
space:
mode:
authorcyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-01-29 10:13:44 +0000
committercyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-01-29 10:13:44 +0000
commit051a80df8c94b14169fc0a181cbfe63b9070ec99 (patch)
treea4c4e2f7e17c7b7ca8659627efffdab83792d6c2 /package/network/ipv6
parentefd04040631896f4b96a8ed1e0d4ec825e0832e7 (diff)
odhcp6c: remove IPv6 forwarding-sysctl workaround
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35370 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/ipv6')
-rw-r--r--package/network/ipv6/odhcp6c/Makefile2
-rwxr-xr-xpackage/network/ipv6/odhcp6c/files/dhcpv6.script4
2 files changed, 2 insertions, 4 deletions
diff --git a/package/network/ipv6/odhcp6c/Makefile b/package/network/ipv6/odhcp6c/Makefile
index 0d66272ef..6ac2c67f7 100644
--- a/package/network/ipv6/odhcp6c/Makefile
+++ b/package/network/ipv6/odhcp6c/Makefile
@@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=odhcp6c
-PKG_VERSION:=2013-01-28
+PKG_VERSION:=2013-01-29
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script
index f2161c233..be91d1642 100755
--- a/package/network/ipv6/odhcp6c/files/dhcpv6.script
+++ b/package/network/ipv6/odhcp6c/files/dhcpv6.script
@@ -10,7 +10,6 @@ ipv6_conf() {
prepare_interface() {
local device="$1"
ipv6_conf "$device" accept_ra 2
- ipv6_conf "$device" forwarding 2
# Send RS
if [ -x /usr/sbin/6relayd ]; then
@@ -24,8 +23,7 @@ prepare_interface() {
cleanup_interface() {
local device="$1"
- ipv6_conf "$device" accept_ra 1
- ipv6_conf "$device" forwarding 1
+ ipv6_conf "$device" accept_ra 0
}
setup_interface () {