From owner-freebsd-current@FreeBSD.ORG Tue Aug 15 11:06:44 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2ADF16A4DF for ; Tue, 15 Aug 2006 11:06:44 +0000 (UTC) (envelope-from werner@btr0x22.rz.uni-bayreuth.de) Received: from btr0xn-tx.rz.uni-bayreuth.de (btr0xn.rz.uni-bayreuth.de [132.180.8.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B84B43D55 for ; Tue, 15 Aug 2006 11:06:43 +0000 (GMT) (envelope-from werner@btr0x22.rz.uni-bayreuth.de) Received: from localhost (localhost [127.0.0.1]) by btr0xn-tx.rz.uni-bayreuth.de (8.13.1/8.13.1) with ESMTP id k7FB6eTP012498; Tue, 15 Aug 2006 13:06:40 +0200 (MEST) Received: from btr0xn-rx.rz.uni-bayreuth.de ([127.0.0.1]) by localhost (mailhub-out.uni-bayreuth.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12384-08; Tue, 15 Aug 2006 13:06:38 +0200 (MEST) Received: from [132.180.14.135] (btruxe [132.180.14.135]) by btr0xn-rx.rz.uni-bayreuth.de (8.13.1/8.13.1) with ESMTP id k7FB6YSC012495; Tue, 15 Aug 2006 13:06:34 +0200 (MEST) Message-ID: <44E1AABA.9000108@btr0x22.rz.uni-bayreuth.de> Date: Tue, 15 Aug 2006 13:06:34 +0200 From: Werner Griessl Organization: UNI Bayreuth RZ User-Agent: Thunderbird 1.5.0.5 (X11/20060810) MIME-Version: 1.0 References: <44E18F7B.5080604@yourdot-mail.com> <44E1A1AB.7040906@btr0x22.rz.uni-bayreuth.de> In-Reply-To: <44E1A1AB.7040906@btr0x22.rz.uni-bayreuth.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at uni-bayreuth.de Cc: Carlos Silva , freebsd-current@freebsd.org Subject: Re: Samba problem X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: werner@btr0x22.rz.uni-bayreuth.de List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2006 11:06:44 -0000 Werner Griessl wrote: > Carlos Silva wrote: >> Hi all, >> >> I have installed freebsd 6.1-RELEASE on my machine and now samba dont >> work, because of a timeout. >> I've tried the two versions of the samba ports and none of them work >> properly. >> Do you have any idea? >> >> Ouput: >> >> osiris# mount -t smbfs //porta1/tmpdown /tmpdir >> Password: >> >> mount_smbfs: unable to open connection: syserr = Operation timed out >> >> Otherwise, this is not an password error. >> >> Best Regards, >> >> Carlos Silva, CSilva >> Web: http://www.csilva.org/ >> >> >> _______________________________________________ >> freebsd-current@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-current >> To unsubscribe, send any mail to >> "freebsd-current-unsubscribe@freebsd.org" > Try > strict locking = no > in the global section of your smb.conf > > Werner > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org" Sorry, that was the wrong direction. My solution was: Add these lines to your kernel-config # options SMBFS #SMB/CIFS filesystem # # SMB/CIFS requester # NETSMB enables support for SMB protocol, it requires LIBMCHAIN and # LIBICONF options. # NETSMBCRYPTO enables support for encrypted passwords. options NETSMB #SMB/CIFS requester options NETSMBCRYPTO #encrypted password support for SMB # options LIBMCHAIN options LIBICONV # and recompile your kernel. Werner