Thanks! It appears that for my case you were right. I had to reinstall FreeIPA quite a lot of times, and I learned a few new things I like to share:
1) make sure
/etc/hosts is correct, use FQDN of your server as first hostname:
[root@virgo ~]# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost localhost4
::1 localhost6.localdomain6 localhost6
192.168.204.140 virgo.ssc.kalliance.nl virgo
2) after reinstall of ipa-server-install, clear
sshd cache
[root@lynx ~]# ll /var/lib/sss/db/
totaal 612
-rw-------. 1 root root 114688 9 feb 21:41 cache_default.ldb
-rw-------. 1 root root 327680 12 feb 19:22 cache_kalliance.nl.ldb
-rw-------. 1 root root 1208 12 feb 22:35 ccache_KALLIANCE.NL
-rw-------. 1 root root 126976 12 feb 17:51 config.ldb
-rw-------. 1 root root 53248 9 feb 21:32 sssd.ldb
[root@lynx db]# service sssd stop
Redirecting to /bin/systemctl stop sssd.service
[root@lynx db]# rm /var/lib/sss/db/cache_kalliance.nl.ldb
[root@lynx db]# service sssd start
3) before setting up authentication in GNOME, make sure
nss-pam-ldapd is installed:
[root@virgo ~]# yum install nss-pam-ldapd
4) Set up authenitication using
system-config-authentication on every client to configure client's link to your FreeIPA-server, but:
a) do not check boxes next to fingerprint or smartcard reader if you don't have one;
b) align password hashing algorithm (not required, as far as I can see, but it is more elegant I guess);
c) use https://name.of.your.server to download server CA certificate .
Closing this case, opening a new one to get NFS working...