You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|
|
|