From e4eff3a4a22e2216961d6ee137660bb4e0719eb6 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 25 Aug 2010 16:05:15 +0200 Subject: [PATCH] Fix typo in iptables command. --- examples/masquerading-firewall.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/masquerading-firewall.mdwn b/examples/masquerading-firewall.mdwn index 75d6f75..6305950 100644 --- a/examples/masquerading-firewall.mdwn +++ b/examples/masquerading-firewall.mdwn @@ -157,7 +157,7 @@ The network setup is as follows: > > iptables -t nat -F POSTROUTING > # Next rule prevents masquerading from altering source port of outbound tinc packets -> iptables -t nat -A POSTROUTING -p udp -m udp -sport 655 -j MASQUERADE -o ppp0 --to-ports 655 +> iptables -t nat -A POSTROUTING -p udp -m udp --sport 655 -j MASQUERADE -o ppp0 --to-ports 655 > iptables -t nat -A POSTROUTING -j MASQUERADE -o ppp0 > > iptables -t nat -F PREROUTING -- 2.20.1