summaryrefslogtreecommitdiffstats
path: root/package/iptables/files
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-11-05 14:19:16 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-11-05 14:19:16 +0000
commitbaaf523765f1dd573aaa2b76609360550bc7a05b (patch)
treec831a63a28b23dfbdc74459c60521a9f8fee9faa /package/iptables/files
parent02ab35ee7f8f25ac56ac0e8ccbaa51926a0d92ea (diff)
Add a boolean to allow NAT from LAN or not, default to nat LAN (#2535)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9503 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iptables/files')
-rwxr-xr-xpackage/iptables/files/firewall.init17
1 files changed, 12 insertions, 5 deletions
diff --git a/package/iptables/files/firewall.init b/package/iptables/files/firewall.init
index e1013fb8e..204310af2 100755
--- a/package/iptables/files/firewall.init
+++ b/package/iptables/files/firewall.init
@@ -11,9 +11,13 @@ start() {
config_get WAN wan ifname
config_get WANDEV wan device
config_get LAN lan ifname
- config_get LAN_MASK lan netmask
- config_get LAN_IP lan ipaddr
- LAN_NET=$(/bin/ipcalc.sh $LAN_IP $LAN_MASK | grep NETWORK | cut -d= -f2)
+ config_get_bool NAT_LAN lan nat 1
+ if [ $NAT_LAN -ne 0 ]
+ then
+ config_get LAN_MASK lan netmask
+ config_get LAN_IP lan ipaddr
+ LAN_NET=$(/bin/ipcalc.sh $LAN_IP $LAN_MASK | grep NETWORK | cut -d= -f2)
+ fi
## CLEAR TABLES
for T in filter nat; do
@@ -108,8 +112,11 @@ start() {
iptables -t nat -A PREROUTING -j prerouting_rule
[ -z "$WAN" ] || iptables -t nat -A PREROUTING -i "$WAN" -j prerouting_wan
iptables -t nat -A POSTROUTING -j postrouting_rule
- ### Only LAN
- [ -z "$WAN" ] || iptables -t nat -A POSTROUTING --src $LAN_NET/$LAN_MASK -o $WAN -j MASQUERADE
+ ### Only LAN, unless told not to
+ if [ $NAT_LAN -ne 0 ]
+ then
+ [ -z "$WAN" ] || iptables -t nat -A POSTROUTING --src $LAN_NET/$LAN_MASK -o $WAN -j MASQUERADE
+ fi
iptables -t nat -A NEW -m limit --limit 50 --limit-burst 100 -j RETURN && \
iptables -t nat -A NEW -j DROP