1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 02:55:53 +03:00
openwrt-xburst/package/radvd/files/S51radvd

24 lines
303 B
Plaintext
Raw Normal View History

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