aboutsummaryrefslogtreecommitdiffstats
path: root/package/ipv6-support/files/ipv6-boot
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2013-05-24 13:03:59 +0000
committerSteven Barth <steven@midlink.org>2013-05-24 13:03:59 +0000
commit55dc64c2edcae76638ba2726984d5d3007e08179 (patch)
tree7de45d6b464055577b9b94c3bd31dd8de9d5cab5 /package/ipv6-support/files/ipv6-boot
parent668817dcbe7dec1e3eac8c7742cab81901b1c3e7 (diff)
downloadupstream-55dc64c2edcae76638ba2726984d5d3007e08179.tar.gz
upstream-55dc64c2edcae76638ba2726984d5d3007e08179.tar.bz2
upstream-55dc64c2edcae76638ba2726984d5d3007e08179.zip
AA: add ipv6-support for transitioning between IPv6-stacks
git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@36712 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ipv6-support/files/ipv6-boot')
-rwxr-xr-xpackage/ipv6-support/files/ipv6-boot15
1 files changed, 15 insertions, 0 deletions
diff --git a/package/ipv6-support/files/ipv6-boot b/package/ipv6-support/files/ipv6-boot
new file mode 100755
index 0000000000..a0d3856c03
--- /dev/null
+++ b/package/ipv6-support/files/ipv6-boot
@@ -0,0 +1,15 @@
+#!/bin/sh /etc/rc.common
+START=11
+STOP=97
+
+start() {
+ # early sysctl to avoid networking races
+ if [ -d /proc/sys/net/ipv6/conf ]; then
+ for i in /proc/sys/net/ipv6/conf/*/accept_ra; do
+ echo 0 > $i
+ done
+
+ echo 1 > /proc/sys/net/ipv6/conf/default/forwarding
+ echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
+ fi
+}