<div dir="ltr">No, I don't think there is huge traffic. I have two machines one has front end and other one has a host with XEN virtualization. Machines doesn't have hardware virtualization support. Machines are connected via a switch. <div>
<br></div><div>I have given how my process to have NFS storage. do you see any wrong there ?.</div><div><br></div><div>Thanks</div><div><br></div><div><h2 class="">Front-End</h2>
<ul>
        <li><p>Install NFS Server</p>
        <ul>
                <li><p>sudo apt-get install nfs-kernel-server 
                </p>
        </li></ul>
        </li><li><p>Let others access data store directory</p>
        </li><ul>
                <li><p>sudo nano /etc/exports</p>
                </li><li><p>put in that file bellow</p>
                <ul>
                        <li><p>/var/lib/one
                        10.*.*.161(rw,async,no_subtree_check,no_root_squash) 
                        </p>
                </li></ul>
                </li><li><p>reload services with bellow commands</p>
                </li><ul>
                        <li><p>$ sudo /etc/init.d/nfs-kernel-server reload     </p>
                </li></ul>
        </ul>
</ul><div><h2 class="">Hosts</h2>
<ul>
        <li><p>Install NFS Client</p>
        <ul>
                <li><p>sudo apt-get install nfs-common 
                </p>
        </li></ul>
        </li><li><p>configure to access data stores at start up</p>
        </li><ul>
                <li><p>in /etc/fstab add</p>
                <ul>
                        <li><p>on-front:/var/lib/one /var/lib/one nfs udp,_netdev 0 0 
                        </p>
                </li></ul>
                </li><li><p>sudo mount /var/lib/one    </p>
        </li></ul>
</ul><div><br></div></div></div><div>After this I can see front end var/lib/one directory from hosts.</div></div>