1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Couple of typo fixes

(This used to be commit 1e49c292c8)
This commit is contained in:
Jelmer Vernooij 2004-08-17 21:16:59 +00:00 committed by Gerald W. Carter
parent aed1af4635
commit 3582b295f6
7 changed files with 39 additions and 9 deletions

View File

@ -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

View File

@ -1059,7 +1059,6 @@ hosts: files dns wins
<smbconfoption><name>path</name><value>/apps</value></smbconfoption>
<smbconfoption><name>admin users</name><value>bjordan</value></smbconfoption>
<smbconfoption><name>read only</name><value>No</value></smbconfoption>
<smbconfoption><name>include</name><value></value></smbconfoption>
</smbconfexample>
<!-- Four -->
@ -1376,7 +1375,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

View File

@ -3729,7 +3729,7 @@ HKEY_LOCAL_MACHINE\Default\Software\Microsoft\Windows\
No. You can use any type of printer and must use the interfacing protocol supported
by the printer. Many networks use LPR/LPD print servers to which are attached
PCL printers, InkJet printers, plotters, and so on. At home I use a USB attached
Inject printer. Use the appropriate device URI (Universal Resource Interface)
Inkjet printer. Use the appropriate device URI (Universal Resource Interface)
argument to the <constant>lpadmin -v</constant> option that is right for your
printer.
</para>

View File

@ -991,7 +991,7 @@ added: "cn=PIOps,ou=Groups,dc=abmas,dc=biz" (00000013)
<screen>
&rootprompt; rcldap start
&rootprompt; chkconfig ldap on
&rootprompt; slurpd start
&rootprompt; rcslurpd start
&rootprompt; chkconfig slurpd on
</screen>
<indexterm>
@ -1003,7 +1003,7 @@ added: "cn=PIOps,ou=Groups,dc=abmas,dc=biz" (00000013)
<step><para><indexterm>
<primary>smbldap-useradd.pl</primary>
</indexterm>
On the master slave server you may now add an account to validate that replication
On the master ldap server you may now add an account to validate that replication
is working. Assuming the configuration shown in Chapter 6, execute:
<screen>
&rootprompt; /var/lib/samba/sbin/smbldap-useradd.pl -a fruitloop

View File

@ -656,12 +656,23 @@ ou: idmap
</indexterm>
The system is ready to join the Domain. Execute the following:
<screen>
net rpc join -U root%not24et
&rootprompt; net rpc join -U root%not24et
Joined domain MEGANET2.
</screen>
This indicates that the Domain join succeeded.
</para></step>
<step><para>
<indexterm><primary>wbinfo</primary></indexterm>
Just joining the Domain is not quite enough, you must now provide a privilidged set
of credentials through which <command>winbindd</command> can interact with the ADS
Domain servers. Execute the following to implant the necessary credentials:
<screen>
&rootprompt; wbinfo --set-auth-user=Administrator%not24get
</screen>
- The configuration is now ready to obtain ADS Domain user and group information.
</para></step>
<step><para>
You may now start Samba in the usual manner and your Samba Domain Member server
is ready for use. Just add shares as required.

View File

@ -3,6 +3,9 @@
type="enum"
basic="1" advanced="1" wizard="1" developer="1"
xmlns:samba="http://samba.org/common">
<when_value value="security">
<requires option="encrypted passwords">/(yes|true)/</requires>
</when_value>
<description>
<para>This option affects how clients respond to
Samba and is one of the most important settings in the <filename moreinfo="none">

View File

@ -0,0 +1,15 @@
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:samba="http://samba.org/common"
version="1.1">
<xsl:output method="xml" encoding="UTF-8" doctype-public="-//OASIS//DTD DocBook XML V4.2//EN" indent="yes" doctype-system="http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"/>
<!-- This is needed to copy content unchanged -->
<xsl:template match="@*|node()|processing-instruction()">
<xsl:copy>
<xsl:apply-templates select="@*|node()|processing-instruction()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>