1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-26 21:57:41 +03:00

docs-xml: add 'kdc enable fast' option

This will be useful to test against a KDC without FAST support
and find/prevent regressions.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15002
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15005

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
(cherry picked from commit 12b623088cf48cf9e4a046441810ef20e1f079b8)
This commit is contained in:
Stefan Metzmacher 2022-03-09 12:39:07 +01:00 committed by Jule Anger
parent 2aa95f7820
commit 9aa78f15fd
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<samba:parameter name="kdc enable fast"
type="boolean"
context="G"
xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
<description>
<para>With the Samba 4.16 the embedded Heimdal KDC brings
support for RFC6113 FAST, which wasn't available in
older Samba versions.</para>
<para>This option is mostly for testing and currently only applies
if the embedded Heimdal KDC is used.</para>
</description>
<value type="default">yes</value>
</samba:parameter>

View File

@ -2695,6 +2695,8 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx)
lpcfg_do_global_parameter(lp_ctx, "krb5 port", "88");
lpcfg_do_global_parameter(lp_ctx, "kpasswd port", "464");
lpcfg_do_global_parameter(lp_ctx, "kdc enable fast", "True");
lpcfg_do_global_parameter(lp_ctx, "nt status support", "True");
lpcfg_do_global_parameter(lp_ctx, "max wins ttl", "518400"); /* 6 days */

View File

@ -942,6 +942,8 @@ static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals)
Globals.kpasswd_port = 464;
Globals.kdc_enable_fast = true;
Globals.aio_max_threads = 100;
lpcfg_string_set(Globals.ctx,