diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-08-17 21:16:59 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:00 -0500 |
commit | 3582b295f628cdb3181cf60583b340f87477ae71 (patch) | |
tree | db527f803fec13ecf7b9b3f7c0e3612fd98e6a28 /docs/Samba-Guide/Chap04-SecureOfficeServer.xml | |
parent | aed1af463588316d456cebd7a00da6b51f95e775 (diff) | |
download | samba-3582b295f628cdb3181cf60583b340f87477ae71.tar.gz samba-3582b295f628cdb3181cf60583b340f87477ae71.tar.bz2 samba-3582b295f628cdb3181cf60583b340f87477ae71.zip |
Couple of typo fixes
(This used to be commit 1e49c292c8444ebbbede1dbc6625d097c8cfc2eb)
Diffstat (limited to 'docs/Samba-Guide/Chap04-SecureOfficeServer.xml')
-rw-r--r-- | docs/Samba-Guide/Chap04-SecureOfficeServer.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/Samba-Guide/Chap04-SecureOfficeServer.xml b/docs/Samba-Guide/Chap04-SecureOfficeServer.xml index 7f8366c08a..5ccea8c636 100644 --- a/docs/Samba-Guide/Chap04-SecureOfficeServer.xml +++ b/docs/Samba-Guide/Chap04-SecureOfficeServer.xml @@ -790,7 +790,9 @@ done # Allow DNS(udp) $IPTABLES -A INPUT -i $EXTIF -p udp -dport 53 -j ACCEPT echo "Allow all connections OUT and only existing and specified ones IN" -$IPTABLES -A FORWARD -i $EXTIF -o $INTIF -m state \ +$IPTABLES -A FORWARD -i $EXTIF -o $INTIFA -m state \ + --state ESTABLISHED,RELATED -j ACCEPT +$IPTABLES -A FORWARD -i $EXTIF -o $INTIFB -m state \ --state ESTABLISHED,RELATED -j ACCEPT $IPTABLES -A FORWARD -i $INTIFA -o $EXTIF -j ACCEPT $IPTABLES -A FORWARD -i $INTIFB -o $EXTIF -j ACCEPT @@ -1503,7 +1505,7 @@ abmas.biz IN SOA sleeth1.abmas.biz. root.abmas.biz. ( 38400 ; minimum (10 hours 40 minutes) ) NS dns.abmas.biz. - MX 10 sleeth1.abmas.biz. + MX 10 mail.abmas.biz. $ORIGIN abmas.biz. sleeth1 A 192.168.1.1 sleeth2 A 192.168.2.1 @@ -1531,7 +1533,7 @@ abmas.us IN SOA server.abmas.us. root.abmas.us. ( ) NS dns.abmas.us. NS dns2.abmas.us. - MX 10 server.abmas.us. + MX 10 mail.abmas.us. $ORIGIN abmas.us. server A 123.45.67.66 dns2 A 123.45.54.32 |