aboutsummaryrefslogtreecommitdiffstats
path: root/package/iptables/files
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2007-10-29 10:31:16 +0000
committerFlorian Fainelli <florian@openwrt.org>2007-10-29 10:31:16 +0000
commitf57bf774e84f15af296146f150da2d2c4b20aece (patch)
tree5b84328693b24d2b9eb6d0b1de1c88e363676ee1 /package/iptables/files
parent1aaf14613a8be0b0282f1767b37b35990fb7da52 (diff)
downloadupstream-f57bf774e84f15af296146f150da2d2c4b20aece.tar.gz
upstream-f57bf774e84f15af296146f150da2d2c4b20aece.tar.bz2
upstream-f57bf774e84f15af296146f150da2d2c4b20aece.zip
Only masquerade non routable addresses (#2535)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9460 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iptables/files')
-rwxr-xr-xpackage/iptables/files/firewall.init5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/iptables/files/firewall.init b/package/iptables/files/firewall.init
index 388c5b4f91..9d8a405ab0 100755
--- a/package/iptables/files/firewall.init
+++ b/package/iptables/files/firewall.init
@@ -105,7 +105,10 @@ 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
- [ -z "$WAN" ] || iptables -t nat -A POSTROUTING -o $WAN -j MASQUERADE
+ ### Only RFC1918 addresses
+ [ -z "$WAN" ] || iptables -t nat -A POSTROUTING --src 192.168.0.0/16 -o $WAN -j MASQUERADE
+ [ -z "$WAN" ] || iptables -t nat -A POSTROUTING --src 172.16.0.0/12 -o $WAN -j MASQUERADE
+ [ -z "$WAN" ] || iptables -t nat -A POSTROUTING --src 10.0.0.0/8 -o $WAN -j MASQUERADE
iptables -t nat -A NEW -m limit --limit 50 --limit-burst 100 -j RETURN && \
iptables -t nat -A NEW -j DROP