#!/bin/sh

stop() {
/etc/firewall/iptables-stop
}

case $1 in
"start")
/etc/firewall/iptables-start
;;
"stop")
stop
;;
"restart")
stop
/etc/firewall/iptables-start
;;
esac