From owner-freebsd-questions@FreeBSD.ORG Wed Apr 28 02:41:19 2004 Return-Path: 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 E46A316A4D4 for ; Wed, 28 Apr 2004 02:41:18 -0700 (PDT) Received: from serv03.inetworx.ch (serv03.inetworx.ch [212.254.227.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2778243D45 for ; Wed, 28 Apr 2004 02:41:16 -0700 (PDT) (envelope-from dev@eth0.ch) Received: from localhost (localhost.localdomain [127.0.0.1]) by serv03.inetworx.ch (Postfix) with ESMTP id 4CC17252D70 for ; Wed, 28 Apr 2004 11:41:10 +0200 (CEST) Received: from serv03.inetworx.ch ([127.0.0.1]) by localhost (serv03.inetworx.ch [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 11111-01-9 for ; Wed, 28 Apr 2004 11:41:10 +0200 (CEST) Received: from serv04.inetworx.ch (serv04.inetworx.ch [212.254.227.197]) by serv03.inetworx.ch (Postfix) with SMTP id 0CC48252D6F for ; Wed, 28 Apr 2004 11:41:10 +0200 (CEST) Received: from 217.162.71.141 (SquirrelMail authenticated user dev.eth0) by serv04.inetworx.ch with HTTP; Wed, 28 Apr 2004 11:41:10 +0200 (CEST) Message-ID: <1315.217.162.71.141.1083145270.squirrel@serv04.inetworx.ch> In-Reply-To: <00c701c42cf0$03920190$66847cce@homepc> References: <00c701c42cf0$03920190$66847cce@homepc> Date: Wed, 28 Apr 2004 11:41:10 +0200 (CEST) From: dev@eth0.ch To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal X-Virus-Scanned: by amavisd-new at inetworx.ch Subject: Re: ProFTP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Apr 2004 09:41:19 -0000 > Greetings, > Please help: I've spent a good 4-5 hours trying to get ProFTP up and > running on my fresh FreeBSD 5.1 install - during which I have read > everything that I could get my hands/eyes on and tried every trick I could > find. Essentially, I am trying to set up ftp accounts for 3 users, each > with there own unique username/password login - which are working as > verified by ssh - to use as a java servlet dev box. > > The problem: I can not establish an FTP connection to port 21. When it > appears that I have an ftp connection, there is no directory listing nor a > list of the remote files. I have a small firewall (built-in to my router), > and have opened up ports 20 & 21. At one point I got a "PAM(username) > authentication error" - but everything looked good (to my eyes) in the > /etc/pam.d/ftp & ftpd files. Your pam configuration should include this: ftp auth required pam_unix.so try_first_pass ftp account required pam_unix.so try_first_pass ftp session required pam_permit.so (See also: http://www.castaglia.org/proftpd/doc/README.PAM.html) > I have the server running in standalone mode and is not enabled as inetd > service: > > [suplizio@dakota:~] $ ps -auxf | grep ftpd > nobody 662 0.0 0.7 2144 1672 ?? Ss 11:22PM 0:00.01 proftpd: > (accepting connections) (proftpd) > > [suplizio@dakota:~] $ head /etc/inetd.conf > # $FreeBSD: src/etc/inetd.conf,v 1.61 2002/11/12 17:31:11 obrien Exp $ > # > # Internet server configuration database > # > # Define *both* IPv4 and IPv6 entries for dual-stack support. > # To disable a service, comment it out by prefixing the line with '#'. > # To enable a service, remove the '#' at the beginning of the line. > # > #ftp stream tcp nowait root /usr/local/libexec/proftpd > proftpd > > [suplizio@dakota:~] $ tail /var/log/messages > Apr 27 23:22:05 dakota sudo: suplizio : TTY=ttyp0 ; PWD=/usr/local/libexec > ; USER=root ; COMMAND=./proftpd start > Apr 27 23:22:05 dakota proftpd[662]: dakota.suplizio.net - ProFTPD 1.2.8 > (stable) (built Tue Apr 27 12:30:22 PDT 2004) standalone mode STARTUP > Apr 27 23:27:48 dakota proftpd[665]: dakota.******.*** (************) - > FTP no transfer timeout, disconnected > Apr 27 23:33:51 dakota proftpd[680]: dakota.******.*** (************) - > FTP no transfer timeout, disconnected > I am running the default /usr/local/etc proftpd.conf file - which looks > something like this: > > ServerName "ProFTPD Default Installation" > ServerType standalone > DefaultServer on > > Port 21 > > Umask 022 > > MaxInstances 30 > > User nobody > Group nogroup > > > AllowOverwrite on > > > > Thanks in advance for reading thru this! > Jason > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > >