I'm configuring a NFS export resource on a RHEL 7 cluster, and I need to let a shared directory be mountable from clients belonging to different subnetworks.
For example, the following command obviously works fine (with only one network defined):
pcs resource create TEST-EXPORTFS ocf:heartbeat:exportfs clientspec=192.168.1.0/24 options=rw,sync,no_root_squash directory=/test fsid=1
but how can I add a second network in the "clientspec" parameter (for example: 192.168.100.0/24) so clients from both subnets can mount the shared directory?
I haven't been able to find any help in the official documentation (neither from RedHat nor from Linux-HA).
Thanks in advance for any precious help.