Tasks:
Server configuration:
sudo yum install nfs*
firewall-cmd --permanent --add-service=nfs ; firewall-cmd --reload
mkdir /public
Edit /etc/exports:
/public 192.168.0.*(ro,sync)
exportfs -r

Client configuration:
yum install nfs-utils
mkdir /mnt/secure
mount -t nfs <server_ip:/public> /mnt/secure
Edit /etc/fstab:
server_ip:/public /mnt/secure nfs default 0,0
mount -a
Related Articles
How We Set Up Our KVM Hypervisor: From Bare Metal to Production-Ready VM Host
Detailed walkthrough of building a dedicated KVM/libvirt hypervisor with XFS tuning, hugepages, 10GbE tuning, and automation.
Installing eve-ng on ubuntu 24.04 LTS
Step-by-step guide to installing EVE-NG on Ubuntu 24.04 LTS bare metal server for running network labs.
Netlab setup on ubuntu,debian
How to Install NetLab.Tools on Ubuntu/Debian for managing network simulation and testing scenarios.