mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 00:29:41 +02:00
e8be3016c9
- replace uci firewall with a modular dual stack implementation developed by Malte S. Stretz - bump version to 2 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21286 3c298f89-4303-0410-b956-a3cf2f4a3e73
50 lines
686 B
Bash
50 lines
686 B
Bash
#!/bin/sh
|
|
FW_LIBDIR=/lib/firewall
|
|
|
|
. /etc/functions.sh
|
|
. ${FW_LIBDIR}/fw.sh
|
|
|
|
case "$(type fw)" in
|
|
*function) ;;
|
|
*) exit 255;;
|
|
esac
|
|
|
|
usage() {
|
|
echo $0 "<command>" "<family>" "<table>" "<chain>" "<target>" "{" "<rules>" "}"
|
|
exit 0
|
|
}
|
|
|
|
cmd=$1
|
|
shift
|
|
case "$cmd" in
|
|
--help|help) usage ;;
|
|
start|stop|reload|restart)
|
|
. ${FW_LIBDIR}/core.sh
|
|
fw_$cmd
|
|
exit $?
|
|
;;
|
|
esac
|
|
|
|
fam=$1
|
|
shift
|
|
case "$fam" in
|
|
ip)
|
|
fam=i
|
|
if [ $# -gt 2 ]; then
|
|
for p in $(seq 2 $(($# - 1))); do
|
|
if eval "[ \$$p == '}' ]"; then
|
|
fam=I
|
|
break
|
|
fi
|
|
done
|
|
fi ;;
|
|
ip4) fam=4 ;;
|
|
ip6) fam=6 ;;
|
|
arp) fam=a ;;
|
|
eth) fam=e ;;
|
|
-*) exec $0 $cmd ${fam##*-} "$@" ;;
|
|
esac
|
|
|
|
fw "$cmd" "$fam" "$@"
|
|
exit $?
|