From owner-freebsd-questions@FreeBSD.ORG Wed Feb 23 21:35:30 2005 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 0412116A4CF for ; Wed, 23 Feb 2005 21:35:30 +0000 (GMT) Received: from arcadia.unit.liu.se (arcadia.unit.liu.se [130.236.230.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1549143D39 for ; Wed, 23 Feb 2005 21:35:29 +0000 (GMT) (envelope-from ulfma629@student.liu.se) Received: by arcadia.unit.liu.se (Postfix, from userid 102) id DFCB545E8A; Wed, 23 Feb 2005 22:35:27 +0100 (MET) Received: from liu.se (camelot.unit.liu.se [130.236.230.139]) by arcadia.unit.liu.se (Postfix) with ESMTP id 94BC845DC5 for ; Wed, 23 Feb 2005 22:35:25 +0100 (MET) Received: from [81.94.82.239] by mu.unit.liu.se (mshttpd); Wed, 23 Feb 2005 22:35:25 +0100 From: Ulf Magnusson To: freebsd-questions@freebsd.org Message-ID: <4941f8494e09.494e094941f8@liu.se> Date: Wed, 23 Feb 2005 22:35:25 +0100 X-Mailer: iPlanet Messenger Express 5.2 HotFix 1.17 (built Jun 23 2003) MIME-Version: 1.0 Content-Language: en X-Accept-Language: en Priority: normal Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.2-liu_20050119_1740 (2004-11-16) on themis.unit.liu.se X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00, LIU_FROM_MATCHES_LIUSTUDENT autolearn=ham version=3.0.2-liu_20050119_1740 Subject: FTP server problems 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, 23 Feb 2005 21:35:30 -0000 I'm trying to set up a FTP server using vsftpd. Everything works fine as long as I connect via localhost, but external hosts can't seem to connect to my server. Connecting using the internal IP (192.168.0.3) from another system connected to the same router works. My router (NETGEAR DG834) is set up to forward ports 20 and 21, plus 3000-3050 for PASV. My vsftpd.conf looks as follows: listen=YES anonymous_enable=NO dirmessage_enable=YES connect_from_port_20=YES nopriv_user=vsftpnpu local_enable=YES userlist_enable=YES userlist_deny=NO userlist_file=/root/vsftpd.user_list chroot_local_user=YES pasv_min_port=3000 pasv_max_port=3050 xferlog_enable=YES log_ftp_protocol=YES Any ideas?