From owner-freebsd-questions@FreeBSD.ORG Sat Apr 18 08:19:16 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E060928 for ; Sat, 18 Apr 2015 08:19:16 +0000 (UTC) Received: from mail-pa0-x22c.google.com (mail-pa0-x22c.google.com [IPv6:2607:f8b0:400e:c03::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 52A58BFA for ; Sat, 18 Apr 2015 08:19:16 +0000 (UTC) Received: by paboj16 with SMTP id oj16so150052351pab.0 for ; Sat, 18 Apr 2015 01:19:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=Y2R1LFAtTSd1E1RUDInE7jbo2LWtMVEytQ1dKjoZA8Q=; b=dKfz+v3pLrFkmw3r7stIaZKM3DRoZfssy35EMtCqnczMLiMhPPsfKEsMfB9PrEACjO pwjif5dY2r+v1Josfey1tb9SF6kx6ilHiEtAkd6btidG0gkAdJGd8sjCoCu5MwLYY0lm JWYE5goNdUN+pemXJA25W5phHxI9yWgxhHzhsPQQrtBsEwboWiAO3SRHc0gE3KRVlzsr ePFvjZidzhjgCZ4XUAep5fohpbJa9klk1/eUu6S9hG9SPamqTr60tgYeiVH9wTVZE8zs qfDBrji53U5vxPBLtklAteCxhfa4xWDrnGfD8RLoCmXZzztQ9cpjQoZ/VU+rsVGUXMMR meOw== MIME-Version: 1.0 X-Received: by 10.70.136.202 with SMTP id qc10mr11736800pdb.117.1429345155923; Sat, 18 Apr 2015 01:19:15 -0700 (PDT) Received: by 10.66.22.73 with HTTP; Sat, 18 Apr 2015 01:19:15 -0700 (PDT) Date: Sat, 18 Apr 2015 11:19:15 +0300 Message-ID: Subject: NFS boot time mount doesn't happen From: Ross To: "freebsd-questions@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Apr 2015 08:19:16 -0000 Hello, I have a number of NFSv3 exports on the server. One (/usr/home) with sec=krb5i and other are regular. I have this in fstab on the client: coffin.lan:/usr/home /usr/home nfs rw,soft,intr,sec=krb5i 0 0 coffin.lan:/data/freebsd /data/freebsd nfs ro,soft,intr 0 0 The problem is that /usr/home is not automounted at boot time. I tried adding "late" option but this doesn't help. At the same time /data/freebsd and other non-Kerberized exports are mounted OK. As a hack I added "mount /usr/home" to rc.local and it works. But why doesn't it mount on its own? Am I doing something wrong?