]> tinc-vpn.org Git - wiki/commitdiff
Fix typo in iptables command.
authorGuus Sliepen <guus@tinc-vpn.org>
Wed, 25 Aug 2010 14:05:15 +0000 (16:05 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Wed, 25 Aug 2010 14:05:15 +0000 (16:05 +0200)
examples/masquerading-firewall.mdwn

index 75d6f75d2c973ebbf3e1cee4ce4658a4f542e7f4..6305950432168934d73e80df6b414a92c4775ca3 100644 (file)
@@ -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