RHEL with AD using SSSD. My previous post assumed many setup constraints which might not be true. Here are some simple steps to start off with SSSD configuration. Preparation for SSSD. Prerequisite installations. yum install sssd sssd-client krb5-workstation samba openldap-clients open-ssl authconfig Update /etc/resolve.conf on slave nodes. And then we update the /etc/resolve.conf file with the direct IP of External Server 172.14.14.174 , as slave node now should be able to communicate to the External Server. ; generated by /sbin/dhclient-script nameserver 172.14.14.174 ; IP for the DNS server, this happens to be the xyzserver. nameserver 172.14.14.141 ; IP for the DNS server, this happens to be the abcserver. Testing if ping works. [root@slave-server ~]# ping xyzserver.xyzdomain.com PING xyzserver.xyzdomain.com (172.14.14.174) 56(84) bytes of data. 64 bytes from 172.14.14.174: icmp_seq=1 ttl=127 time=0.866 ms 64 bytes from 172.14.14.174: icmp_seq=2 ttl=127 t...