Add ipv6 up/down using route (#2372)
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 16 Sep 2007 13:35:51 +0000 (13:35 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 16 Sep 2007 13:35:51 +0000 (13:35 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8794 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/ppp/files/etc/ppp/ipv6-down [new file with mode: 0644]
package/ppp/files/etc/ppp/ipv6-up [new file with mode: 0644]

diff --git a/package/ppp/files/etc/ppp/ipv6-down b/package/ppp/files/etc/ppp/ipv6-down
new file mode 100644 (file)
index 0000000..76678de
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/sh
+route -A inet6 del $4 dev $1
diff --git a/package/ppp/files/etc/ppp/ipv6-up b/package/ppp/files/etc/ppp/ipv6-up
new file mode 100644 (file)
index 0000000..e349471
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/sh
+route -A inet6 add default $4 dev $1
This page took 0.029651 seconds and 4 git commands to generate.