diff options
author | John Terpstra <jht@samba.org> | 2004-11-10 07:16:23 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:07 -0500 |
commit | 784a05f93a2e9539a4c6ebc9c7d9cfff00503877 (patch) | |
tree | 48f7c641594dce9bbec09a962d27488b2d9702d4 /docs | |
parent | 6aeb659bb7479679319142429875f4b07ef5473a (diff) | |
download | samba-784a05f93a2e9539a4c6ebc9c7d9cfff00503877.tar.gz samba-784a05f93a2e9539a4c6ebc9c7d9cfff00503877.tar.bz2 samba-784a05f93a2e9539a4c6ebc9c7d9cfff00503877.zip |
Fix small typo.
(This used to be commit fdf192cfe6010d39bf8146b1c16f093c66853308)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Samba-Guide/Chap04-SecureOfficeServer.xml | 4 |
1 files 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 |