From: Hendrik G. Seliger (hank@Blimp)
Date: 02/28/93


From: hank@Blimp (Hendrik G. Seliger)
Subject: Re: How to NFS export to ANY machine...
Date: Sun, 28 Feb 1993 11:55:35 GMT

splee@pd.org (Seng-Poh Lee, Speedy) writes:
:
: What is the correct way to export a file system to ANY machine?
:

You might give a dig to the exports man-page. There you'll find an
example like:
       # sample /etc/exports file
       / master(rw) trusty(rw)
       /projects proj*.local.domain(rw)
       /usr *.local.domain(ro)
       /pub (ro,insecure,root_quash)

You see the examples with a wildcard "*" to get e.g. one domain, or
the entry for /pub which allows everybody to mount.

Hank.