Untuk menjadikan mesin OpenBSD kita sebagai server nfs langkahnya sebagai berikut edit /etc/rc.conf kemudian edit sehingga menjadi seperti berikut
nfs_server=YES # see sysctl.conf for nfs client configuration portmap=YES # Note: inetd(8) rpc services need portmap too
Contoh konfigurasi pada /etc/export
# # NFS exports Database # See exports(5) for more information. Be very careful, misconfiguration # of this file can result in your filesystems being readable by the world. /home/rifqi -alldirs -ro
Setelah itu restart komputernya untuk menjalankan aplikasi nfs, atau jalankan perintah berikut
/usr/sbin/portmap
echo -n >/var/db/mountdtab
/sbin/mountd
/sbin/nfsd -tun 4
Untuk merestart service nfs jalankan perintah berikut
kill -HUP `cat /var/run/mountd.pid`
Cek proses nfs
rpcinfo -p localhost
Untuk melihat siapa saja yang menggunakan nfs-server
showmount -a localhost
Mount nfs-server
mount -t nfs 10.55.1.x:/home/rifqi /media/nfs