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

  1. If the NFS host machine has not been added as a client to the IPA domain, then create the host entry.
  2. Create the NFS service entry in the IPA domain.
  3. 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
    Copy to Clipboard

    Note

    Only DES keys are supported on Red Hat Enterprise Linux 5.
    If this command is run on a different machine:
    1. Save the keytab to a temporary file. For example:
      ... -k /tmp/nfs.keytab
      Copy to Clipboard
    2. Copy the keytabs over to the NFS machine.
    3. Set the file permissions to 0700.
    4. On the NFS host machine, add the service key to the keytab file.
      #  (  echo rkt /tmp/nfs.keytab; echo wkt /etc/krb5.keytab) |ktutil
      Copy to Clipboard
  4. Install the NFS packages. For example:
    # yum install nfs-utils
    Copy to Clipboard
  5. 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
    
    allow_weak_crypto = true
    Copy to Clipboard
  6. Edit the NFS server configuration to use NFSv4 security by uncommenting the SECURE_NFS line.
    # vim /etc/sysconfig/nfs
    
    SECURE_NFS="yes"
    Copy to Clipboard
  7. If the NFS server and client are in different DNS domains, then configure the NFS domain.
    # vim /etc/idmapd.conf
    
    Domain = example.com
    Copy to Clipboard
  8. Edit the /etc/exports file and add the Kerberos information:
    /export  *(rw,sec=sys:krb5:krb5i:krb5p)
    
    Copy to Clipboard
  9. Restart the NFS server.
    # service nfs restart
    Copy to Clipboard
  10. 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

  1. If the NFS client is not enrolled as a client in the IPA domain, then set up the required host entries.
    1. Create the host entry.
    2. 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
      Copy to Clipboard

      Note

      Only DES keys are supported on Red Hat Enterprise Linux 5.
      If this command is run on a different machine:
      1. Save the keytab to a temporary file. For example:
        ... -k /tmp/nfs.keytab
        Copy to Clipboard
      2. Copy the keytabs over to the NFS machine.
      3. Set the file permissions to 0700.
      4. 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
        Copy to Clipboard
  2. 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
    
    allow_weak_crypto = true
    Copy to Clipboard
  3. Edit the NFS common configuration to enable client-side secure NFS, by uncommenting the SECURE_NFS line.
    # vim /etc/sysconfig/nfs
    
    SECURE_NFS="yes"
    Copy to Clipboard
  4. 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
    
    Domain = example.com
    Copy to Clipboard
  5. Start the GSS daemon.
    # service rpc.gssd start
    Copy to Clipboard
  6. Mount the directory.
    # echo "$NFSSERVER:/this /mnt/this nfs4 sec=krb5i,rw,proto=tcp,port=2049"  >>/etc/fstab
    # mount -av
    Copy to Clipboard
Voltar ao topo
Red Hat logoGithubredditYoutubeTwitter

Aprender

Experimente, compre e venda

Comunidades

Sobre a documentação da Red Hat

Ajudamos os usuários da Red Hat a inovar e atingir seus objetivos com nossos produtos e serviços com conteúdo em que podem confiar. Explore nossas atualizações recentes.

Tornando o open source mais inclusivo

A Red Hat está comprometida em substituir a linguagem problemática em nosso código, documentação e propriedades da web. Para mais detalhes veja o Blog da Red Hat.

Sobre a Red Hat

Fornecemos soluções robustas que facilitam o trabalho das empresas em plataformas e ambientes, desde o data center principal até a borda da rede.

Theme

© 2025 Red Hat