firewall: add sanity checks to zone default rules (patch from #5459)
SVN-Revision: 17713
This commit is contained in:
parent
615a4d1e45
commit
e9ec3a6e68
@ -56,9 +56,9 @@ create_zone() {
|
|||||||
$IPTABLES -N zone_$1_DROP
|
$IPTABLES -N zone_$1_DROP
|
||||||
$IPTABLES -N zone_$1_REJECT
|
$IPTABLES -N zone_$1_REJECT
|
||||||
$IPTABLES -N zone_$1_forward
|
$IPTABLES -N zone_$1_forward
|
||||||
$IPTABLES -A zone_$1_forward -j zone_$1_$5
|
[ "$5" ] && $IPTABLES -A zone_$1_forward -j zone_$1_$5
|
||||||
$IPTABLES -A zone_$1 -j zone_$1_$3
|
[ "$3" ] && $IPTABLES -A zone_$1 -j zone_$1_$3
|
||||||
$IPTABLES -A output -j zone_$1_$4
|
[ "$4" ] && $IPTABLES -A output -j zone_$1_$4
|
||||||
$IPTABLES -N zone_$1_nat -t nat
|
$IPTABLES -N zone_$1_nat -t nat
|
||||||
$IPTABLES -N zone_$1_prerouting -t nat
|
$IPTABLES -N zone_$1_prerouting -t nat
|
||||||
$IPTABLES -t raw -N zone_$1_notrack
|
$IPTABLES -t raw -N zone_$1_notrack
|
||||||
|
Loading…
Reference in New Issue
Block a user