linux_wiki:provide_network_shares_to_specific_clients

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
linux_wiki:provide_network_shares_to_specific_clients [2016/10/01 23:41]
billdozor [NFS Server: Install and Configure]
linux_wiki:provide_network_shares_to_specific_clients [2019/05/25 23:50] (current)
Line 4: Line 4:
  
 Configuring a NFS Server/Client. Configuring a NFS Server/Client.
 +
 +----
 +
 +====== Lab Setup ======
 +
 +The following virtual machines will be used:
 +  * server1.example.com (192.168.1.150) -> Perform all NFS client tests from here
 +  * server2.example.com (192.168.1.151) -> Install the NFS server here
  
 ---- ----
Line 24: Line 32:
 Allow through the firewall Allow through the firewall
 <code bash> <code bash>
 +# nfs -> allow mounting
 firewall-cmd --permanent --add-service=nfs firewall-cmd --permanent --add-service=nfs
 +firewall-cmd --reload
 +
 +# allow showmount -e <servername>
 +firewall-cmd --permanent --add-service=rpc-bind
 +firewall-cmd --permanent --add-service=mountd
 firewall-cmd --reload firewall-cmd --reload
 </code> </code>
Line 41: Line 55:
  
 \\ \\
-Create the NFS common file and require IDMAPD for file sharing (**optional? - TO VERIFY**)+Create the NFS common file and require IDMAPD for file sharing.
 <code bash> <code bash>
 vim /etc/default/nfs-common vim /etc/default/nfs-common
Line 47: Line 61:
 NEED_IDMAPD=YES NEED_IDMAPD=YES
 </code> </code>
 +  * **NOT REQUIRED on 7.4**: No longer required in RHEL 7.4 (not sure what version this changed in)
  
 \\ \\
Line 56: Line 71:
 </code> </code>
   * Edit domain as required for system   * Edit domain as required for system
 +  * **NOT REQUIRED on 7.4**: No longer required in RHEL 7.4 (not sure what version this changed in) due to the default using the domain of the system exporting.
  
 \\ \\
  • linux_wiki/provide_network_shares_to_specific_clients.1475379678.txt.gz
  • Last modified: 2019/05/25 23:50
  • (external edit)