diff options
author | Steven Barth <steven@midlink.org> | 2008-04-01 22:30:10 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-01 22:30:10 +0000 |
commit | 2f99795df6efd159f5ecd8b52b4846a6bf50b94c (patch) | |
tree | 2622d630321695e552a461fb2722c47bc265a450 | |
parent | e9ff9dd9942748592a1f8ce66fab7dfce46e9779 (diff) |
* Reverted bloated MASQUERADE command
-rw-r--r-- | contrib/init.d/luci_fw | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/init.d/luci_fw b/contrib/init.d/luci_fw index 4cb9c4799e..766a5313de 100644 --- a/contrib/init.d/luci_fw +++ b/contrib/init.d/luci_fw @@ -15,13 +15,11 @@ apply_portfw() { if ([ "$proto" == "tcpudp" ] || [ "$proto" == "tcp" ]); then iptables -t nat -A luci_prerouting -i "$iface" -p tcp --dport "$dport" -j DNAT --to "$to" - iptables -t nat -A luci_postrouting -p tcp -d "$ip" $ports -j MASQUERADE iptables -A luci_forward -i "$iface" -p tcp -d "$ip" $ports -j ACCEPT fi if ([ "$proto" == "tcpudp" ] || [ "$proto" == "udp" ]); then iptables -t nat -A luci_prerouting -i "$iface" -p udp --dport "$dport" -j DNAT --to "$to" - iptables -t nat -A luci_postrouting -p udp -d "$ip" $ports -j MASQUERADE iptables -A luci_forward -i "$iface" -p udp -d "$ip" $ports -j ACCEPT fi } |