Browse Source

custom chains were never reached on DROP/REJECT policy, fixes #4004 #4029

SVN-Revision: 12767
John Crispin 17 years ago
parent
commit
b56d5cc36f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      package/firewall/files/uci_firewall.sh

+ 3 - 3
package/firewall/files/uci_firewall.sh

@@ -354,9 +354,9 @@ fw_custom_chains_zone() {
 	$IPTABLES -N input_${zone}
 	$IPTABLES -N forwarding_${zone}
 	$IPTABLES -N prerouting_${zone} -t nat
-	$IPTABLES -A zone_${zone} -j input_${zone}
-	$IPTABLES -A zone_${zone}_forward -j forwarding_${zone}
-	$IPTABLES -A zone_${zone}_prerouting -t nat -j prerouting_${zone}
+	$IPTABLES -I zone_${zone} 1 -j input_${zone}
+	$IPTABLES -I zone_${zone}_forward 1 -j forwarding_${zone}
+	$IPTABLES -I zone_${zone}_prerouting 1 -t nat -j prerouting_${zone}
 }
 
 fw_init() {