From owner-freebsd-questions@FreeBSD.ORG Mon Apr 14 16:28:14 2003 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 EE94F37B404 for ; Mon, 14 Apr 2003 16:28:14 -0700 (PDT) Received: from above.proper.com (mail.proper.com [208.184.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC0AB43F75 for ; Mon, 14 Apr 2003 16:28:12 -0700 (PDT) (envelope-from phoffman@proper.com) Received: from [142.131.246.132] (adsl-63-202-92-152.dsl.snfc21.pacbell.net [63.202.92.152]) by above.proper.com (8.12.8p1/8.12.8) with ESMTP id h3ENSBbQ003980 for ; Mon, 14 Apr 2003 16:28:11 -0700 (PDT) (envelope-from phoffman@proper.com) Mime-Version: 1.0 X-Sender: phoffprop@mail.proper.com Message-Id: X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . Date: Mon, 14 Apr 2003 16:28:09 -0700 To: freebsd-questions@FreeBSD.ORG From: Paul Hoffman Content-Type: text/plain; charset="us-ascii" ; format="flowed" Subject: Multiple FTP servers with different characteristics on one server? 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: Mon, 14 Apr 2003 23:28:15 -0000 Greetings again. Under NetBSD, the inetd.conf file could have entries such as: 10.0.0.1:ftp stream tcp nowait root /usr/libexec/ftpd ftpd -d -ll -c /etc/a 10.0.0.2:ftp stream tcp nowait root /usr/libexec/ftpd ftpd -d -ll -c /etc/b Meaning that an FTP session request to 10.0.0.1 would use the configuration in /etc/a, while one to 10.0.0.2 would use the configuration in /etc/b. That doesn't work in FreeBSD 4.8: the first field is not recognized. How can I get this functionality, just for FTP? I don't see anything in the inetd or ftpd man pages that indicate how this might work. --Paul Hoffman