Este conteúdo não está disponível no idioma selecionado.
4.3. Setting up NFS
4.3.1. Setting up a Kerberized NFS Server
- If the NFS host machine has not been added as a client to the IPA domain, then create the host entry.
- Create the NFS service entry in the IPA domain.
- Generate an NFS service keytab for the NFS server. If this command is run on the NFS server, then save the keys directly to the host keytab. For example:
ipa-getkeytab -s server.example.com -p nfs/nfs-server.example.com -k /etc/krb5.keytab -e des-cbc-crc
# ipa-getkeytab -s server.example.com -p nfs/nfs-server.example.com -k /etc/krb5.keytab -e des-cbc-crc
Copy to Clipboard Copied! Note
Only DES keys are supported on Red Hat Enterprise Linux 5.If this command is run on a different machine:- Save the keytab to a temporary file. For example:
... -k /tmp/nfs.keytab
... -k /tmp/nfs.keytab
Copy to Clipboard Copied! - Copy the keytabs over to the NFS machine.
- Set the file permissions to 0700.
- On the NFS host machine, add the service key to the keytab file.
( echo rkt /tmp/nfs.keytab; echo wkt /etc/krb5.keytab) |ktutil
# ( echo rkt /tmp/nfs.keytab; echo wkt /etc/krb5.keytab) |ktutil
Copy to Clipboard Copied!
- Install the NFS packages. For example:
yum install nfs-utils
# yum install nfs-utils
Copy to Clipboard Copied! - Edit the
krb5.conf
file to allow weak crypto. This is required for every NFS client if any client in the domain will use older encryption options like DES.vim /etc/krb5.conf
# vim /etc/krb5.conf allow_weak_crypto = true
Copy to Clipboard Copied! - Edit the NFS server configuration to use NFSv4 security by uncommenting the
SECURE_NFS
line.vim /etc/sysconfig/nfs
# vim /etc/sysconfig/nfs SECURE_NFS="yes"
Copy to Clipboard Copied! - If the NFS server and client are in different DNS domains, then configure the NFS domain.
vim /etc/idmapd.conf
# vim /etc/idmapd.conf Domain = example.com
Copy to Clipboard Copied! - Edit the
/etc/exports
file and add the Kerberos information:/export *(rw,sec=sys:krb5:krb5i:krb5p)
/export *(rw,sec=sys:krb5:krb5i:krb5p)
Copy to Clipboard Copied! - Restart the NFS server.
service nfs restart
# service nfs restart
Copy to Clipboard Copied! - Configure the NFS server as an NFS client, following the directions in Section 4.3.2, “Setting up a Kerberized NFS Client”.
4.3.2. Setting up a Kerberized NFS Client
- If the NFS client is not enrolled as a client in the IPA domain, then set up the required host entries.
- Create the host entry.
- Generate host keytab for the NFS client. If this command is run on the NFS clien, then save the keys directly to the host keytab. For example:
ipa-getkeytab -p host/nfs-client-server.example.com@EXAMPLE.COM -k /etc/krb5.keytab -e des-cbc-crc
# ipa-getkeytab -p host/nfs-client-server.example.com@EXAMPLE.COM -k /etc/krb5.keytab -e des-cbc-crc
Copy to Clipboard Copied! Note
Only DES keys are supported on Red Hat Enterprise Linux 5.If this command is run on a different machine:- Save the keytab to a temporary file. For example:
... -k /tmp/nfs.keytab
... -k /tmp/nfs.keytab
Copy to Clipboard Copied! - Copy the keytabs over to the NFS machine.
- Set the file permissions to 0700.
- On the NFS host machine, add the service key to the keytab file.
( echo rkt /root/nfs-client.keytab; echo wkt /etc/krb5.keytab) |ktutil
# ( echo rkt /root/nfs-client.keytab; echo wkt /etc/krb5.keytab) |ktutil
Copy to Clipboard Copied!
- Edit the
krb5.conf
file to allow weak crypto. This is required for every client if any client in the domain will use older encryption options like DES.vim /etc/krb5.conf
# vim /etc/krb5.conf allow_weak_crypto = true
Copy to Clipboard Copied! - Edit the NFS common configuration to enable client-side secure NFS, by uncommenting the
SECURE_NFS
line.vim /etc/sysconfig/nfs
# vim /etc/sysconfig/nfs SECURE_NFS="yes"
Copy to Clipboard Copied! - If the NFS server and client are in different DNS domains, then configure the NFS domain. The
idmapd.conf
must be the same on the NFS client as it is on the NFS server.vim /etc/idmapd.conf
# vim /etc/idmapd.conf Domain = example.com
Copy to Clipboard Copied! - Start the GSS daemon.
service rpc.gssd start
# service rpc.gssd start
Copy to Clipboard Copied! - Mount the directory.
echo "$NFSSERVER:/this /mnt/this nfs4 sec=krb5i,rw,proto=tcp,port=2049" >>/etc/fstab mount -av
# echo "$NFSSERVER:/this /mnt/this nfs4 sec=krb5i,rw,proto=tcp,port=2049" >>/etc/fstab # mount -av
Copy to Clipboard Copied!