diff options
author | Steven Barth <cyrus@openwrt.org> | 2013-01-29 10:13:44 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2013-01-29 10:13:44 +0000 |
commit | 1a0b207d61cfbc2f7a2cf283482b1cfc1f5373fe (patch) | |
tree | 60eea5b30b01af91994c531c5f8464002be6b34d /package/network/ipv6/odhcp6c/files | |
parent | fac1ed35ac8d3859e42e77324b56086aba454cdf (diff) | |
download | upstream-1a0b207d61cfbc2f7a2cf283482b1cfc1f5373fe.tar.gz upstream-1a0b207d61cfbc2f7a2cf283482b1cfc1f5373fe.tar.bz2 upstream-1a0b207d61cfbc2f7a2cf283482b1cfc1f5373fe.zip |
odhcp6c: remove IPv6 forwarding-sysctl workaround
SVN-Revision: 35370
Diffstat (limited to 'package/network/ipv6/odhcp6c/files')
-rwxr-xr-x | package/network/ipv6/odhcp6c/files/dhcpv6.script | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script index f2161c2339..be91d16422 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 () { |