linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] manpage: add info about IPv6 configuration to exports(5)
@ 2011-06-20 19:20 Jeff Layton
  2011-06-20 19:38 ` Jeff Layton
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff Layton @ 2011-06-20 19:20 UTC (permalink / raw)
  To: steved; +Cc: linux-nfs, chuck.lever

The parts of the exports(5) manpage that discuss IP addressing neglect
IPv6 configuration. Update to include info on how to export to IPv6
subnets and addresses, and add a line demonstrating that to the EXAMPLE
section.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
---
 utils/exportfs/exports.man |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/utils/exportfs/exports.man b/utils/exportfs/exports.man
index 241b3af..cf5f365 100644
--- a/utils/exportfs/exports.man
+++ b/utils/exportfs/exports.man
@@ -47,7 +47,7 @@ NFS clients may be specified in a number of ways:
 .IP "single host
 This is the most common format. You may specify a host either by an
 abbreviated name recognized be the resolver, the fully qualified domain
-name, or an IP address.
+name, an IPv4 address, or an IPv6 address enclosed in square brackets.
 .IP "IP networks
 You can also export directories to all hosts on an IP (sub-) network
 simultaneously. This is done by specifying an IP address and netmask pair
@@ -57,7 +57,7 @@ where the netmask can be specified in dotted-decimal format, or as a
 contiguous mask length.
 For example, either `/255.255.252.0' or `/22' appended
 to the network base IPv4 address results in identical subnetworks with 10 bits of
-host. Wildcard characters generally do not work on IP addresses, though they
+host. IPv6 addresses must use a contiguous mask length and be enclosed in square brackets. Wildcard characters generally do not work on IP addresses, though they
 may work by accident when reverse DNS lookups fail.
 .IP "wildcards
 Machine names may contain the wildcard characters \fI*\fR and \fI?\fR.
@@ -486,6 +486,7 @@ The format for extra export tables is the same as
 /home/joe       pc001(rw,all_squash,anonuid=150,anongid=100)
 /pub            *(ro,insecure,all_squash)
 /srv/www        \-sync,rw server @trusted @external(ro)
+/foo            [2001:321:9:e54::/64](rw) 192.168.1.0/24(rw)
 '''/pub/private    (noaccess)
 .fi
 .PP
@@ -501,7 +502,8 @@ option in this entry also allows clients with NFS implementations that
 don't use a reserved port for NFS.
 The sixth line exports a directory read-write to the machine 'server'
 as well as the `@trusted' netgroup, and read-only to netgroup `@external',
-all three mounts with the `sync' option enabled.
+all three mounts with the `sync' option enabled. The seventh line exports
+a directory to both an IPv6 and an IPv4 subnet.
 ''' The last line denies all NFS clients
 '''access to the private directory.
 '''.SH CAVEATS
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] manpage: add info about IPv6 configuration to exports(5)
  2011-06-20 19:20 [PATCH] manpage: add info about IPv6 configuration to exports(5) Jeff Layton
@ 2011-06-20 19:38 ` Jeff Layton
  2011-06-26 13:58   ` Jim Rees
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff Layton @ 2011-06-20 19:38 UTC (permalink / raw)
  To: Jeff Layton; +Cc: steved, linux-nfs, chuck.lever

On Mon, 20 Jun 2011 15:20:04 -0400
Jeff Layton <jlayton@redhat.com> wrote:

> The parts of the exports(5) manpage that discuss IP addressing neglect
> IPv6 configuration. Update to include info on how to export to IPv6
> subnets and addresses, and add a line demonstrating that to the EXAMPLE
> section.
> 
> Signed-off-by: Jeff Layton <jlayton@redhat.com>
> ---
>  utils/exportfs/exports.man |    8 +++++---
>  1 files changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/utils/exportfs/exports.man b/utils/exportfs/exports.man
> index 241b3af..cf5f365 100644
> --- a/utils/exportfs/exports.man
> +++ b/utils/exportfs/exports.man
> @@ -47,7 +47,7 @@ NFS clients may be specified in a number of ways:
>  .IP "single host
>  This is the most common format. You may specify a host either by an
>  abbreviated name recognized be the resolver, the fully qualified domain
> -name, or an IP address.
> +name, an IPv4 address, or an IPv6 address enclosed in square brackets.
>  .IP "IP networks
>  You can also export directories to all hosts on an IP (sub-) network
>  simultaneously. This is done by specifying an IP address and netmask pair
> @@ -57,7 +57,7 @@ where the netmask can be specified in dotted-decimal format, or as a
>  contiguous mask length.
>  For example, either `/255.255.252.0' or `/22' appended
>  to the network base IPv4 address results in identical subnetworks with 10 bits of
> -host. Wildcard characters generally do not work on IP addresses, though they
> +host. IPv6 addresses must use a contiguous mask length and be enclosed in square brackets. Wildcard characters generally do not work on IP addresses, though they
>  may work by accident when reverse DNS lookups fail.
>  .IP "wildcards
>  Machine names may contain the wildcard characters \fI*\fR and \fI?\fR.
> @@ -486,6 +486,7 @@ The format for extra export tables is the same as
>  /home/joe       pc001(rw,all_squash,anonuid=150,anongid=100)
>  /pub            *(ro,insecure,all_squash)
>  /srv/www        \-sync,rw server @trusted @external(ro)
> +/foo            [2001:321:9:e54::/64](rw) 192.168.1.0/24(rw)
>  '''/pub/private    (noaccess)
>  .fi
>  .PP
> @@ -501,7 +502,8 @@ option in this entry also allows clients with NFS implementations that
>  don't use a reserved port for NFS.
>  The sixth line exports a directory read-write to the machine 'server'
>  as well as the `@trusted' netgroup, and read-only to netgroup `@external',
> -all three mounts with the `sync' option enabled.
> +all three mounts with the `sync' option enabled. The seventh line exports
> +a directory to both an IPv6 and an IPv4 subnet.
>  ''' The last line denies all NFS clients
>  '''access to the private directory.
>  '''.SH CAVEATS

Self NAK on this, as brackets don't seem to be required after all. I'll
respin and resend once I get that straightened out.

-- 
Jeff Layton <jlayton@redhat.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] manpage: add info about IPv6 configuration to exports(5)
  2011-06-20 19:38 ` Jeff Layton
@ 2011-06-26 13:58   ` Jim Rees
  0 siblings, 0 replies; 3+ messages in thread
From: Jim Rees @ 2011-06-26 13:58 UTC (permalink / raw)
  To: Jeff Layton; +Cc: steved, linux-nfs, chuck.lever

Jeff Layton wrote:

  > +/foo            [2001:321:9:e54::/64](rw) 192.168.1.0/24(rw)
  >  '''/pub/private    (noaccess)
  >  .fi
  >  .PP
  > @@ -501,7 +502,8 @@ option in this entry also allows clients with NFS implementations that
  >  don't use a reserved port for NFS.
  >  The sixth line exports a directory read-write to the machine 'server'
  >  as well as the `@trusted' netgroup, and read-only to netgroup `@external',
  > -all three mounts with the `sync' option enabled.
  > +all three mounts with the `sync' option enabled. The seventh line exports
  > +a directory to both an IPv6 and an IPv4 subnet.
  >  ''' The last line denies all NFS clients
  >  '''access to the private directory.
  >  '''.SH CAVEATS
  
  Self NAK on this, as brackets don't seem to be required after all. I'll
  respin and resend once I get that straightened out.

Are the brackets allowed, and if so, must the mask be inside the brackets or
can it be outside?  And should this be documented?

This came up on another server implementation recently and I couldn't find
any spec that describes the brackets.  It would be nice to achieve some
kind of standardization.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-06-26 13:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-20 19:20 [PATCH] manpage: add info about IPv6 configuration to exports(5) Jeff Layton
2011-06-20 19:38 ` Jeff Layton
2011-06-26 13:58   ` Jim Rees

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).