summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-03-23 09:30:05 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-03-23 09:30:05 +0000
commit97083568472a52433b00abc7e9f7e1a027ab1064 (patch)
tree7ac922cef90a1db5fa3bab27d015d9d6260bf12a
parentbf281ae3e5d686efc49c57952b9ffde52d3d8abf (diff)
downloadsamba-97083568472a52433b00abc7e9f7e1a027ab1064.tar.gz
samba-97083568472a52433b00abc7e9f7e1a027ab1064.tar.bz2
samba-97083568472a52433b00abc7e9f7e1a027ab1064.zip
Documentation updates.
(This used to be commit 9a9e4e92ae079eb906dcc7123df092f4917b5dad)
-rw-r--r--docs/docbook/manpages/smb.conf.5.sgml62
1 files changed, 58 insertions, 4 deletions
diff --git a/docs/docbook/manpages/smb.conf.5.sgml b/docs/docbook/manpages/smb.conf.5.sgml
index 5779f72da5..a49ee7cd35 100644
--- a/docs/docbook/manpages/smb.conf.5.sgml
+++ b/docs/docbook/manpages/smb.conf.5.sgml
@@ -394,7 +394,12 @@
<term>%L</term>
<listitem><para>the NetBIOS name of the server. This allows you
to change your config based on what the client calls you. Your
- server can have a "dual personality".</para></listitem>
+ server can have a "dual personality".</para>
+
+ <para>Note that this paramater is not available when Samba listens
+ on port 445, as clients no longer send this information </para>
+ </listitem>
+
</varlistentry>
<varlistentry>
@@ -3244,11 +3249,11 @@
with Windows 2000. Note that due to Windows 2000 client redirector bugs
this requires Samba to be running on a 64-bit capable operating system such
as IRIX, Solaris or a Linux 2.4 kernel. Can improve performance by 10% with
- Windows 2000 clients. Defaults to off. Not as tested as some other Samba
+ Windows 2000 clients. Defaults to on. Not as tested as some other Samba
code paths.
</para>
- <para>Default : <command>large readwrite = no</command></para>
+ <para>Default : <command>large readwrite = yes</command></para>
</listitem>
</varlistentry>
@@ -5065,8 +5070,57 @@
(eg --with-tdbsam) at configure time.
</para>
+ <para>This paramater is in two parts, the backend's name, and a 'location'
+ string that has meaning only to that particular backed. These are separated
+ by a : character.</para>
+
+ <para>Available backends can include:
+ <itemizedlist>
+ <listitem><para><command>smbpasswd</command> - The default smbpasswd
+ backend. Takes a path to the smbpasswd file as an optional argument.</para></listitem>
+
+ <listitem><para><command>smbpasswd_nua</command> - The smbpasswd
+ backend, but with support for 'not unix accounts'.
+ Takes a path to the smbpasswd file as an optional argument.</para>
+ <para>See also <link linkend="NONUNIXACCOUNTRANGE">
+ <parameter>non unix account range</parameter></link></para></listitem>
+
+ <listitem><para><command>tdbsam</command> - The TDB based password storage
+ backend. Takes a path to the TDB as an optional argument (defaults to passdb.tdb
+ in the <link linkend="PRIVATEDIR">
+ <parameter>private dir</parameter></link> directory.</para></listitem>
+
+ <listitem><para><command>tdbsam_nua</command> - The TDB based password storage
+ backend, with non unix account support. Takes a path to the TDB as an optional argument (defaults to passdb.tdb
+ in the <link linkend="PRIVATEDIR">
+ <parameter>private dir</parameter></link> directory.</para>
+ <para>See also <link linkend="NONUNIXACCOUNTRANGE">
+ <parameter>non unix account range</parameter></link></para></listitem>
+
+ <listitem><para><command>ldapsam</command> - The LDAP based passdb
+ backend. Takes an LDAP URL as an optional argument (defaults to
+ <command>ldap://localhost</command>)</para></listitem>
+
+ <listitem><para><command>ldapsam_nua</command> - The LDAP based passdb
+ backend, with non unix account support. Takes an LDAP URL as an optional argument (defaults to
+ <command>ldap://localhost</command>)</para>
+ <para>See also <link linkend="NONUNIXACCOUNTRANGE">
+ <parameter>non unix account range</parameter></link></para></listitem>
+
+ <listitem><para><command>plugin</command> - Allows Samba to load an
+ arbitary passdb backend from the .so specified as a compulsary argument.
+ </para>
+
+ <para>Any characters after the (optional) second : are passed to the plugin
+ for its own processing</para>
+ </listitem>
+
+ </itemizedlist>
+
<para>Default: <command>passdb backend = smbpasswd</command></para>
- <para>Example: <command>passdb backend = tdbsam</command></para>
+ <para>Example: <command>passdb backend = tdbsam:/etc/samba/private/passdb.tdb</command></para>
+ <para>Example: <command>passdb backend = ldapsam_nua:ldaps://ldap.example.com</command></para>
+ <para>Example: <command>passdb backend = plugin:/usr/local/samba/lib/my_passdb.so:my_plugin_args</command></para>
</listitem>
</varlistentry>