An ansible role which configures direct Active Directory integration.
In order to join to the domain, you must use an Active Directory user
which has sufficient join permissions. It is not recommended to use the
Administrator user as the security footprint of this user is too large.
See Delegated Permissions
for the explicit permissions a user must have.
Time must be in sync with Active Directory servers. The ad_integration role will use the timesync system role for this if the user specifies ad_integration_manage_timesync
to true and provides a value for ad_integration_timesync_source
to use as a timesource.
RHEL8 (and newer) and Fedora no longer support RC4 encryption out of the box, it is recommended to enable AES in Active Directory, if not possible then the AD-SUPPORT crypto policy must be enabled. The integration role will use the crypto_policies system role for this if the user sets the ad_integration_manage_crypto_policies
and ad_integration_allow_rc4_crypto
parameters to true.
The Linux system must be able to resolve default AD DNS SRV records.
The following firewall ports must be opened on the AD server side, reachable from the Linux client.
Source Port | Destination | Protocol | Service |
---|---|---|---|
1024:65535 | 53 | TCP and UDP | DNS |
1024:65535 | 389 | TCP and UDP | LDAP |
1024:65535 | 636 | TCP | LDAPS |
1024:65535 | 88 | TCP and UDP | Kerberos |
1024:65535 | 464 | TCP and UDP | Kerberos change/set password (kadmin) |
1024:65535 | 3268 | TCP | LDAP Global Catalog |
1024:65535 | 3269 | TCP | LDAP Global Catalog SSL |
1024:65535 | 123 | UDP | NTP/Chrony(Optional) |
1024:65535 | 323 | UDP | NTP/Chrony (Optional) |
Active Directory realm, or domain name to join
The password of the user used to authenticate with when joining the machine to the realm. Do not use cleartext - use Ansible Vault to encrypt the value.
The user name to be used to authenticate with when joining the machine to the realm.
Default: Administrator
an Active Directory domain controller’s hostname (do not use IP address) may be specified to join via that domain controller directly.
Default: Not set
Leave existing domain prior to performing join. This might be needed if the keytab is unable to authenticate with the machine account to the AD domain.
Default: false
perform automatic UID/GID mapping for users and groups, set to false
to rely on POSIX attributes already present in Active Directory.
Default: true
Only join realms for which we can use the given client software. Possible values include sssd or winbind. Not all values are supported for all realms.
Default: Automatic selection
The software to use when joining to the realm. Possible values include samba or adcli. Not all values are supported for all realms.
Default: Automatic selection
The distinguished name of an organizational unit to create the computer account. It can be relative to the Root DSE, or a complete LDAP DN.
Default: Default AD computer container
If true, the ad_integration role will use redhat.rhel_system_roles.timesync. Requires providing a value for ad_integration_timesync_source
to use as a time source.
Default: false
Hostname or IP address of time source to synchronize the system clock with. Providing this variable automatically sets ad_integration_manage_timesync
to true.
If true, the ad_integration role will use redhat.rhel_system_roles.crypto_policies as needed
Default: false
If true, the ad_integration role will set the crypto policy allowing RC4 encryption. Providing this variable automatically sets ad_integration_manage_crypto_policies to true
Default: false
If true, the ad_integration role will use redhat.rhel_system_roles.network to add the provided dns server (see below) with manual DNS configuration to an existing connection. If true then the following variables are required:
ad_integration_dns_server
- DNS server to addad_integration_dns_connection_name
- Existing network connection name to configuread_integration_dns_connection_type
- Existing network connection type to configureIP address of DNS server to add to existing networking configuration. Only applicable if ad_integration_manage_dns
is true
The name option identifies the connection profile to be configured by the network role. It is not the name of the networking interface for which the profile applies. Only applicable if ad_integration_manage_dns
is true
Network connection type such as ethernet, bridge, bond…etc, the network role contains a list of possible values. Only applicable if ad_integration_manage_dns
is true
Additional parameters (as a string) supplied directly to the realm join command.
Useful if some specific configuration like –user-principal=host/name@REALM or –use-ldaps is needed.
See man realm for details.
Example: ad_integration_join_parameters: “–user-principal host/client007@EXAMPLE.COM”
The following is an example playbook to setup direct Active Directory integration with AD domain domain.example.com
, the join will be performed with user Administrator using the vault stored password. Prior to the join, the crypto policy for AD SUPPORT with RC4 encryption allowed will be set.
- hosts: all
vars:
ad_integration_realm: "domain.example.com"
ad_integration_password: !vault | …vault encrypted password…
ad_integration_manage_crypto_policies: true
ad_integration_allow_rc4_crypto: true
roles:
- redhat.rhel_system_roles.ad_integration
MIT.
Justin Stephenson (jstephen@redhat.com)