mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-09 21:01:53 +02:00
23 lines
284 B
Plaintext
23 lines
284 B
Plaintext
|
#!/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
|