Eu tenho um compartilhamento NFS4 em execução com o krb5p.
Eu não tenho problemas para acessá-lo de clientes CentOS, tudo o que é necessário é:
yum install krb5-workstation
setup krb5 (edit krb5.conf, setup keytab)
systemctl enable nfs-secure.service && systemctl start nfs-secure.service
systemctl enable nfs-client.target && systemctl start nfs-client.target
mkdir /mnt/x
Add the following to fstab:
server.example.com:/srv/share/subdir /mnt/x nfs4 defaults,sec=krb5p,noexec,nosuid,_netdev,auto 0 0
Isso funciona muito bem no CentOS, eu configurei uma dúzia de hosts clientes até agora. No entanto, no Ubuntu, recebo:
mount.nfs4: an incorrect mount option was specified
Eu acho que o erro do Ubuntu é fazer com nfs-secure.service
, no entanto, parece não haver equivalente no Ubuntu que é instalado com o cliente NFS? (Eu estou usando o Ubuntu 16.04.5 LTS).
ATUALIZAÇÃO:
Eu tentei:
systemctl enable rpc-gssd.service && systemctl start rpc-gssd.service
Isso inicia tudo bem:
# systemctl status rpc-gssd.service
● rpc-gssd.service - RPC security service for NFS client and server
Loaded: loaded (/lib/systemd/system/rpc-gssd.service; static; vendor preset: enabled)
Active: active (running) since Thu 2018-10-04 16:49:40 BST; 6min ago
Process: 51689 ExecStart=/usr/sbin/rpc.gssd $GSSDARGS (code=exited, status=0/SUCCESS)
Main PID: 51691 (rpc.gssd)
Tasks: 1
Memory: 516.0K
CPU: 13ms
CGroup: /system.slice/rpc-gssd.service
└─51691 /usr/sbin/rpc.gssd
Mas o Ubuntu apenas trava ao tentar montar?
# mount -v -t nfs4 -o defaults,sec=krb5p,noexec,nosuid,_netdev,auto server.example.com:/srv/dir/example /mnt/example
mount.nfs4: timeout set for Thu Oct 4 16:54:40 2018
mount.nfs4: trying text-based options 'sec=krb5p,addr=10.10.10.10,clientaddr=10.10.10.9'
# NOTHING ELSE HAPPENS.....