blob: c9d70580c59437cd986d3d3ae6994de4c3767d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<samba:parameter name="kerberos method"
context="G"
type="enum"
enumlist="enum_kerberos_method"
xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
<description>
<para>
Controls how kerberos tickets are verified.
</para>
<para>Valid options are:</para>
<itemizedlist>
<listitem><para>secrets only - use only the secrets.tdb for
ticket verification (default)</para></listitem>
<listitem><para>system keytab - use only the system keytab
for ticket verification</para></listitem>
<listitem><para>dedicated keytab - use a dedicated keytab
for ticket verification</para></listitem>
<listitem><para>secrets and keytab - use the secrets.tdb
first, then the system keytab</para></listitem>
</itemizedlist>
<para>
The major difference between "system keytab" and "dedicated
keytab" is that the latter method relies on kerberos to find the
correct keytab entry instead of filtering based on expected
principals.
</para>
<para>
When the kerberos method is in "dedicated keytab" mode,
<smbconfoption name="dedicated keytab file"/> must be set to
specify the location of the keytab file.
</para>
<para>
Suggested configuration is to use the default value 'secrets only' together with the
<smbconfoption name="sync machine password to keytab"/> option.
</para>
</description>
<related>dedicated keytab file</related>
<value type="default">default</value>
</samba:parameter>
|