projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e14eea
)
fixes firewall rule generation. forwarding rules were inserted in input chains, fixes...
author
John Crispin
<blogic@openwrt.org>
Sun, 28 Sep 2008 17:40:09 +0000
(17:40 +0000)
committer
John Crispin
<blogic@openwrt.org>
Sun, 28 Sep 2008 17:40:09 +0000
(17:40 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12768
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/firewall/files/uci_firewall.sh
patch
|
blob
|
history
diff --git
a/package/firewall/files/uci_firewall.sh
b/package/firewall/files/uci_firewall.sh
index
5798b7f
..
0f7e2ff
100755
(executable)
--- a/
package/firewall/files/uci_firewall.sh
+++ b/
package/firewall/files/uci_firewall.sh
@@
-216,10
+216,13
@@
fw_rule() {
config_get proto $1 proto
config_get target $1 target
config_get ruleset $1 ruleset
-
+
+ ZONE=input
+ TARGET=$target
[ -z "$target" ] && target=DROP
- [ -n "$src" ] && ZONE=zone_$src || ZONE=input
- [ -n "$dest" ] && TARGET=zone_${dest}_$target || TARGET=$target
+ [ -n "$src" -a -z "$dest" ] && ZONE=zone_$src
+ [ -n "$src" -a -n "$dest" ] && ZONE=zone_${src}_forward
+ [ -n "$dest" ] && TARGET=zone_${dest}_$target
add_rule() {
$IPTABLES -I $ZONE 1 \
${proto:+-p $proto} \