From owner-freebsd-fs@FreeBSD.ORG Mon Feb 23 14:13:29 2015 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D03CB38 for ; Mon, 23 Feb 2015 14:13:29 +0000 (UTC) Received: from lwfs1-cam.cam.lispworks.com (mail.lispworks.com [46.17.166.21]) by mx1.freebsd.org (Postfix) with ESMTP id 2B1E5975 for ; Mon, 23 Feb 2015 14:13:28 +0000 (UTC) Received: from higson.cam.lispworks.com (higson.cam.lispworks.com [192.168.1.7]) by lwfs1-cam.cam.lispworks.com (8.14.5/8.14.5) with ESMTP id t1NEDIsn036834; Mon, 23 Feb 2015 14:13:18 GMT (envelope-from martin@lispworks.com) Received: from higson.cam.lispworks.com (localhost.localdomain [127.0.0.1]) by higson.cam.lispworks.com (8.14.4) id t1NEDIHU000691; Mon, 23 Feb 2015 14:13:18 GMT Received: (from martin@localhost) by higson.cam.lispworks.com (8.14.4/8.14.4/Submit) id t1NEDITT000687; Mon, 23 Feb 2015 14:13:18 GMT Date: Mon, 23 Feb 2015 14:13:18 GMT Message-Id: <201502231413.t1NEDITT000687@higson.cam.lispworks.com> From: Martin Simmons To: freebsd-fs@freebsd.org In-reply-to: <2437038.yvsE2IGTDZ@falbala.rz1.convenimus.net> (message from Christian Baer on Sat, 21 Feb 2015 18:34:12 +0100) Subject: Re: The magic of ZFS and NFS (2nd try) References: <4257601.p3oiXZFr4n@falbala.rz1.convenimus.net> <54E7A2CF.60804@pinyon.org> <2437038.yvsE2IGTDZ@falbala.rz1.convenimus.net> X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Feb 2015 14:13:29 -0000 >>>>> On Sat, 21 Feb 2015 18:34:12 +0100, Christian Baer said: > > Russell L. Carter wrote: > > > Post your /etc/exports, and the nfs*_enable bits of /etc/rc.conf. And > > as Rainer noted you definitely need to check that uid/gid match on > > both server and client. > > Pretty boring stuff... > > root@obelix:~ # cat /etc/exports > V4: /usr/archive/Shared -alldirs -network 192.168.100/24 > > I reduced the shares to one for the time being. According to exports(5), that reduces it to zero: The third form has the string ``V4:'' followed by a single absolute path name, to specify the NFSv4 tree root. This line does not export any file system, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ but simply marks where the root of the server's directory tree is for NFSv4 clients. The exported file systems for NFSv4 are specified via the other lines in the exports file in the same way as for NFSv2 and NFSv3. __Martin