From 784a05f93a2e9539a4c6ebc9c7d9cfff00503877 Mon Sep 17 00:00:00 2001 From: John Terpstra Date: Wed, 10 Nov 2004 07:16:23 +0000 Subject: Fix small typo. (This used to be commit fdf192cfe6010d39bf8146b1c16f093c66853308) --- docs/Samba-Guide/Chap04-SecureOfficeServer.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Samba-Guide/Chap04-SecureOfficeServer.xml b/docs/Samba-Guide/Chap04-SecureOfficeServer.xml index 8cd0cfb0ec..bc60ca662e 100644 --- a/docs/Samba-Guide/Chap04-SecureOfficeServer.xml +++ b/docs/Samba-Guide/Chap04-SecureOfficeServer.xml @@ -773,7 +773,7 @@ $IPTABLES -P OUTPUT ACCEPT $IPTABLES -F OUTPUT $IPTABLES -P FORWARD DROP $IPTABLES -F FORWARD -$IPTABLES -t nat -F + $IPTABLES -A INPUT -i lo -j ACCEPT $IPTABLES -A INPUT -i $INTIFA -j ACCEPT $IPTABLES -A INPUT -i $INTIFB -j ACCEPT @@ -781,7 +781,7 @@ $IPTABLES -A INPUT -i $EXTIF -m state --state ESTABLISHED,RELATED -j ACCEPT # Enable incoming traffic for: SSH, SMTP, DNS(tcp), HTTP, HTTPS for i in 22 25 53 80 443 do - $IPTABLES -A INPUT -i $EXTIF -p tcp -dport $i -j ACCEPT + $IPTABLES -A INPUT -i $EXTIF -p tcp --dport $i -j ACCEPT done # Allow DNS(udp) $IPTABLES -A INPUT -i $EXTIF -p udp -dport 53 -j ACCEPT -- cgit