URL: https://github.com/SSSD/sssd/pull/5645 Author: DeepakDas7 Title: #5645: SSSD man: man_dns_resolver_parameter_modification Action: synchronized
To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/5645/head:pr5645 git checkout pr5645
From 25843fcce629078b553d96d5c7e7b848c254d44e Mon Sep 17 00:00:00 2001 From: Deepak Das <[email protected]> Date: Thu, 20 May 2021 20:30:33 +0530 Subject: [PATCH] SSSD man: man_dns_resolver_parameter_modification Adding parameter dns_resolver_server_timeout and dns_resolver_op_timeout in sssd.conf Resolves: https://github.com/SSSD/sssd/issues/5616 --- src/man/sssd.conf.5.xml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index f121045c0b..59566a1c08 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -3406,6 +3406,45 @@ pam_gssapi_indicators_map = sudo:pkinit, sudo-i:pkinit </listitem> </varlistentry> + <varlistentry> + <term>dns_resolver_server_timeout (integer)</term> + <listitem> + <para> + Defines the amount of time (in milliseconds) + SSSD would try to talk to DNS server before + trying next DNS server. + </para> + <para> + Please see the section <quote>FAILOVER</quote> + for more information about the service + resolution. + </para> + <para> + Default: 1000 + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term>dns_resolver_op_timeout (integer)</term> + <listitem> + <para> + Defines the amount of time (in seconds) to + wait to try to resolve single DNS query + (e.g. resolution of a hostname or an SRV record) + before try next hostname or DNS discovery. + </para> + <para> + Please see the section <quote>FAILOVER</quote> + for more information about the service + resolution. + </para> + <para> + Default: 3 + </para> + </listitem> + </varlistentry> + <varlistentry> <term>dns_resolver_timeout (integer)</term> <listitem>
_______________________________________________ sssd-devel mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/[email protected] Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
