3caa9be7ed
SVN-Revision: 904
24 lines
322 B
Bash
24 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
|