From owner-freebsd-questions@FreeBSD.ORG Mon Apr 23 22:37:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01CAA16A403 for ; Mon, 23 Apr 2007 22:37:44 +0000 (UTC) (envelope-from dcasey@debtresolve.com) Received: from debtresolve.com (ip175-18.wp-ny-us.debtresolve.com [66.236.175.18]) by mx1.freebsd.org (Postfix) with ESMTP id BDCD613C483 for ; Mon, 23 Apr 2007 22:37:43 +0000 (UTC) (envelope-from dcasey@debtresolve.com) Received: from dummy.name; Mon, 23 Apr 2007 17:37:26 -0400 Message-ID: <462D26B4.4040807@debtresolve.com> Date: Mon, 23 Apr 2007 17:35:48 -0400 From: Dan Casey User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.94.3.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: NFS without rpcbind? 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: Mon, 23 Apr 2007 22:37:44 -0000 It was my understanding that NFS worked off of RPC. I accidently stumbled upon some redhat docs that said you use TCP based NFS which will not require rpc? I think this is an NFSv4 feature, but I'm not sure. I would like to achieve this using FreeBSD 6.2. My goal that I'm trying to accomplish is to get nfs to work in an environment where all traffic is denied by default. Using rpcbind doesn't work well with that type of setup. I tried the following nfs_reserved_port_only="YES" nfs_server_enable="YES" nfs_server_flags="-t -n 4 -h 10.a.b.c" This spawned rpcbind which I didn't want. Does anyone know how to do a tcp only nfs implimentation? -dc