1
0
This repository has been archived on 2025-01-10. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Anderson Luiz Alves 0464e230c1 stock 103961
2017-07-30 16:48:04 -03:00

22 lines
444 B
Bash
Executable File

#!/bin/sh
. /etc/bewan/lib/lan
check_delegated_prefix()
{
[ -f $WAND/$WANID/ip6/dprefix ] && {
local oldprefix; oldprefix=`cat $WAND/$WANID/ip6/dprefix`
[ "$oldprefix" != "$DPREFIX" ] && {
if [ -n "$DPREFIX" ]; then
echo -n $DPREFIX > $WAND/$WANID/ip6/dprefix
restart_delegated_prefix
else
stop_delegated_prefix
rm -f $WAND/$WANID/ip6/dprefix
fi
}
}
}
check_delegated_prefix