Overview of the lab environment
For demonstrations is this chapter, we will use two virtual machines running in an Oracle VirtualBox virtualization environment. VirtualBox can be downloaded from https://www.virtualbox.org/ free of charge and is available for Windows, Mac OS X, Linux, and Solaris hosts.
The NFS Server will be configured on the RHEL 7.1 host with the IP address of 192.168.10.10
and the hostname of nfshost
. The NFS client will be configured on the RHEL 7.1 host with the IP address of 192.168.10.11
and the hostname of nfsclient
.
Both machines were installed with a minimal configuration; we have installed the nfs-utils
package on both hosts, as shown in the following code:
$ sudo yum install -y nfs-utils
Additionally, on the nfshost
host, we have installed the net-tools package so that we can display open ports with the netstat
command. The command to install net-tools
is as follows:
$ sudo yum install -y net-tools
The firewall is running the default setup and is managed with...