mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 14:21:33 +02:00
52ca90aff1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@904 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
322 B
Bash
25 lines
322 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
|
|
mkdir -p /var/log
|
|
mkdir -p /var/run
|
|
/usr/sbin/radvd
|
|
;;
|
|
|
|
stop)
|
|
killall radvd
|
|
echo 0 > /proc/sys/net/ipv6/conf/all/forwarding
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
;;
|
|
esac
|