From owner-freebsd-questions@FreeBSD.ORG Fri Jan 6 16:11:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5F8716A41F for ; Fri, 6 Jan 2006 16:11:58 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2599E43D53 for ; Fri, 6 Jan 2006 16:11:52 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from icommerce.fr (mich2.itxmarket.com [192.168.2.26]) by mail2.itxmarket.com (Postfix) with ESMTP id 2FE9837BC4; Fri, 6 Jan 2006 17:11:51 +0100 (CET) Received: by icommerce.fr (Postfix, from userid 1001) id 1A58A22821; Fri, 6 Jan 2006 17:11:50 +0100 (CET) Date: Fri, 6 Jan 2006 17:11:50 +0100 From: Michael Landin Hostbaek To: "Michael P. Soulier" Message-ID: <20060106161150.GA30143@mich2.itxmarket.com> Mail-Followup-To: Michael Landin Hostbaek , "Michael P. Soulier" , freebsd-questions@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 6.0-STABLE i386 X-PGP-Key: http://www.freebsdcluster.org/~mich/ User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: nfs server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jan 2006 16:11:59 -0000 Michael P. Soulier (msoulier) writes: > Hello, > > I'm configuring nfsd on my freebsd box, and trying to mount from my > linux box. I keep getting permission denied on the linux side, and I'm > not sure why. > > My local network is 192.168.1.0/24. > > I've added this to /etc/exports. > > /usr/local/www -network 192.168.1.0 -mask 255.255.255.0 Look alright. After adding the line to /etc/exports - mountd(8) needs to re-read the file. So do: # kill -s HUP `cat /var/run/mountd.pid` You can also use 'showmount -e' to see the configured exports list. /mich