Displays the export options for a file system
path. Use the -q option to quickly view the
export options for a single file system path
without manually searching through the
/etc/exports file. In addition to displaying the
options, it also displays the ruleid for each
"rule" in the export. This ruleid is used to display
the in-memory and on-disk access cache for
each "rule". Rule is a set of host access permissions
defined for a security flavor in an export
and a ruleid uniquely identifies a rule for the
duration when a filer is up. e.g. exportfs -q /vol/vol0
/vol/vol0 -sec=krb5,(ruleid=2),rw
This means that the filesystem /vol/vol0 is
exported via the rule "rw" and this rule has a
ruleid of 2. exportfs -q /vol/vol1
/vol/vol1 -sec=sys,(ruleid=2),rw,
sec=krb5,(ruleid=10),ro=172.16.27.0/24,rw=172.16.36.0/24
This means that the filesystem /vol/vol1 is
exported via the rule "rw" (ruleid 2) to everyone
who is coming with AUTH_SYS security and is also
exported via the rule
"ro=172.16.27.0/24,rw=172.16.36.0/24" (ruleid 10)
to everyone coming in with Kerberos.