A Linux user needs to authenticate to a Windows Active Directory domain. Which of the following configuration files contains the domain configuration details?
Correct Answer: A
In modern Linux enterprise environments, integrating with Windows Active Directory (AD) is a common requirement for centralized identity management. According to CompTIA Linux+ V8, the System Security Services Daemon (SSSD) is the recommended way to handle authentication and authorization against remote providers like AD or LDAP.
The sssd.conf file (typically located in /etc/sssd/) is the primary configuration file for this service. It contains the essential " domain configuration details, " including:
* The AD domain name.
* The authentication provider (e.g., id_provider = ad).
* The URI of the domain controllers.
* Caching settings for offline login.
SSSD provides a unified interface that manages the communication between the Linux system and the AD domain, simplifying the authentication stack.
The other options are related but do not serve as the primary domain configuration file. krb5.conf (Option B) configures Kerberos, which is used for the underlying ticket-based authentication, but SSSD often manages these details automatically or relies on it as a sub-component. pam.conf (Option C) manages the Pluggable Authentication Modules stack but does not store domain-specific details.
smb.conf (Option D) is the configuration for Samba; while Samba is used for file sharing and can assist in joining a domain, sssd.conf is the verified location for modern identity integration details in Linux+ V8 environments.