From 2f99795df6efd159f5ecd8b52b4846a6bf50b94c Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Tue, 1 Apr 2008 22:30:10 +0000 Subject: [PATCH] * Reverted bloated MASQUERADE command --- contrib/init.d/luci_fw | 2 -- 1 file changed, 2 deletions(-) diff --git a/contrib/init.d/luci_fw b/contrib/init.d/luci_fw index 4cb9c4799..766a5313d 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 } -- 2.25.1