1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-19 10:03:21 +03:00
openwrt-xburst/package/radvd/files/S51radvd
nbd a20aa23720 add aiccu, bwm, ntpclient and radvd (from Sebastian Noel)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@562 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-04-04 22:12:17 +00:00

23 lines
284 B
Bash
Executable File

#!/bin/sh
case "$1" in
start)
echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
/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