From
[email protected] Tue Jan 2 10:57:47 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXBu2-0000eTC; Tue, 2 Jan 96 10:57 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA27931; Tue, 2 Jan 1996 12:39:18 -0600
Received: from novell.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA27502 for <
[email protected]>; Tue, 2 Jan 1996 12:31:38 -0600
Received: from INET-PRV-Message_Server by fromGW
with Novell_GroupWise; Tue, 02 Jan 1996 11:30:17 -0700
Message-Id: <s0e91749.033@fromGW>
Date: Tue, 02 Jan 1996 11:30:35 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Vard Lott)
To:
[email protected]
Subject: 3 questions
Content-Type: text/plain
X-Mailer: Novell GroupWise 4.1
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
1) Where's the FAQ?
2) On Solaris 2.4, I set up a guest account
in addition to anonymous according to all
the docs and the chroot() is not working.
All the (~)/etc/passwd & group files for the
new guest user are set up the same as "ftp"
for anonymous.
3) How do I configure wu-ftpd to drop idle
ftpd processes after a set amount of time?
Thanks in advance,
Vard
From
[email protected] Tue Jan 2 11:39:28 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXCYP-000DmBC; Tue, 2 Jan 96 11:39 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA00506; Tue, 2 Jan 1996 13:20:57 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA00394 for <
[email protected]>; Tue, 2 Jan 1996 13:19:38 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id UAA16897; Tue, 2 Jan 1996 20:19:58 +0100
Message-Id: <
[email protected]>
Date: Tue, 2 Jan 1996 20:19:58 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: 3 questions
In-Reply-To: <s0e91749.033@fromGW> from "Vard Lott" at Jan 2, 96 11:30:35 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Vard Lott, who wrote :
> 1) Where's the FAQ?
http://www.hvu.nl/~koos/wu-ftpd-faq.html
> 2) On Solaris 2.4, I set up a guest account
> in addition to anonymous according to all
> the docs and the chroot() is not working.
> All the (~)/etc/passwd & group files for the
> new guest user are set up the same as "ftp"
> for anonymous.
The faq points to the guestgroup-howto, where all details of guestgroup setup
are described.
> 3) How do I configure wu-ftpd to drop idle
> ftpd processes after a set amount of time?
-t and -T command line parameters. It's in the manpage.
Grtx. KH
--
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Wed Jan 3 01:20:25 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXPMd-00077HC; Wed, 3 Jan 96 01:20 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id DAA05311; Wed, 3 Jan 1996 03:00:44 -0600
Received: from supelec.supelec.fr by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA05192 for <
[email protected]>; Wed, 3 Jan 1996 02:55:13 -0600
Received: by supelec.supelec.fr; id AA16520; Wed, 3 Jan 1996 09:55:06 +0100
Message-Id: <
[email protected]>
Date: Wed, 3 Jan 1996 09:37:54 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Daniel Clar)
To:
[email protected]
Subject: Is it working somewhere on some OS ?
X-Vms-To: SMTP%"
[email protected]"
X-Vms-Cc: DC
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Sometimes ago, I've asked a question about the fact that some messages were
missing in the syslog files when the connections were made through anonymous
ftp. In particular all commands relative messages are missing in Digital Unix
3.2c. During my vacation (!) , I've looked carefully at the source code and I've
understood the reason.
Let's take the following code sequence in ftpd.c in the pass routine :
if (anonymous || guest) {
/* We MUST do a chdir() after the chroot. Otherwise the old current
* directory will be accessible as "." outside the new root! */
if (anonymous) {
/* the following line is added by me */
syslog(LOG_INFO,"PW->PW_DIR %s", pw->pw_dir);
if (chroot(pw->pw_dir) < 0 || chdir("/") < 0) {
reply(550, "Can't set guest privileges.");
goto bad;
}
/* the following two lines are added by me */
reply(220, "after chroot and chdir.");
syslog(LOG_INFO,"AFTER CHDIR ANONYMOUS %d GUEST %d", anonymous, guest);
So what happens ?
The first syslog works correctly and the PW->PW_DIR message is sent in the
daemon.log file. But, if the "after chroot and chdir." is correctly sent to the
user, the "AFTER CHDIR ANONYMOUS" is absolutely not sent to the daemon.log file.
When the chdir,chroot is not executed, for an identified user, there is
absolutely no problem.
So for me the syslog doesn't work any more after the chroot,chdir. But in the
ftpd.c and ftpcmd.c files many syslog(LOG_INFO,.....) have been put even for
anonymous ftp accesses. Some of them are at the end of the pass routine :
syslog(LOG_INFO, "ANONYMOUS FTP LOGIN FROM %S [%S], %S", .....);
So I suppose that it's working on some other UNIX systems. Am I wrong ?
I think that the software authors were sure that it works before putting this
syslog lines.
Thank you for your answer. I need to be sure that it's a problem in my Unix
version.
Daniel
o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
| Daniel Clar e-mail :
[email protected] |
| Computer Operations Manager :
[email protected] |
| Service Informatique Supelec and |
| Plateau de Moulon DECUSF::CLAR_D or
[email protected] |
| 91192 Gif sur Yvette Cedex - France |
| Tel : (33 1) 69 85 14 87 Fax : (33 1) 69 85 12 34 |
o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
From
[email protected] Wed Jan 3 15:59:59 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXd62-000CtZC; Wed, 3 Jan 96 15:59 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA11724; Wed, 3 Jan 1996 17:53:39 -0600
Received: from seagull.rtd.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id RAA11585 for <
[email protected]>; Wed, 3 Jan 1996 17:50:10 -0600
Received: (from ric@localhost) by seagull.rtd.com (8.6.12/8.6.12) id QAA03562 for
[email protected]; Wed, 3 Jan 1996 16:50:09 -0700
Message-Id: <
[email protected]>
Date: Wed, 3 Jan 1996 16:50:09 -0700 (MST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Ric Anderson <
[email protected]>
To:
[email protected]
Subject: Re: Is it working somewhere on some OS ?
In-Reply-To: <
[email protected]> from "Daniel Clar" at Jan 3, 96 09:37:54 am
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL24]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Works on Sun Solaris 2.3. I've seen lost messages on other systems
though. It depends a lot on how syslog does things. If it opens
a file descriptor at openlog() time and keeps it open, then
you'll get messages after a chroot. If syslog() re-opens the
connection for each message then its likely to fail after a chroot
because some device entry is not in the ~ftp/dev/ hierarchy.
You could create a test program that does
openlog()
syslog()
chroot(to your home dir)
syslog()
to demonstrate the problem, then replace the path in the chroot
with "/" and see if you get all the messages. If you do, some
work with trace or truss (I think DEC has one of those tools
for tracing system calls) should turn up the file name.
Good Luck,
Ric (<
[email protected]> "Ric Anderson", using RTD's public internet access)
From
[email protected] Thu Jan 4 11:15:58 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXv8l-000FHHC; Thu, 4 Jan 96 11:15 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA16596; Thu, 4 Jan 1996 13:04:20 -0600
Received: from grewal.colorado.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA16207 for <
[email protected]>; Thu, 4 Jan 1996 12:58:06 -0600
Received: (danq@localhost) by grewal.colorado.edu (8.6.12/8.6.5) id LAA02082 for
[email protected]; Thu, 4 Jan 1996 11:57:58 -0700
Message-Id: <
[email protected]>
Date: Thu, 4 Jan 1996 11:57:58 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Daniel Quinlan <
[email protected]>
To:
[email protected]
Subject: problems with wu-ftpd and netscape/mosaic/ftptool
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have just noticed/been notified of problems reading things
from my anonymous ftp server from netscape, mosaic, and ftptool.
In netscape and mosaic, the results are unreliable. Sometimes
a directory is shown properly, sometimes it shows up as empty.
Ftptool seems to reliably be wrong, showing empty directories.
Plain ftp is reliably right.
I'm told ange-ftp is unreliable.
This seems to be related to the automatic generation of messages,
which I've consequently turned off altogether. However, even with
all messages turned off, ftptool 4.5 running from a Solaris machine
never shows the root directory, although it's possible to change
directory to pub, for example, and then see the correct listing.
This is not a permissions or setup problem, as plain ftp works. On the other
hand, it doesn't seem to be simply a problem with netscape or mosaic
or ftptool.
I'm flummoxed at this point. Does anyone have suggestions?
Thanks,
-- danq
\ Daniel Quinlan
[email protected]
\ University of Colorado 303/492-4878
\ Physics Department, Campus Box 583 FAX 303/492-7935
\ 3100 Marine St, Room 361 Boulder, CO 80309-0583
From
[email protected] Thu Jan 4 12:22:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXwAn-000FDeC; Thu, 4 Jan 96 12:22 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA20508; Thu, 4 Jan 1996 14:15:37 -0600
Received: from red.isearch.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA20200 for <
[email protected]>; Thu, 4 Jan 1996 14:11:56 -0600
Received: (from tim@localhost) by red.isearch.com (8.6.10/8.6.10) id MAA03215 for
[email protected]; Thu, 4 Jan 1996 12:14:13 -0800
Message-Id: <
[email protected]>
Date: Thu, 4 Jan 1996 12:14:13 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Tim Capps <
[email protected]>
To:
[email protected]
Subject: SunOS 4.1.4 and DIR
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have done about everything I can think of to get DIR to work with
anon FTP users. Quite likely it is something to do with dynamic link
libraries. I even tried copying the entire contents of /usr/lib into
~ftp/lib - no luck. I tried using "trace" and so forth, still no luck.
Reading the docs, it says that one way of solving this problem is to
compile ls, tar, etc. It also says that these are available in source
form from GNU and that is available on the wustl.edu ftp server. Well,
it's all been rearranged since that document was written, and I have
absolutely no clue where on earth those source files would be.
Does anyone have any tips on how to get it to work with dynamic link
libraries? Does anyone know where the source for ls may be found?
Thanks a bunch,
Tim
From
[email protected] Thu Jan 4 12:46:50 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXwYe-000FEVC; Thu, 4 Jan 96 12:46 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA21542; Thu, 4 Jan 1996 14:35:54 -0600
Received: from cassie by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA21399 for <
[email protected]>; Thu, 4 Jan 1996 14:34:06 -0600
Received: by cassie (8.6.12/ADD-8.6.12)
id OAA13506; Thu, 4 Jan 1996 14:34:04 -0600
Message-Id: <199601042034.OAA13506@cassie>
Date: Thu, 4 Jan 1996 14:34:04 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Dan Krause)
To:
[email protected]
Subject: Re: SunOS 4.1.4 and DIR
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Try ~ftp/usr/lib instead of ~ftp/lib
From
[email protected] Thu Jan 4 13:26:21 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXxAs-000CsBC; Thu, 4 Jan 96 13:26 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA23827; Thu, 4 Jan 1996 15:17:25 -0600
Received: from felix by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA23707 for <
[email protected]>; Thu, 4 Jan 1996 15:15:57 -0600
Received: by felix (5.x/SMI-SVR4)
id AA02500; Thu, 4 Jan 1996 15:13:00 -0600
Message-Id: <9601042113.AA02500@felix>
Date: Thu, 4 Jan 1996 15:12:59 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Kevin Hendrix)
To:
[email protected]
Subject: Solaris 2.4, Netscape, Mac, and the WU ftpd
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL24]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
We've got a problem with the Mac flavor of Netscape (all versions)
connecting to a Solaris 2.4 platform running the wu-ftpd software. Netscape
will never successfully retrieve the initial directory listing for an
anonymous ftp login. At first I thought the problem was in the Mac version
of Netscape, since all other browsers (both Mac and PC alike) had no
problems connecting via anonymous ftp to our server. After a few minutes
of looking around, however, I found MANY sites running the same version
of wu-ftpd (V2.4) on Solaris platforms which our Mac had no problems
connecting to.
Has anybody else had a similar problem? Are there any patches
for wu-ftpd 2.4 that I am not aware of? (I currently know of none...)
Any help would be appreciated.
kevin
[email protected]
From
[email protected] Thu Jan 4 16:08:00 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tXzhM-000CpaC; Thu, 4 Jan 96 16:07 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA02893; Thu, 4 Jan 1996 18:02:04 -0600
Received: from red.isearch.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id RAA02670 for <
[email protected]>; Thu, 4 Jan 1996 17:58:04 -0600
Received: (from tim@localhost) by red.isearch.com (8.6.10/8.6.10) id QAA07688 for
[email protected]; Thu, 4 Jan 1996 16:00:22 -0800
Message-Id: <
[email protected]>
Date: Thu, 4 Jan 1996 16:00:22 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Tim Capps <
[email protected]>
To:
[email protected]
Subject: SunOS 4.1.4 DIR problem fixed!
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Thanks to everyone who helped me finally nail this one down.
Here's what needs to be done in order to make anon FTP work with DIR
under SunOS 4.1.4. Also, you can define "guestgroup customer" in
your /usr/local/etc/ftpaccess file, and create a group "customer" in /etc/group.
This will allow you to have a class of users who can have their own
secure FTP areas, but can't prowl all over your system.
Here is my directory tree:
~ftp:
total 5
d--x--x--x 2 root 512 Dec 5 14:48 bin
d--x--x--x 2 root 512 Jan 4 14:13 dev
d--x--x--x 2 root 512 Jan 4 15:03 etc
drwxrwxrwx 2 root 512 Nov 28 19:46 pub
d--x--x--x 3 root 512 Jan 4 15:05 usr
~ftp/bin:
total 550
---x--x--x 1 root 24576 Nov 28 15:02 compress
---x--x--x 1 root 90112 Nov 28 18:37 gzip
---x--x--x 1 root 13352 Jan 3 18:55 ls
---x--x--x 1 root 425984 Nov 28 19:16 tar
~ftp/dev:
total 0
crw-rw-rw- 1 root 3, 12 Jan 4 14:13 zero
~ftp/etc:
total 7
-r--r--r-- 1 root 299 Nov 28 19:45 group
-rw-r--r-- 1 root 4096 Jan 4 14:26 ld.so.cache
-r--r--r-- 1 root 151 Nov 28 19:58 motd
-r--r--r-- 1 root 71 Nov 28 19:24 passwd
~ftp/pub:
total 0
~ftp/usr:
total 1
d--x--x--x 2 root 512 Dec 28 13:45 lib
~ftp/usr/lib:
total 608
-r-xr-xr-x 1 root 40960 Jan 4 14:11 ld.so
-r-xr-xr-x 1 root 548864 Jan 4 14:11 libc.so.1.9.2
-r-xr-xr-x 1 root 24576 Jan 4 14:11 libdl.so.1.0
To create ~ftp/dev/zero, use: mknod ~ftp/dev/zero c 3 12
You also need to be sure that /etc/ld.so.cache is copied into the ~ftp
tree, as well as the libraries listed above.
After several weeks of working on this on and off, it finally WORKS!!
I did some careful pruning to make sure that there isn't extra flotsam
in the ~ftp tree which isn't really needed.
Here is a little script I whipped up to create FTP trees for customer
use. Modify the /h/customer reference below for where you keep your
ftp trees. The ~ftp tree must be kept in the same place for this to work.
----- start script -----
#!/usr/bin/csh
#
# makeftp - create FTP tree for a customer
#
# Syntax: ftp userid
# userid is customer's user ID (must already have been created in /etc/passwd)
#
if ($#argv != 1) then
echo "Syntax: makeftp userID"
exit
endif
# validate the user ID
if ! { fgrep $1 /etc/passwd >/dev/null } then
echo "Invalid user ID - create the user login with vipw first."
exit
endif
# user ID is valid, clone various parts of the ftp user tree
cd /h/customer
mkdir $1
cp -pr ftp/bin $1
cp -pr ftp/usr $1
cp -pr ftp/etc $1
mkdir $1/dev
mknod $1/dev/zero c 3 12
mkdir $1/data
chown -R $1 $1
chmod o-rw $1
chgrp -R customer $1
chmod og-rw $1/data
---- end script ----
Cheers,
Tim
From
[email protected] Thu Jan 4 17:21:00 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tY0py-000FF6C; Thu, 4 Jan 96 17:20 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id TAA05629; Thu, 4 Jan 1996 19:15:05 -0600
Received: from kachina.sombio.siu.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id TAA05524 for <
[email protected]>; Thu, 4 Jan 1996 19:13:56 -0600
Received: from kachina.sombio.siu.edu (kachina.sombio.siu.edu [131.230.175.1]) by kachina.sombio.siu.edu (8.7.3/8.6.12) with SMTP id TAA21344 for <
[email protected]>; Thu, 4 Jan 1996 19:13:28 -0600 (CST)
Message-Id: <
[email protected]>
Date: Thu, 4 Jan 1996 19:13:28 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Scott Stephenson <
[email protected]>
To:
[email protected]
Subject: ftpwho doesn't work
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Has anyone figured out a way to get ftpwho working under Solaris 2.4?
Thanks,
Scott
From
[email protected] Fri Jan 5 03:07:22 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tY9zO-0000K8C; Fri, 5 Jan 96 03:07 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id FAA20533; Fri, 5 Jan 1996 05:00:51 -0600
Received: from gate.dmi.min.dk by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id EAA20402 for <
[email protected]>; Fri, 5 Jan 1996 04:55:33 -0600
Received: from dmi.min.dk ([130.226.64.29]) by gate.dmi.min.dk (8.6.4/8.6.4) with SMTP id KAA15187 for <
[email protected]>; Fri, 5 Jan 1996 10:55:28 GMT
Received: from kasketkarl by dmi.min.dk (5.x/SMI-SVR4)
id AA07042; Fri, 5 Jan 1996 10:55:24 GMT
Received: (ulla@localhost) by kasketkarl (SMI-8.6/8.6.4) id LAA12906; Fri, 5 Jan 1996 11:55:24 +0100
Message-Id: <199601051055.LAA12906@kasketkarl>
Date: Fri, 5 Jan 1996 11:55:24 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Ulla Fischer)
To:
[email protected]
Cc:
[email protected]
Subject: Re: ftpwho doesn't work
In-Reply-To: <
[email protected]> (message from Scott Stephenson on Thu, 4 Jan 1996 19:13:28 -0600 (CST))
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Scott> Has anyone figured out a way to get ftpwho working under
Scott> Solaris 2.4?
I just compiled and installed the wu-ftpd-2.4 with gcc-2.6.3, and then
it run?
My pathnames.h looks like this:
/* Copyright (c) 1989 The Regents of the University of California. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer. 2.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution. 3. All advertising
* materials mentioning features or use of this software must display the
* following acknowledgement: This product includes software developed by the
* University of California, Berkeley and its contributors. 4. Neither the
* name of the University nor the names of its contributors may be used to
* endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)pathnames.h 5.2 (Berkeley) 6/1/90 */
#define _PATH_FTPUSERS "/etc/ftpusers"
#define _PATH_FTPACCESS "/pack/ftpd/etc/ftpaccess"
#define _PATH_EXECPATH "/bin/ftp-exec"
#define _PATH_PIDNAMES "/pack/ftpd/daemon/ftpd/ftp.pids-%s"
#define _PATH_CVT "/pack/ftpd/etc/ftpconversions"
#define _PATH_XFERLOG "/pack/ftpd/log/xferlog"
#define _PATH_PRIVATE "/etc/ftpgroups"
#ifndef _PATH_UTMP
#define _PATH_UTMP "/etc/utmp"
#define _PATH_WTMP "/usr/adm/wtmp"
#define _PATH_LASTLOG "/usr/adm/lastlog"
#endif
#define _PATH_BSHELL "/bin/sh"
#define _PATH_DEVNULL "/dev/null"
#ifdef HOST_ACCESS
#define _PATH_FTPHOSTS "/pack/ftpd/etc/ftphosts"
#endif
and my Makefile looks like this:
BINDIR= /pack/wu-ftpd-2.4/bin
ETCDIR= /pack/wu-ftpd-2.4/etc
MANDIR= /pack/wu-ftpd-2.4/man
MANEXT= 8
all:
@ echo 'Use the "build" command (shell script) to make ftpd.'
@ echo 'You can say "build help" for details on how it works.'
install: bin/ftpd bin/ftpcount bin/ftpshut
-mv -f ${ETCDIR}/ftpd ${ETCDIR}/ftpd-old
@echo Installing binaries.
install -o bin -g bin -m 755 bin/ftpd ${ETCDIR}/ftpd
install -o bin -g bin -m 755 bin/ftpshut ${BINDIR}/ftpshut
install -o bin -g bin -m 755 bin/ftpcount ${BINDIR}/ftpcount
install -o bin -g bin -m 755 bin/ftpwho ${BINDIR}/ftpwho
@echo Installing manpages.
install -o bin -g bin -m 755 doc/ftpd.8 ${MANDIR}/man8/ftpd.8
install -o bin -g bin -m 755 doc/ftpcount.1 ${MANDIR}/man1/ftpcount.1
install -o bin -g bin -m 755 doc/ftpwho.1 ${MANDIR}/man1/ftpwho.1
install -o bin -g bin -m 755 doc/ftpshut.8 ${MANDIR}/man8/ftpshut.8
install -o bin -g bin -m 755 doc/ftpaccess.5 ${MANDIR}/man5/ftpaccess.5
install -o bin -g bin -m 755 doc/ftphosts.5 ${MANDIR}/man5/ftphosts.5
install -o bin -g bin -m 755 doc/ftpconversions.5 ${MANDIR}/man5/ftpconversions.5
install -o bin -g bin -m 755 doc/xferlog.5 ${MANDIR}/man5/xferlog.5
Yours,
Ulla Fischer
Danmarks Meteorologiske Institut Email:
[email protected]
Edb-afdelingen Phone: + 45 39 15 75 00
Lyngbyvej 100 Phone: + 45 39 15 75 54
2100 Koebenhavn 0 Fax: + 45 39 15 75 98
Denmark
From
[email protected] Fri Jan 5 08:07:54 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tYEgH-0002MqC; Fri, 5 Jan 96 08:07 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA00759; Fri, 5 Jan 1996 10:01:44 -0600
Received: from franklin.seas.gwu.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA00493 for <
[email protected]>; Fri, 5 Jan 1996 09:56:27 -0600
Received: from felix.seas.gwu.edu (
[email protected] [128.164.9.3]) by franklin.seas.gwu.edu (8.7.1/8.7.1) with ESMTP id KAA11685 for <
[email protected]>; Fri, 5 Jan 1996 10:56:26 -0500 (EST)
Received: from gypsy (gypsy [128.164.2.10]) by felix.seas.gwu.edu (8.6.12/8.6.12) with SMTP id KAA03318 for <
[email protected]>; Fri, 5 Jan 1996 10:56:22 -0500
Received: by gypsy id AA15733; Fri, 5 Jan 1996 10:55:47 -0500
Message-Id: <9601051555.AA15733@gypsy>
Date: Fri, 5 Jan 1996 10:55:47 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Sheryl Coppenger <
[email protected]>
To:
[email protected]
Subject: Re: SunOS 4.1.4 and DIR
In-Reply-To: <
[email protected]> from "Tim Capps" at Jan 4, 96 12:14:13 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> I have done about everything I can think of to get DIR to work with
> anon FTP users. Quite likely it is something to do with dynamic link
> libraries. I even tried copying the entire contents of /usr/lib into
> ~ftp/lib - no luck. I tried using "trace" and so forth, still no luck.
>
> Reading the docs, it says that one way of solving this problem is to
> compile ls, tar, etc. It also says that these are available in source
> form from GNU and that is available on the wustl.edu ftp server. Well,
> it's all been rearranged since that document was written, and I have
> absolutely no clue where on earth those source files would be.
>
> Does anyone have any tips on how to get it to work with dynamic link
> libraries? Does anyone know where the source for ls may be found?
The source can be found in /packages/gnu on ftp.uu.net. The version I'm
using is fileutils-3.12.
>
> Thanks a bunch,
> Tim
>
>
>
--
Sheryl Coppenger SEAS Computing Facility Staff
[email protected]
The George Washington University (202) 994-6853
From
[email protected] Mon Jan 8 08:43:07 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tZKen-000FofC; Mon, 8 Jan 96 08:42 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA22317; Mon, 8 Jan 1996 10:34:03 -0600
Received: from ns1.fni.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id KAA22161 for <
[email protected]>; Mon, 8 Jan 1996 10:31:10 -0600
Received: (from mbrennen@localhost) by ns1.fni.com (8.7.3/8.7.3) id KAA19936; Mon, 8 Jan 1996 10:31:20 -0600
Message-Id: <
[email protected]>
Date: Mon, 8 Jan 1996 10:31:20 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To:
[email protected]
Subject: Re: problem with zipped files?
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Mon, 8 Jan 1996, David Parter wrote:
> I recieved the following problem report:
>
> > I'm having problems downloading the gs351fn1.zip file, in that its
> > reported as a directory. This happens with WS_FTP32 & Netscape, I've
> > put the - in front of my password
> >
> > I've just got round the problem by specifying the full path and file
> > name in a single line. BTW there are other files with the same
> > problem.
> > Thanks
>
> This is not the first time I have heard this, but being a unix person, I
> don't understand it (everything looks fine to me). The file in question
> is a symlink to another file:
>
> lrwxr-xr-x 1 rjl 2461 12 Sep 28 19:31 gs351fn1.zip@ -> gs333fn1.zip
> -rw-r--r-- 1 rjl 1385 1365916 Oct 2 1994 gs333fn1.zip
>
> anyone got any ideas?
I don't know if this is the problem, but WS_FTP (under the Options
button, Session Options) allows viewing links as either directories or
files. I don't know what Netscape's problem is with this.
I won't ask or comment on why a symlink of what appears to be a revisioned
file is pointed to a file of what appears to be an earlier revision....
Michael
---------------------------------------------------------------------
Michael Brennen, President / /
[email protected]
FishNet, Inc. / Internet /
http://www.fni.com/
P.O. Box 940451 / Services / (214) 783-2553 (vox/fax)
Plano, TX 75094-0451 / / finger me for PGP public key
From
[email protected] Mon Jan 8 08:47:13 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from camco1.celestial.com by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tZKj3-000FqWC; Mon, 8 Jan 96 08:47 PST
Received: from wugate.wustl.edu by camco1.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tZJIb-0004dnC; Mon, 8 Jan 96 07:15 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA17499; Mon, 8 Jan 1996 09:19:41 -0600
Received: from venom.cs.wisc.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA17137 for <
[email protected]>; Mon, 8 Jan 1996 09:14:32 -0600
Received: from localhost by venom.cs.wisc.edu; Mon, 8 Jan 96 09:14:31 -0600
Message-Id: <
[email protected]>
Date: Mon, 08 Jan 1996 09:14:31 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: David Parter <
[email protected]>
To:
[email protected]
Subject: problem with zipped files?
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I recieved the following problem report:
> I'm having problems downloading the gs351fn1.zip file, in that its
> reported as a directory. This happens with WS_FTP32 & Netscape, I've
> put the - in front of my password
>
> I've just got round the problem by specifying the full path and file
> name in a single line. BTW there are other files with the same
> problem.
> Thanks
This is not the first time I have heard this, but being a unix person, I
don't understand it (everything looks fine to me). The file in question
is a symlink to another file:
lrwxr-xr-x 1 rjl 2461 12 Sep 28 19:31 gs351fn1.zip@ -> gs333fn1.zip
-rw-r--r-- 1 rjl 1385 1365916 Oct 2 1994 gs333fn1.zip
anyone got any ideas?
thanks,
--david
From
[email protected] Mon Jan 8 08:47:41 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from camco1.celestial.com by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tZKjU-0000nxC; Mon, 8 Jan 96 08:47 PST
Received: from wugate.wustl.edu by camco1.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tZK2E-0004efC; Mon, 8 Jan 96 08:02 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA20310; Mon, 8 Jan 1996 10:04:45 -0600
Received: from mailserv.cc.kuleuven.ac.be by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA20068 for <
[email protected]>; Mon, 8 Jan 1996 10:02:20 -0600
Received: from gobelijn.mech.kuleuven.ac.be (garfield.mech.kuleuven.ac.be) by mailserv.cc.kuleuven.ac.be with SMTP id AA18713
(5.67a8/IDA-1.5 for
[email protected]); Mon, 8 Jan 1996 17:02:17 +0100
Received: by gobelijn.mech.kuleuven.ac.be
(1.38.193.4/16.2) id AA15330; Mon, 8 Jan 1996 17:00:58 GMT
Message-Id: <
[email protected]>
Date: Mon, 8 Jan 96 17:00:57 WET
Reply-To:
[email protected]
Sender:
[email protected]
From: Yanming PENG <
[email protected]>
To:
[email protected]
Subject: Re: problem with zipped files?
In-Reply-To: <
[email protected]>; from "
[email protected]" at Jan 8, 96 4:20 pm
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> This is not the first time I have heard this, but being a unix person, I
> don't understand it (everything looks fine to me). The file in question
> is a symlink to another file:
>
> lrwxr-xr-x 1 rjl 2461 12 Sep 28 19:31 gs351fn1.zip@ -> gs333fn1.zip
> -rw-r--r-- 1 rjl 1385 1365916 Oct 2 1994 gs333fn1.zip
>
> anyone got any ideas?
In some DOS/Winsock FTP client, there is an option to treat symlink either
as file or as directory. Not matter what option you set, you will have
problem any way. In above case, the option is set to treat symlink as dir.
In fact, gs351fn1.zip points to a file :-(
>
> thanks,
>
> --david
--
Yanming PENG Email:
[email protected] http://peng.mech.kuleuven.ac.be
Tel.32-16-322516 | The trouble with doing something right the first time is |
Fax:32-16-322987 | that nobody appreciates how difficult it was. |
From
[email protected] Wed Jan 10 09:28:58 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0ta4KW-0007DyC; Wed, 10 Jan 96 09:28 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA23054; Wed, 10 Jan 1996 11:20:40 -0600
Received: from arctos.LCS.MIT.EDU.LCS.MIT.EDU by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA19329 for <
[email protected]>; Wed, 10 Jan 1996 10:15:49 -0600
Received: by arctos.LCS.MIT.EDU.LCS.MIT.EDU (4.1/SMI-4.1)
id AA19928; Wed, 10 Jan 96 11:15:48 EST
Message-Id: <
[email protected]>
Date: Wed, 10 Jan 1996 11:15:48 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Ed Hurley <
[email protected]>
To:
[email protected]
Subject: does wu-ftpd support kerberos?
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
hi all,
i tried sending this before but apparently it didn't get posted.
i recently installed wu-ftpd 2.4(3) on our ftp server.
my intention was to install steve lunt's kerberized ftpd
on all our other machines. however, someone told me that
wu-ftpd supports kerberos.
in looking at the sources, it looks like it's possible
to compile some kerberos support in. however, it's not
clear how to do this. for one thing, i don't have libauth.a
or libckrb.a, which the Makefile seems to expect. also,
in looking at ftpd.c, it looks like the kerberized version
requires hesiod, which i don't have.
can anyone tell me:
1) whether wu-ftpd supports kerberos (krb4)?
and if so:
2) whether it requires hesiod?
3) how to get lauth and lckrb?
4) anything else i need to know to compile for krb4?
thanks,
-ed
From
[email protected] Tue Jan 16 09:46:21 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcFSY-0000cwC; Tue, 16 Jan 96 09:46 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA06813; Tue, 16 Jan 1996 11:36:55 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id LAA22012 for <
[email protected]>; Thu, 11 Jan 1996 11:55:51 -0600
Received: from osceola.gate.net by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Tue, 09 Jan 1996 06:25:55 -0500 (CDT)
Received: from gate.net.gate.net (wpbfl2-46.gate.net [199.227.125.174])
by osceola.gate.net (8.6.12/8.6.9) with SMTP id HAA49324 for
<
[email protected]>; Tue, 9 Jan 1996 07:43:41 -0500
Message-Id: <
[email protected]>
Date: Tue, 09 Jan 1996 07:43:41 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Problem with new install
MIME-version: 1.0
Content-type: text/plain; charset="us-ascii"
Content-transfer-encoding: 7BIT
X-Sender:
[email protected] (Unverified)
X-Mailer: Windows Eudora Pro Version 2.1.2
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I just installed wu-ftpd 2.4.1 on a sun sparc10 running Solaris 2.3 and am
having problems with it. When you ftp/connect to the host it's installed on
you get the wu-ftpd banner, as expected, but the daemon shuts down
immediately after entering a user id(doesn't matter what UID is entered).
If anyone can give me any suggestions as to what might be happening, I'd
appreciate the help.
Thanks,
Mark S. Velasquez
From
[email protected] Tue Jan 16 09:58:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcFe1-0006pHC; Tue, 16 Jan 96 09:58 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA08065; Tue, 16 Jan 1996 11:50:17 -0600
Received: from po10.andrew.cmu.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA13816 for <
[email protected]>; Fri, 12 Jan 1996 09:07:02 -0600
Received: (from postman@localhost) by po10.andrew.cmu.edu (8.7.1/8.7.1) id KAA00520 for
[email protected]; Fri, 12 Jan 1996 10:06:59 -0500
Received: via switchmail; Fri, 12 Jan 1996 10:06:58 -0500 (EST)
Received: from johnstown.andrew.cmu.edu via qmail
ID </afs/andrew.cmu.edu/service/mailqs/testq0/QF.4kxbXzK00WCQARAXpQ>;
Fri, 12 Jan 1996 10:06:39 -0500 (EST)
Received: from johnstown.andrew.cmu.edu via qmail
ID </afs/andrew.cmu.edu/usr16/shadow/.Outgoing/QF.MkxbXx600WCQ4DkY1d>;
Fri, 12 Jan 1996 10:06:37 -0500 (EST)
Received: from mms.4.60.Jan.26.1995.18.43.47.sun4c.411.EzMail.2.0.CUILIB.3.45.SNAP.NOT.LINKED.johnstown.andrew.cmu.edu.sun4c.411
via MS.5.6.johnstown.andrew.cmu.edu.sun4c_411;
Fri, 12 Jan 1996 10:06:37 -0500 (EST)
Message-Id: <
[email protected]>
Date: Fri, 12 Jan 1996 10:06:37 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Derrick J. Brashear" <
[email protected]>
To:
[email protected]
Subject: Re: does wu-ftpd support kerberos?
In-Reply-To: <
[email protected]>
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Excerpts from internet.listserv.wu-ftpd: 10-Jan-96 does wu-ftpd support
kerberos? by Ed
[email protected].
> hi all,
>
> i tried sending this before but apparently it didn't get posted.
>
> i recently installed wu-ftpd 2.4(3) on our ftp server.
> my intention was to install steve lunt's kerberized ftpd
> on all our other machines. however, someone told me that
> wu-ftpd supports kerberos.
http://andrew2.andrew.cmu.edu/dist has our wu-ftpd including Kerberos
support, most of which is lunt's code.
-D
From
[email protected] Tue Jan 16 09:58:14 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcFe6-000FjoC; Tue, 16 Jan 96 09:58 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA07788; Tue, 16 Jan 1996 11:48:16 -0600
Received: from puma.jf.intel.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA29745 for <
[email protected]>; Thu, 11 Jan 1996 14:04:13 -0600
Received: from puma.jf.intel.com by puma.jf.intel.com (NTMail 3.00.06) id aa000241 Thu, 11 Jan 96 12:03:54 -0800 (PST)
Message-Id: <2.2.32.19960111120354.003136a0@puma>
Date: Thu, 11 Jan 1996 12:03:54 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From: Darci Chapman <
[email protected]>
To:
[email protected]
Subject: wu-ftpd ported to NT
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender: dchapmax@puma
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Info: Evaluation version at puma.jf.intel.com
X-Info: NTMail v3.00.06 installed 1/6/96
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Greetings, all,
I'm not currently subscribed to the list so please reply directly
to me (or at least Cc: me :-)
I'm curious if anyone know if wu-ftpd has been or is in the process
of being ported to Windows/NT? If yes, who are and/or how can I get in
touch with the relevant parties?
Thanks!
Cheers,
..dlc...
PS I've tried to subscribe twice, no luck; read the FAQ at
http://www.hvu.nl/~koos/wu-ftpd-faq.html and tried the archives
at
http://freeway.oact.hq.nasa.gov/wuarchive.html but the
search link is not working and there are no links to the archive
beyond April '95...
From
[email protected] Tue Jan 16 10:02:38 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcFiN-000FjvC; Tue, 16 Jan 96 10:02 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA08579; Tue, 16 Jan 1996 11:54:34 -0600
Received: from nasirc.hq.nasa.gov by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id SAA21788 for <
[email protected]>; Mon, 15 Jan 1996 18:37:44 -0600
Received: from localhost.hq.nasa.gov by nasirc.hq.nasa.gov (8.6.10/1.35)
id TAA03440; Mon, 15 Jan 1996 19:37:27 -0500
Message-Id: <
[email protected]>
Date: Mon, 15 Jan 1996 19:37:27 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Fred Blonder <
[email protected]>
To:
[email protected],
[email protected]
Subject: S/Key version of WU-FTPD
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I've recently modified wu-ftpd to use the S/Key authentication form
Wietse Venema's "logdaemon" package. The changes were fairly
straightforward and simple. Has anyone else one this, or something
similar?
Who is responsible for maintaining the "official" Wu-ftpd
distribution. I'd like to supply them with a copy for possible
inclusion in the distribution as a compile-time selectable option.
The changes are all within the routine: "user()" in the file ftpd.c and
require that the ftp daemon be linked with the routines: skeyaccess.o,
skey_crypt.o, skeylogin.o, put.o, skeysubr.o and mdx.o from the
logdaemon package. This is handled by a few simple tweaks to the
makefile.
-----
Fred Blonder
[email protected]
Hughes STX Corp. (301) 441-4079
7701 Greenbelt Rd.
Greenbelt, Md. 20770
From
[email protected] Tue Jan 16 10:03:07 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcFiq-000FGOC; Tue, 16 Jan 96 10:03 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA08409; Tue, 16 Jan 1996 11:53:07 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA03493 for <
[email protected]>; Sat, 13 Jan 1996 13:17:58 -0600
Received: from neptune.cin.net by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Sat, 13 Jan 1996 13:00:07 -0500 (CDT)
Received: (from ggallag@localhost) by neptune.cin.net (8.7.3/8.6.9)
id NAA00589; Sat, 13 Jan 1996 13:16:50 -0600
Message-Id: <
[email protected]>
Date: Sat, 13 Jan 1996 13:16:50 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Greg Gallagher <
[email protected]>
To:
[email protected]
MIME-version: 1.0
Content-type: TEXT/PLAIN; charset=US-ASCII
Content-transfer-encoding: 7BIT
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Greetings,
I am not on the wu-ftpd list, but I am hoping that someone could point me
to a patch or version of wu-ftp that supported multiple ftp sites on one
machine. We have one ftp server at my ISP, and have a virtual web
server, and a machine that has several domain names where e-mail and the
dns is concerned, but we need a machine that will be able to have many
different domain names, and depending on how to anon ftp in, will set you
to a different public directory, in the same way that a Virtual Web
server does. Is there a patch or source for wu-ftp out there, and if not
who would be willing to help me write one?
Thanks,
Greg Gallagher
CIN.Net
UNIX and CIN Administration support
From
[email protected] Tue Jan 16 12:33:11 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcI3n-000FpLC; Tue, 16 Jan 96 12:32 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA23710; Tue, 16 Jan 1996 14:24:28 -0600
Received: from ns1.fni.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA22005 for <
[email protected]>; Tue, 16 Jan 1996 14:08:33 -0600
Received: (from mbrennen@localhost) by ns1.fni.com (8.7.3/8.7.3) id OAA10549; Tue, 16 Jan 1996 14:08:46 -0600
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 14:08:46 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To:
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Mon, 15 Jan 1996, Fred Blonder wrote:
> I've recently modified wu-ftpd to use the S/Key authentication form
> Wietse Venema's "logdaemon" package. The changes were fairly
> straightforward and simple. Has anyone else one this, or something
> similar?
The beta release below, created and maintained by wu-ftpd list
inhabitants, has S/Key and shadow password support built in (6 months?).
It also supports virtual FTP servers, some nice security features, as well
as fixing a number of bugs that are still in the "standard" WU release.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-8.tar.Z
You can't see the directory contents, but get the file anyway. It's
there.
Michael
---------------------------------------------------------------------
Michael Brennen, President / /
[email protected]
FishNet, Inc. / Internet /
http://www.fni.com/
P.O. Box 940451 / Services / (214) 783-2553 (vox/fax)
Plano, TX 75094-0451 / / finger me for PGP public key
From
[email protected] Tue Jan 16 12:48:03 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcIIP-000Ct5C; Tue, 16 Jan 96 12:47 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA24996; Tue, 16 Jan 1996 14:40:05 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA23343 for <
[email protected]>; Tue, 16 Jan 1996 14:20:21 -0600
Received: from neptune.cin.net by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Tue, 16 Jan 1996 14:03:15 -0500 (CDT)
Received: (from ggallag@localhost) by neptune.cin.net (8.7.3/8.6.9)
id OAA01431; Tue, 16 Jan 1996 14:20:35 -0600
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 14:20:35 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Greg Gallagher <
[email protected]>
To: Michael Brennen <
[email protected]>
Cc:
[email protected]
Subject: Re: your mail
In-Reply-To: <
[email protected]>
MIME-version: 1.0
Content-type: TEXT/PLAIN; charset=US-ASCII
Content-transfer-encoding: 7BIT
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Thanks to Michael Brennen and all who responded to my e-mail to the list
.. thanks a lot!
Greg Gallagher
CIN.Net
UNIX and CIN Administration support
From
[email protected] Tue Jan 16 13:01:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcIVC-000FG5C; Tue, 16 Jan 96 13:01 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA26000; Tue, 16 Jan 1996 14:51:27 -0600
Received: from bruin.LCS.MIT.EDU by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA25486 for <
[email protected]>; Tue, 16 Jan 1996 14:46:10 -0600
Received: by bruin.LCS.MIT.EDU (4.1/SMI-4.1)
id AA21321; Tue, 16 Jan 96 15:46:09 EST
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 15:46:09 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Ed Hurley <
[email protected]>
To:
[email protected]
Subject: Re: does wu-ftpd support kerberos?
In-Reply-To: Your message of "Fri, 12 Jan 1996 10:06:37 EST."
<
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
thanks!
-ed
From
[email protected] Tue Jan 16 13:31:10 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcIy5-0000DSC; Tue, 16 Jan 96 13:31 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA28918; Tue, 16 Jan 1996 15:22:29 -0600
Received: from ns.ge.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id PAA28556 for <
[email protected]>; Tue, 16 Jan 1996 15:18:23 -0600
Received: from bsuskind.is.ge.com ([3.19.7.222]) by ns.ge.com (8.6.12/8.6.11) with ESMTP id QAA21178 for <
[email protected]>; Tue, 16 Jan 1996 16:17:30 -0500
Received: from localhost by bsuskind.is.ge.com with SMTP
(1.37.109.16/16.2) id AA070407047; Tue, 16 Jan 1996 16:17:27 -0500
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 16:17:25 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Barry Suskind <
[email protected]>
To:
[email protected] (wu FTPd)
Subject: security audit information
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Mailer: exmh version 1.5.3 12/28/94
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have downloaded wu-ftpd 2.4 patch level 2.
My question concerns the auditing/security features of the daemon.
I can deny access to for certain types of commands. However, I get
less than desirable results in the syslog file. This is will all users
having "log commands" from the ftpaccess file.
For instance, if one group of users may use the "delete" command, I
will get an entry for "DELE filename" followed by
"user of host [ip address] deleted filename"
If the group has the "delete" command revoked with the line
"delete no guest" I still get the "DELE filename", just no information
following to indicate a denial. The user that requested the command
gets information that his request is being denied, and this is fine. I
would just like the server to be able to do the same.
Has anybody modified the code to deal with this?
In addition, has anybody added security features to turn on/off all
the commands the server supports?
barry
|--------------------------|---------------------------------------------|
|Barry A. Suskind | "If it weren't for change, your job would |
|GE Information Services | consist of making sure the corporate abacus |
|Email:
[email protected] | rods were adequately greased" - John Cleese |
|Phone: (301)-340-4667 |---------------------------------------------|
|SnailMail: 401 N Washington St, Mail Stop: MC07D, Rockville MD, 20850 |
From
[email protected] Tue Jan 16 14:08:26 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcJXx-0007BSC; Tue, 16 Jan 96 14:08 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA02785; Tue, 16 Jan 1996 15:58:09 -0600
Received: from dragonfly.cec.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA02092 for <
[email protected]>; Tue, 16 Jan 1996 15:53:45 -0600
Received: by dragonfly.cec.wustl.edu (5.x/ECL-A1.27)
id AA20666; Tue, 16 Jan 1996 15:53:42 -0600
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 15:53:42 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Robert Ellsworth <
[email protected]>
To:
[email protected]
Cc:
[email protected],
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Mon, 15 Jan 1996, Fred Blonder wrote:
> Who is responsible for maintaining the "official" Wu-ftpd
> distribution. I'd like to supply them with a copy for possible
> inclusion in the distribution as a compile-time selectable option.
Well, I think technically we (Washington University) still hold the
"official" distribution, which is the old wu-ftpd-2.4. However, it seems
to be an unwritten policy that since the author, Bryan O'Connor, is no
longer supporting the software (nor working with Wash U), we don't archive
all of the various patches, changes, etc.; just the original wu-ftpd-2.4
with all of its checksums. For additions/changes to the base wu-ftpd, you
might talk to the folks who handle the academ release; I can't speak for
them, but I'm sure they'd consider incorporating your changes into the
next release.
Then again, I could be wrong. :)
Andy Ellsworth | "...The wind was not the beginning. There are
[email protected] | neither beginnings nor endings to the turning of
Assistant Admin, wuarchive | the Wheel of Time. But it was _a_ beginning..."
http://cec.wustl.edu/~are1 | --The Wheel of Time saga, Robert Jordan
From
[email protected] Tue Jan 16 14:24:28 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcJnd-000DVIC; Tue, 16 Jan 96 14:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA04260; Tue, 16 Jan 1996 16:15:06 -0600
Received: from rigel.dartmouth.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id QAA04127 for <
[email protected]>; Tue, 16 Jan 1996 16:14:15 -0600
Received: from rigel.dartmouth.edu (localhost [127.0.0.1]) by rigel.dartmouth.edu (8.7.3/8.7.3) with ESMTP id RAA17714 for <
[email protected]>; Tue, 16 Jan 1996 17:13:57 -0500
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 17:13:57 +22300819
Reply-To:
[email protected]
Sender:
[email protected]
From: Pat Wilson <
[email protected]>
To:
[email protected]
Subject: 2.4.2-beta-8 vsnprintf?
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Apologies if I've missed this somewhere...
I'm trying to make beta-8 on a DU (formerly OSF/1) 3.2a machine, but don't
have vsnprintf (in ftpd.c). Is there a work-around?
Thanks.
Pat Wilson
[email protected]
From
[email protected] Tue Jan 16 15:06:01 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcKRx-000CtlC; Tue, 16 Jan 96 15:05 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA08115; Tue, 16 Jan 1996 16:50:21 -0600
Received: from taz.nda.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id QAA07953 for <
[email protected]>; Tue, 16 Jan 1996 16:48:29 -0600
Received: (from kovar@localhost) by taz.nda.com (8.7.3/8.7.3) id OAA00514; Tue, 16 Jan 1996 14:48:51 -0800 (PST)
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 14:48:50 -0800 (PST)
Reply-To:
[email protected]
Sender:
[email protected]
From: David Kovar <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]> from "Andrew Robert Ellsworth" at Jan 16, 96 03:53:42 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL24]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> Well, I think technically we (Washington University) still hold the
> "official" distribution, which is the old wu-ftpd-2.4. However, it seems
> to be an unwritten policy that since the author, Bryan O'Connor, is no
> longer supporting the software (nor working with Wash U), we don't archive
> all of the various patches, changes, etc.; just the original wu-ftpd-2.4
> with all of its checksums. For additions/changes to the base wu-ftpd, you
> might talk to the folks who handle the academ release; I can't speak for
> them, but I'm sure they'd consider incorporating your changes into the
> next release.
>
> Andy Ellsworth | "...The wind was not the beginning. There are
>
[email protected] | neither beginnings nor endings to the turning of
> Assistant Admin, wuarchive | the Wheel of Time. But it was _a_ beginning..."
>
http://cec.wustl.edu/~are1 | --The Wheel of Time saga, Robert Jordan
Does wu-ftpd need someone to adopt it and be a clearing house for
patches, updates, and the like?
-David
From
[email protected] Tue Jan 16 15:46:34 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcL59-000CuWC; Tue, 16 Jan 96 15:46 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA12173; Tue, 16 Jan 1996 17:37:21 -0600
Received: from ns1.sterling.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA11636 for <
[email protected]>; Tue, 16 Jan 1996 17:32:34 -0600
Received: by ns1.sterling.com
id AA13213; Tue, 16 Jan 1996 17:29:23 -0600
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 96 17:29:23 CST
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]>; from "David Kovar" at Jan 16, 96 2:48 pm
X-Mailer: ELM [version 2.3 PL11]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> > Well, I think technically we (Washington University) still hold the
> > "official" distribution, which is the old wu-ftpd-2.4. However, it seems
> > to be an unwritten policy that since the author, Bryan O'Connor, is no
> > longer supporting the software (nor working with Wash U), we don't archive
> > all of the various patches, changes, etc.; just the original wu-ftpd-2.4
> > with all of its checksums. For additions/changes to the base wu-ftpd, you
> > might talk to the folks who handle the academ release; I can't speak for
> > them, but I'm sure they'd consider incorporating your changes into the
> > next release.
> Does wu-ftpd need someone to adopt it and be a clearing house for
> patches, updates, and the like?
If that's the case, we would be happy to provide software and mailing list
archive support for development efforts. Just an thought/offer...
-Kent+
--
Kent Landfield INTERNET:
[email protected]
Sterling Software FAX: 1-214-891-8655
Phone: 1-214-891-8693 Pager: 1-800-386-0277
Please send comp.sources.misc-related mail to
[email protected].
From
[email protected] Tue Jan 16 17:03:00 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcMH8-000FCCC; Tue, 16 Jan 96 17:02 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA17456; Tue, 16 Jan 1996 18:54:29 -0600
Received: from novell.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA17110 for <
[email protected]>; Tue, 16 Jan 1996 18:49:52 -0600
Received: from INET-SJF-Message_Server by fromGW
with Novell_GroupWise; Tue, 16 Jan 1996 16:47:40 -0800
Message-Id: <s0fbd6ac.064@fromGW>
Date: Tue, 16 Jan 1996 16:51:23 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Vard Lott)
To:
[email protected]
Subject: Re: ftpwho doesn't work -Reply
Content-Type: text/plain
X-Mailer: Novell GroupWise 4.1
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi, Ulla:
Unrelated question: Where did you get your
gcc? We've got it and I'm trying to
recompile for other reasons and am getting:
"...cannot exec cc1: No such file..."
Thanks,
Vard Lott, Webmaster
Novell, Inc.
P.S. - Our ftpwho works fine on Solaris 2.4,
would you like me to send you a copy of our
binary?
>>> Ulla Fischer <
[email protected]> 01/05/96
03:55am >>>
Scott> Has anyone figured out a way to get
ftpwho working under
Scott> Solaris 2.4?
I just compiled and installed the
wu-ftpd-2.4 with gcc-2.6.3, and then it run?
My pathnames.h looks like this:
/* Copyright (c) 1989 The Regents of the
University of California. All rights
* reserved.
*
* Redistribution and use in source and
binary forms, with or without
* modification, are permitted provided that
the following conditions are
* met: 1. Redistributions of source code
must retain the above copyright
* notice, this list of conditions and the
following disclaimer. 2.
* Redistributions in binary form must
reproduce the above copyright notice,
* this list of conditions and the following
disclaimer in the documentation
* and/or other materials provided with the
distribution. 3. All advertising
* materials mentioning features or use of
this software must display the
* following acknowledgement: This product
includes software developed by the
* University of California, Berkeley and
its contributors. 4. Neither the
* name of the University nor the names of
its contributors may be used to
* endorse or promote products derived from
this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS
AND CONTRIBUTORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE
REGENTS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)pathnames.h 5.2 (Berkeley) 6/1/90 */
#define _PATH_FTPUSERS "/etc/ftpusers"
#define _PATH_FTPACCESS
"/pack/ftpd/etc/ftpaccess"
#define _PATH_EXECPATH "/bin/ftp-exec"
#define _PATH_PIDNAMES
"/pack/ftpd/daemon/ftpd/ftp.pids-%s"
#define _PATH_CVT
"/pack/ftpd/etc/ftpconversions"
#define _PATH_XFERLOG
"/pack/ftpd/log/xferlog"
#define _PATH_PRIVATE "/etc/ftpgroups"
#ifndef _PATH_UTMP
#define _PATH_UTMP "/etc/utmp"
#define _PATH_WTMP "/usr/adm/wtmp"
#define _PATH_LASTLOG "/usr/adm/lastlog"
#endif
#define _PATH_BSHELL "/bin/sh"
#define _PATH_DEVNULL "/dev/null"
#ifdef HOST_ACCESS
#define _PATH_FTPHOSTS
"/pack/ftpd/etc/ftphosts"
#endif
and my Makefile looks like this:
BINDIR= /pack/wu-ftpd-2.4/bin
ETCDIR= /pack/wu-ftpd-2.4/etc
MANDIR= /pack/wu-ftpd-2.4/man
MANEXT= 8
all:
@ echo 'Use the "build" command
(shell script) to make ftpd.'
@ echo 'You can say "build help" for
details on how it works.'
install: bin/ftpd bin/ftpcount bin/ftpshut
-mv -f ${ETCDIR}/ftpd
${ETCDIR}/ftpd-old
@echo Installing binaries.
install -o bin -g bin -m 755
bin/ftpd ${ETCDIR}/ftpd
install -o bin -g bin -m 755
bin/ftpshut ${BINDIR}/ftpshut
install -o bin -g bin -m 755
bin/ftpcount ${BINDIR}/ftpcount
install -o bin -g bin -m 755
bin/ftpwho ${BINDIR}/ftpwho
@echo Installing manpages.
install -o bin -g bin -m 755
doc/ftpd.8 ${MANDIR}/man8/ftpd.8
install -o bin -g bin -m 755
doc/ftpcount.1 ${MANDIR}/man1/ftpcount.1
install -o bin -g bin -m 755
doc/ftpwho.1 ${MANDIR}/man1/ftpwho.1
install -o bin -g bin -m 755
doc/ftpshut.8 ${MANDIR}/man8/ftpshut.8
install -o bin -g bin -m 755
doc/ftpaccess.5 ${MANDIR}/man5/ftpaccess.5
install -o bin -g bin -m 755
doc/ftphosts.5 ${MANDIR}/man5/ftphosts.5
install -o bin -g bin -m 755
doc/ftpconversions.5
${MANDIR}/man5/ftpconversions.5
install -o bin -g bin -m 755
doc/xferlog.5 ${MANDIR}/man5/xferlog.5
Yours,
Ulla Fischer
Danmarks Meteorologiske Institut Email:
[email protected]
Edb-afdelingen Phone:
+ 45 39 15 75 00 Lyngbyvej 100
Phone: + 45 39 15 75 54
2100 Koebenhavn 0 Fax:
+ 45 39 15 75 98
Denmark
From
[email protected] Tue Jan 16 17:53:33 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcN42-000DZrC; Tue, 16 Jan 96 17:53 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id TAA20465; Tue, 16 Jan 1996 19:46:42 -0600
Received: from ns1.fni.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id TAA20105 for <
[email protected]>; Tue, 16 Jan 1996 19:41:04 -0600
Received: (from mbrennen@localhost) by ns1.fni.com (8.7.3/8.7.3) id TAA11813; Tue, 16 Jan 1996 19:41:23 -0600
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 19:41:22 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To:
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> > Does wu-ftpd need someone to adopt it and be a clearing house for
> > patches, updates, and the like?
>
> If that's the case, we would be happy to provide software and mailing list
> archive support for development efforts. Just an thought/offer...
I'm certainly not an official spokesman for the list, just a long
inhabitant. Thanks for the consideration of maintaining the beast; it
may be needed one of these days.
Stan Barber (
[email protected]) has been pulling the WU ftpd betas together
for some time and releasing them from his site. So far WU seems to be
very willing to keep hosting the bandwidth for the mailing list, and it is
working well.
This has been an adequate mechanism for ongoing development, at least as
long as the two hosts above continue to provide access. I for one
appreciate their ongoing contribution very much.
Michael
---------------------------------------------------------------------
Michael Brennen, President / /
[email protected]
FishNet, Inc. / Internet /
http://www.fni.com/
P.O. Box 940451 / Services / (214) 783-2553 (vox/fax)
Plano, TX 75094-0451 / / finger me for PGP public key
From
[email protected] Tue Jan 16 18:09:26 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcNJS-0006pEC; Tue, 16 Jan 96 18:09 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id UAA21668; Tue, 16 Jan 1996 20:02:30 -0600
Received: from ns1.sterling.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id TAA21307 for <
[email protected]>; Tue, 16 Jan 1996 19:57:47 -0600
Received: by ns1.sterling.com
id AA14270; Tue, 16 Jan 1996 19:54:57 -0600
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 96 19:54:56 CST
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]>; from "Michael Brennen" at Jan 16, 96 7:41 pm
X-Mailer: ELM [version 2.3 PL11]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> > > Does wu-ftpd need someone to adopt it and be a clearing house for
> > > patches, updates, and the like?
> >
> > If that's the case, we would be happy to provide software and mailing list
> > archive support for development efforts. Just an thought/offer...
>
> Stan Barber (
[email protected]) has been pulling the WU ftpd betas together
> for some time and releasing them from his site. So far WU seems to be
> very willing to keep hosting the bandwidth for the mailing list, and it is
> working well.
>
> This has been an adequate mechanism for ongoing development, at least as
> long as the two hosts above continue to provide access. I for one
> appreciate their ongoing contribution very much.
Please don't get me wrong. I too appreciate their efforts greatly. I was
just offering if there was a need. When there is we'd be happy to help out.
-Kent+
--
Kent Landfield INTERNET:
[email protected]
Sterling Software FAX: 1-214-891-8655
Phone: 1-214-891-8693 Pager: 1-800-386-0277
Please send comp.sources.misc-related mail to
[email protected].
From
[email protected] Tue Jan 16 21:16:47 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcQEk-000FjlC; Tue, 16 Jan 96 21:16 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id XAA01793; Tue, 16 Jan 1996 23:10:20 -0600
Received: from ns1.fni.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id XAA01619 for <
[email protected]>; Tue, 16 Jan 1996 23:06:51 -0600
Received: (from mbrennen@localhost) by ns1.fni.com (8.7.3/8.7.3) id XAA12214; Tue, 16 Jan 1996 23:07:12 -0600
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 23:07:12 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Kent Landfield <
[email protected]>
Cc:
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Tue, 16 Jan 1996, Kent Landfield wrote:
> Please don't get me wrong. I too appreciate their efforts greatly. I was
> just offering if there was a need. When there is we'd be happy to help out.
Ahhhh - very sorry to communicate any sense that you did not appreciate
it. The fact that you and the other fellow (sorry, I think I have deleted
the previous posts) offered the support indicates a nice willingness to
pitch in. I appreciate that and I am sure that others do also.
Normally I would not reply to the list for this, but looking back over my
post I see how misworded it was. Please accept my apology. I hope this
clears up any misunderstanding about what I meant so as not to offend
anyone. Any and all efforts to help are much appreciated.
Thanks,
Michael
---------------------------------------------------------------------
Michael Brennen, President / /
[email protected]
FishNet, Inc. / Internet /
http://www.fni.com/
P.O. Box 940451 / Services / (214) 783-2553 (vox/fax)
Plano, TX 75094-0451 / / finger me for PGP public key
From
[email protected] Wed Jan 17 06:13:50 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcYcU-0000DQC; Wed, 17 Jan 96 06:13 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA23418; Wed, 17 Jan 1996 08:08:06 -0600
Received: from wayback.er.usgs.gov by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA22796 for <
[email protected]>; Wed, 17 Jan 1996 07:58:16 -0600
Received: from zantor.er.usgs.gov by wayback.er.usgs.gov (4.1/SMI-4.1)
id AA24039; Wed, 17 Jan 96 08:59:05 EST
Received: by zantor.er.usgs.gov (5.x/SMI-SVR4)
id AA06243; Wed, 17 Jan 1996 08:55:05 -0500
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 08:55:05 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Bill Townsley)
To:
[email protected]
Subject: dir command
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have wu-ftpd 2.4 on a Sun SPARC running Solaris 2.4. I am
unable to get the "dir" command to work under the anonymous login.
Logins by specific users works fine, but the anonymous login is
unable to do a dir. For example, when logging in as anonymous, the
"ls" command outputs:
ftp>ls
200 PORT command successful.
150 Opening ASCII mode data connection for file list.
bin
incoming
dev
etc
pub
226 Transfer complete.
30 bytes received in 0.0036 seconds (8.2 Kbytes/s)
ftp>
but the "dir" command yields:
ftp> dir
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
226 Transfer complete.
ftp>
Does anyone have any idea why this happens or how I can fix it?
+------------------------------------+
| Bill Townsley, Computer Specialist |
| USGS Center for Coastal Geology |
| email:
[email protected] |
| phone: 813-893-3100 ext. 3019 |
| fax: 813-893-3333 |
+------------------------------------+
| One World, One Operating System |
+------------------------------------+
From
[email protected] Wed Jan 17 06:24:22 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcYmf-0006qyC; Wed, 17 Jan 96 06:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA24182; Wed, 17 Jan 1996 08:19:49 -0600
Received: from smtp1.cerf.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id IAA23916 for <
[email protected]>; Wed, 17 Jan 1996 08:16:30 -0600
Received: from mansion.thepalace.com (mansion.thepalace.com [206.17.52.2]) by smtp1.cerf.net (8.6.10/8.6.9) with SMTP id NAA05607 for <
[email protected]>; Tue, 16 Jan 1996 13:24:34 -0800
Received: from hall.thepalace.com by mansion.thepalace.com; (5.65/1.1.8.2/19Sep95-0226PM)
id AA15777; Tue, 16 Jan 1996 13:28:33 -0800
Message-Id: <
[email protected]>
Date: Tue, 16 Jan 1996 13:30:44 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Robert McDaniel)
To:
[email protected]
Subject: Lingering ftp connections
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have set up wu-ftp for my system, and have been having lingering ftp
connections. As per messages to this list, I obtained the latest beta
release, which was supposed to solve this problem. (at least that is the
impression I received)
What should I do now?
_______________________
Robert McDaniel
Webmaster
The Palace Group
Time Warner
www.thepalace.com
[email protected]
(818) 295 6624
_______________________
From
[email protected] Wed Jan 17 06:34:24 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcYwO-0006qyC; Wed, 17 Jan 96 06:34 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA24984; Wed, 17 Jan 1996 08:30:06 -0600
Received: from hermes.bcm.tmc.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id IAA24629 for <
[email protected]>; Wed, 17 Jan 1996 08:25:26 -0600
Received: from BCM.TMC.EDU (
[email protected] [128.249.2.1]) by hermes.bcm.tmc.edu (8.7/8.6.11) with SMTP id IAA16724 for <
[email protected]>; Wed, 17 Jan 1996 08:25:20 -0600 (CST)
Received: from KIRA.SSCTR.BCM.TMC.EDU (KIRA.SSCTR.BCM.TMC.EDU [128.249.16.12]) by BCM.TMC.EDU (8.6.11/8.6.6) with SMTP id IAA13358 for <
[email protected]>; Wed, 17 Jan 1996 08:25:17 -0600
Received: (from david@localhost) by KIRA.SSCTR.BCM.TMC.EDU (8.6.8.1/8.6.6) id IAA14002; Wed, 17 Jan 1996 08:25:15 -0600
Message-Id: <Pine.SOL.3.91.960117082058.5595p-100000@kira>
Date: Wed, 17 Jan 1996 08:25:14 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "David A. Smith" <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: dir command
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Sender: david@kira
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Wed, 17 Jan 1996, Bill Townsley wrote:
> I have wu-ftpd 2.4 on a Sun SPARC running Solaris 2.4. I am
> unable to get the "dir" command to work under the anonymous login.
> Logins by specific users works fine, but the anonymous login is
> unable to do a dir. For example, when logging in as anonymous, the
> "ls" command outputs:
To use dir, or any switches on ls, either all the libaries that ls uses
must be in ~ftp/ or it must be compiled staticly. The second option is
easier. This applies to any command you want to be executated from anon
ftp (ie tar, compress...)
The source can be gotten from any gnu archive site at I belive fileutil.tar.
To compile staticly I recommend using the -static option and compiling
under gcc.
The reason that just ls works is that the server itself has a really dumb
return directory command that is used if no switches are sent.
-----------------------------------------------------------------------
David A. Smith | Baylor College of Medicine
Systems Services | Enterprise Services, MEDT1103
(713) 798-8469 | One Baylor Plaza
Internet:
[email protected] | Houston, TX 77030
From
[email protected] Wed Jan 17 06:44:52 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcZ6V-000DKSC; Wed, 17 Jan 96 06:44 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA25780; Wed, 17 Jan 1996 08:40:31 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id IAA25324 for <
[email protected]>; Wed, 17 Jan 1996 08:35:21 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id QAA11580; Wed, 17 Jan 1996 16:35:26 -0200
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 16:35:25 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: dir command
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Bill Townsley wrote:
>
> I have wu-ftpd 2.4 on a Sun SPARC running Solaris 2.4. I am
> unable to get the "dir" command to work under the anonymous login.
> Logins by specific users works fine, but the anonymous login is
> unable to do a dir. For example, when logging in as anonymous, the
> "ls" command outputs:
>
> ftp>ls
> 200 PORT command successful.
> 150 Opening ASCII mode data connection for file list.
> bin
> incoming
> dev
> etc
> pub
> 226 Transfer complete.
> 30 bytes received in 0.0036 seconds (8.2 Kbytes/s)
> ftp>
>
> but the "dir" command yields:
>
> ftp> dir
> 200 PORT command successful.
> 150 Opening ASCII mode data connection for /bin/ls.
> 226 Transfer complete.
> ftp>
>
> Does anyone have any idea why this happens or how I can fix it?
>
> +------------------------------------+
> | Bill Townsley, Computer Specialist |
> | USGS Center for Coastal Geology |
> | email:
[email protected] |
> | phone: 813-893-3100 ext. 3019 |
> | fax: 813-893-3333 |
> +------------------------------------+
> | One World, One Operating System |
> +------------------------------------+
Hi Bill
There must exist a ~ftp/usr/lib directory which must contain:
ld.so.1 libc.so.1 libdl.so.1 libintl.so.1 libw.so.1
Regards
Nathan
--
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Wed Jan 17 07:31:51 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcZpr-000FExC; Wed, 17 Jan 96 07:31 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA01589; Wed, 17 Jan 1996 09:26:55 -0600
Received: from nautique.epm.ornl.gov by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA01199 for <
[email protected]>; Wed, 17 Jan 1996 09:24:11 -0600
Received: (from lpz@localhost) by nautique.epm.ornl.gov (8.6.10/8.6.10) id KAA03244; Wed, 17 Jan 1996 10:23:34 -0500
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 10:23:34 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Lawrence MacIntyre - 615.574.8696" <
[email protected]>
To: Fred Blonder <
[email protected]>
Cc:
[email protected],
[email protected]
Subject: Re: S/Key version of WU-FTPD
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Mon, 15 Jan 1996, Fred Blonder wrote:
> I've recently modified wu-ftpd to use the S/Key authentication form
> Wietse Venema's "logdaemon" package. The changes were fairly
> straightforward and simple. Has anyone else one this, or something
> similar?
>
> Who is responsible for maintaining the "official" Wu-ftpd
> distribution. I'd like to supply them with a copy for possible
> inclusion in the distribution as a compile-time selectable option.
>
> The changes are all within the routine: "user()" in the file ftpd.c and
> require that the ftp daemon be linked with the routines: skeyaccess.o,
> skey_crypt.o, skeylogin.o, put.o, skeysubr.o and mdx.o from the
> logdaemon package. This is handled by a few simple tweaks to the
> makefile.
I did that as well, but the consensus was that WU wasn't doing any more
updates and some unknown person might be doing some or something, so I
didn't have anywhere to send the diffs.
Lawrence
~
-------------------------------------------------------------------------------
[email protected] http://www.epm.ornl.gov/~lpz Lawrence MacIntyre
[email protected] Oak Ridge National Laboratory 423.574.8696
From
[email protected] Wed Jan 17 07:46:26 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tca3w-000FJ9C; Wed, 17 Jan 96 07:46 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA03639; Wed, 17 Jan 1996 09:41:59 -0600
Received: from ftms.ftms.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA02999 for <
[email protected]>; Wed, 17 Jan 1996 09:37:14 -0600
Received: (from brown@localhost) by ftms.ftms.com (8.6.9/8.6.9) id JAA20382 for
[email protected]; Wed, 17 Jan 1996 09:37:13 -0600
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 09:37:13 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Vidiot <
[email protected]>
To:
[email protected]
Subject: Re: Lingering ftp connections
In-Reply-To: <
[email protected]> from "Robert McDaniel" at Jan 16, 96 01:30:44 pm
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL24]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
<I have set up wu-ftp for my system, and have been having lingering ftp
<connections. As per messages to this list, I obtained the latest beta
<release, which was supposed to solve this problem. (at least that is the
<impression I received)
<
<What should I do now?
<Robert McDaniel
Install the patch below to the wu-ftpd-2.4.2-beta-8 src directory.
MB
--
System Administrator - FT/MS - Madison WI. <URL:
http://www.ftms.com/>
e-mail:
[email protected]
phone: (608) 273-8262 fax: (608) 273-8719 voice-mail: (800) 426-6488 ext 6293
Visit - <URL:
http://www.cdsnet.net/vidiot/> (Your link to Star Trek and UPN)
*** ftpd.c.dist Thu Oct 26 22:58:59 1995
--- ftpd.c Thu Oct 26 23:08:30 1995
***************
*** 44,45 ****
--- 44,46 ----
#include <sys/types.h>
+ #include <sys/uio.h>
#include <sys/param.h>
***************
*** 130,131 ****
--- 131,134 ----
+ extern int timeout;
+
/* File containing login names NOT to be used on this machine. Commonly used
***************
*** 233,234 ****
--- 236,238 ----
extern int authenticated;
+ static void TPtoolong();
***************
*** 1078,1079 ****
--- 1082,1099 ----
+ static void
+ TPtoolong()
+ {
+ time_t now;
+
+ reply(421,
+ "Timeout (%d seconds): closing control connection.", timeout);
+ (void) time(&now);
+ if (logging) {
+ syslog(LOG_INFO,
+ "User %s timed out after %d seconds at %.24s",
+ (pw ? pw -> pw_name : "unknown"), timeout, ctime(&now));
+ }
+ dologout(1);
+ }
+
int
***************
*** 1992,1993 ****
--- 2012,2014 ----
byte_count = 0;
+ (void) signal(SIGALRM, TPtoolong);
if (size != (off_t) - 1)
***************
*** 2000,2003 ****
fromlen = sizeof(from);
!
s = accept(pdata, (struct sockaddr *) &from, &fromlen);
if (s < 0) {
--- 2021,2025 ----
fromlen = sizeof(from);
! alarm(timeout);
s = accept(pdata, (struct sockaddr *) &from, &fromlen);
+ alarm(0);
if (s < 0) {
***************
*** 2067,2068 ****
--- 2089,2091 ----
{
+
register int c,
***************
*** 2073,2075 ****
--- 2096,2101 ----
+ (void) signal(SIGALRM, TPtoolong);
+
transflag++;
+
if (setjmp(urgcatch)) {
***************
*** 2081,2082 ****
--- 2107,2109 ----
case TYPE_A:
+ alarm(timeout);
while ((c = getc(instr)) != EOF) {
***************
*** 2087,2088 ****
--- 2114,2116 ----
(void) putc('\r', outstr);
+ alarm(timeout);
}
***************
*** 2089,2092 ****
(void) putc(c, outstr);
! }
fflush(outstr);
transflag = 0;
--- 2117,2121 ----
(void) putc(c, outstr);
! }
fflush(outstr);
+ alarm(0);
transflag = 0;
***************
*** 2119,2121 ****
while ((cnt = read(filefd, buf, (u_int) blksize)) > 0 &&
! write(netfd, buf, cnt) == cnt)
byte_count += cnt;
--- 2148,2150 ----
while ((cnt = read(filefd, buf, (u_int) blksize)) > 0 &&
! TPwrite(netfd, buf, cnt) == cnt)
byte_count += cnt;
***************
*** 2139,2140 ****
--- 2168,2170 ----
transflag = 0;
+ alarm(0);
perror_reply(426, "Data connection");
***************
*** 2144,2145 ****
--- 2174,2176 ----
transflag = 0;
+ alarm(0);
perror_reply(551, "Error on input file");
***************
*** 2164,2166 ****
--- 2195,2200 ----
+ (void) signal(SIGALRM, TPtoolong);
+
transflag++;
+
if (setjmp(urgcatch)) {
***************
*** 2173,2175 ****
case TYPE_L:
! while ((cnt = read(fileno(instr), buf, sizeof buf)) > 0) {
if (write(fileno(outstr), buf, cnt) != cnt)
--- 2207,2209 ----
case TYPE_L:
! while ((cnt = TPread(fileno(instr), buf, sizeof buf)) > 0) {
if (write(fileno(outstr), buf, cnt) != cnt)
***************
*** 2189,2190 ****
--- 2223,2225 ----
case TYPE_A:
+ alarm(timeout);
while ((c = getc(instr)) != EOF) {
***************
*** 2191,2194 ****
byte_count++;
! if (c == '\n')
bare_lfs++;
while (c == '\r') {
--- 2226,2231 ----
byte_count++;
! if (c == '\n') {
bare_lfs++;
+ alarm(timeout);
+ }
while (c == '\r') {
***************
*** 2198,2199 ****
--- 2235,2237 ----
(void) putc('\r', outstr);
+ alarm(timeout);
if (c == '\0' || c == EOF)
***************
*** 2206,2207 ****
--- 2244,2246 ----
fflush(outstr);
+ alarm(0);
if (ferror(instr))
***************
*** 2224,2225 ****
--- 2263,2265 ----
transflag = 0;
+ alarm(0);
perror_reply(426, "Data Connection");
***************
*** 2229,2230 ****
--- 2269,2271 ----
transflag = 0;
+ alarm(0);
perror_reply(452, "Error writing file");
***************
*** 3273 ****
--- 3314,3339 ----
#endif /* ULTRIX_AUTH */
+
+
+ int TPwrite(fd, buf, nbyte)
+ int fd;
+ char *buf;
+ int nbyte;
+ {
+ int cnt;
+ alarm(timeout);
+ cnt = write(fd, buf, nbyte);
+ alarm(0);
+ return cnt;
+ }
+
+ int TPread(fd, buf, nbyte)
+ int fd;
+ char *buf;
+ int nbyte;
+ {
+ int cnt;
+ alarm(timeout);
+ cnt = read(fd, buf, nbyte);
+ alarm(0);
+ return cnt;
+ }
From
[email protected] Wed Jan 17 08:22:46 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcadB-000DYvC; Wed, 17 Jan 96 08:22 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA08147; Wed, 17 Jan 1996 10:18:18 -0600
Received: from opus.orgaplus.de by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA07611 for <
[email protected]>; Wed, 17 Jan 1996 10:14:37 -0600
Received: by opus.orgaplus.de (Smail3.1.28.1 #6)
id m0tcbRY-0002FgC; Wed, 17 Jan 96 18:14 MET
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 18:14:40 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From: Frank Neumann <
[email protected]>
To:
[email protected]
Subject: ftpd for linux
In-Reply-To: <Pine.SOL.3.91.960117082058.5595p-100000@kira>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I just try to install ftpd in a linux system.
Before compiling, I made all the things mentioned in the file 'INSTALL'
and now I started 'build lnx' to compile ftpd.
After that I got some error messages and I don't know why and how to
correct it.
I tried to change compiler directives, I changed the makefile. But this
doesn't help and it doesn't help to ignore the warnings ;-).
Here are some messages after starting build:
opus:/usr/src/wu-ftpd-2.4# ./build lnx
make args are :
make opts are :
Linking Makefiles.
ln: Makefile: File exists
ln: config.h: File exists
ln: Makefile: File exists
Making support library.
gcc -O -DDEBUG -I.. -I../support -I/usr/include/bsd -L../support -c
getusershell.c
In file included from getusershell.c:25:
../src/config.h:25: syntax error before `typedef'
../src/config.h:25: parse error before `typedef'
In file included from getusershell.c:29:
/usr/include/sys/stat.h:28: syntax error before `struct'
/usr/include/sys/stat.h:28: parse error before `struct'
make: *** [getusershell.o] Error 1
Making ftpd.
gcc -O -DDEBUG -I.. -I../support -I/usr/include/bsd -L../support -c
ftpd.c -o ftpd.o
In file included from ftpd.c:68:
/usr/include/bsd/signal.h:20: warning: `SIGBUS' redefined
/usr/include/linux/signal.h:16: warning: this is the location of the
previous definition
In file included from ftpd.c:42:
config.h:25: syntax error before `typedef'
config.h:25: parse error before `typedef'
In file included from ftpd.c:46:
/usr/include/sys/stat.h:28: syntax error before `struct'
/usr/include/sys/stat.h:28: parse error before `struct'
ftpd.c:227: parse error before `lostconn'
ftpd.c:227: warning: data definition has no type or storage class
ftpd.c:228: parse error before `randomsig'
ftpd.c:228: warning: data definition has no type or storage class
ftpd.c:229: parse error before `myoob'
ftpd.c:229: warning: data definition has no type or storage class
ftpd.c: In function `main':
ftpd.c:301: too few arguments to function `openlog'
Can someone help me or tell me where I can get help?
Frank Neumann
orgaplus Software GmbH * Stedingerstr. 11 * 74080 Heilbronn * Germany
Tel:+49-7131-38830 * Fax:+49-7131-388329 * E-Mail:
[email protected]
Homepage: www.orgaplus.de
From
[email protected] Wed Jan 17 08:25:50 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcafj-0000YIC; Wed, 17 Jan 96 08:25 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA08420; Wed, 17 Jan 1996 10:20:43 -0600
Received: from huckle.cs.umt.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA07754 for <
[email protected]>; Wed, 17 Jan 1996 10:15:24 -0600
Received: from beaverhead.cs.umt.edu by huckle.cs.umt.edu (AIX 3.2/UCB 5.64/4.03)
id AA12807; Wed, 17 Jan 1996 09:15:21 -0700
Message-Id: <v01530501ad226ec4cc9d@[150.131.15.59]>
Date: Wed, 17 Jan 1996 09:15:21 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (David L. Thompson)
To:
[email protected]
Subject: Re: 2.4.2-beta-8 vsnprintf?
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I also mentioned this earlier about an AIX 3.2.5 machine and still have not
seen a response.
David
>Apologies if I've missed this somewhere...
>
>I'm trying to make beta-8 on a DU (formerly OSF/1) 3.2a machine, but don't
>have vsnprintf (in ftpd.c). Is there a work-around?
>
>Thanks.
>
>Pat Wilson
>
[email protected]
............................................................................
David L. Thompson mailto:
[email protected]
The University of Montana/ITRC The University of Montana/CS Department
Digital Multimedia Specialist Missoula, MT 59812
Work Phone : (406)243-4810
From
[email protected] Wed Jan 17 09:00:13 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcbDV-0006g2C; Wed, 17 Jan 96 09:00 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA12674; Wed, 17 Jan 1996 10:55:42 -0600
Received: from gemini.yars.free.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id KAA12234 for <
[email protected]>; Wed, 17 Jan 1996 10:52:22 -0600
Received: (from ftpadm@localhost) by gemini.yars.free.net (8.6.12/8.6.12) id TAA09954 for
[email protected]; Wed, 17 Jan 1996 19:50:14 +0300
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 19:50:14 +0300
Reply-To:
[email protected]
Sender:
[email protected]
From: FTP_server Administrator <
[email protected]>
To:
[email protected]
Subject: can't enable the compress/tar feature
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I'm trying to enable the compress/tar feature of the wu-ftpd v2.4
and all my attempts totally failed which causes me to apply to you
for an assistance.
I defined the _PATH_EXECPATH variable in the pathnames.h file as
"/bin" which is actually "~ftp/bin" and the _PATH_CVT as
"/usr/local/etc/ftpconversions" according to the INSTALL instruction
file. So, I put all necessary binaries such as ls, compress, tar and
gzip to the ~ftp/bin directory and the ftpconversions file to the
appropriate directory as it was defined. The relevant tar and
compress options in the ftpaccess file are enabled (i.e set as yes for
local, remote class).
The contents of the ftpconversions file is:
:.Z: : :/bin/compress -d -c %s:T_REG|T_ASCII:O_UNCOMPRESS:UNCOMPRESS
: : :.Z:/bin/compress -c %s:T_REG:O_COMPRESS:COMPRESS
:.gz: : :/bin/gunzip -c %s:T_REG|T_ASCII:O_UNCOMPRESS:GUNZIP
: : :.gz:/bin/gzip -9c %s:T_REG:O_COMPRESS:GZIP
: : :.tar:/bin/tar -cf - %s:T_REG|T_DIR:O_TAR:TAR
: : :.tar.gz:/bin/tar -czf - %s:T_REG|T_DIR:O_COMPRESS|O_TAR:TAR+GZIP
I've tried to provide different paths in this file to succeed, but nothing
took effect.
What's wrong? What have I got to do to get that feature to work?
I do need your help
Thank you in advance
Serge Bezzubov <
[email protected]> <
[email protected]>
YTC, Yaroslavl, Russia
From
[email protected] Wed Jan 17 09:48:42 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcbxv-000Fq3C; Wed, 17 Jan 96 09:48 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA18047; Wed, 17 Jan 1996 11:43:35 -0600
Received: from supelec.supelec.fr by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA17377 for <
[email protected]>; Wed, 17 Jan 1996 11:37:29 -0600
Received: by supelec.supelec.fr; id AA10616; Wed, 17 Jan 1996 18:37:15 +0100
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 18:35:00 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Daniel Clar)
To:
[email protected]
Subject: Re: 2.4.2-beta-8 vsnprintf?
X-Vms-To: SMTP%"
[email protected]"
X-Vms-Cc: DC
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>Apologies if I've missed this somewhere...
>
>I'm trying to make beta-8 on a DU (formerly OSF/1) 3.2a machine, but don't
>have vsnprintf (in ftpd.c). Is there a work-around?
>
>Thanks.
>
>Pat Wilson
>
[email protected]
You've just to modify teh Makefile.osf file in support/makefiles and to add
vsnprintf.c and vsnprintf.o to SRCS and OBJS.
Then you remove ftpd from src and bin and type ./build osf.
Daniel
o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
| Daniel Clar e-mail :
[email protected] |
| Computer Operations Manager :
[email protected] |
| Service Informatique Supelec and |
| Plateau de Moulon DECUSF::CLAR_D or
[email protected] |
| 91192 Gif sur Yvette Cedex - France |
| Tel : (33 1) 69 85 14 87 Fax : (33 1) 69 85 12 34 |
o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
From
[email protected] Wed Jan 17 10:42:44 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tccnV-0000XbC; Wed, 17 Jan 96 10:41 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA22972; Wed, 17 Jan 1996 12:35:45 -0600
Received: from puma.jf.intel.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA22230 for <
[email protected]>; Wed, 17 Jan 1996 12:25:15 -0600
Received: from puma.jf.intel.com by puma.jf.intel.com (NTMail 3.00.06) id aa000517 Wed, 17 Jan 96 10:25:25 -0800 (PST)
Message-Id: <2.2.32.19960117102525.0030c978@puma>
Date: Wed, 17 Jan 1996 10:25:25 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From: Darci Chapman <
[email protected]>
To:
[email protected]
Subject: Re: wu-ftpd ported to NT
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender: dchapmax@puma
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Info: Evaluation version at puma.jf.intel.com
X-Info: NTMail v3.00.06 installed 1/6/96
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Paul and others,
I never received a private response and after three requests over the last 10+
days was finally subscribed to the list yesterday. If anyone has any info on
wu-ftpd being ported to NT, please contact me asap. I will summarize to the list
if I get one or more responses. Thanks!
Darci L. Chapman
[email protected]
At 08:36 AM 1/17/96 CDT, Paul Warner wrote:
>Darci-
>
>Did you possibly get a response to this question that was not forwarded to the
>list? I wish I had your answer, but unfortunately I have the same unanswered
>question...
>
>-- Paul Warner
>
[email protected]
>
>
>______________________________ Reply Separator
_________________________________
>Subject: wu-ftpd ported to NT
>Author:
[email protected] at internet
>Date: 1/16/96 11:52 AM
>
>
>Greetings, all,
>
>I'm not currently subscribed to the list so please reply directly
>to me (or at least Cc: me :-)
>
>I'm curious if anyone know if wu-ftpd has been or is in the process
>of being ported to Windows/NT? If yes, who are and/or how can I get in
>touch with the relevant parties?
>
>Thanks!
>
>Cheers,
>...dlc...
>
>PS I've tried to subscribe twice, no luck; read the FAQ at
>
http://www.hvu.nl/~koos/wu-ftpd-faq.html and tried the archives
>at
http://freeway.oact.hq.nasa.gov/wuarchive.html but the
>search link is not working and there are no links to the archive
>beyond April '95...
>
>
>
>
>
>
From
[email protected] Wed Jan 17 11:01:37 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcd6t-000FJ9C; Wed, 17 Jan 96 11:01 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA24734; Wed, 17 Jan 1996 12:57:09 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA23349 for <
[email protected]>; Wed, 17 Jan 1996 12:40:21 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA03650; Wed, 17 Jan 1996 10:40:15 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA06247; Wed, 17 Jan 1996 10:36:26 +0800
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 10:36:26 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: dir command
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> Bill Townsley wrote:
> >
> > I have wu-ftpd 2.4 on a Sun SPARC running Solaris 2.4. I am
> > unable to get the "dir" command to work under the anonymous login.
> > Logins by specific users works fine, but the anonymous login is
> > unable to do a dir. For example, when logging in as anonymous, the
> > "ls" command outputs:
> >
Stuff deleted...
Nathan Sowatskey wrote:
>
> There must exist a ~ftp/usr/lib directory which must contain:
>
> ld.so.1 libc.so.1 libdl.so.1 libintl.so.1 libw.so.1
>
Well, I have the same problem too, and I allready have all that (and more)
in ~ftp/usr/lib. It is all read/execute to the world, and the directories
are also a+rx mode too. There must be something else wrong. I've managed
to track the problem down to where it actually does the call, but have not
been able to track it down from there. (Lack of time).
I just didn't mention it before because I was hoping someone else would
mention an FAQ, and I wouldn't look too much like a fool. If I'm not the
only one with this problem, then I don't feel too bad.
>>>Ericw
From
[email protected] Wed Jan 17 11:33:05 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcdaB-000FkhC; Wed, 17 Jan 96 11:31 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA27555; Wed, 17 Jan 1996 13:26:52 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA27018 for <
[email protected]>; Wed, 17 Jan 1996 13:22:38 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id UAA11270; Wed, 17 Jan 1996 20:23:01 +0100
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 20:23:01 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: can't enable the compress/tar feature
In-Reply-To: <
[email protected]> from "FTP_server Administrator" at Jan 17, 96 07:50:14 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting FTP_server Administrator, who wrote :
> I'm trying to enable the compress/tar feature of the wu-ftpd v2.4
> and all my attempts totally failed which causes me to apply to you
> for an assistance.
> I defined the _PATH_EXECPATH variable in the pathnames.h file as
> "/bin" which is actually "~ftp/bin" and the _PATH_CVT as
> "/usr/local/etc/ftpconversions" according to the INSTALL instruction
Rebuild your wu-ftpd _NOW_ with _PATH_EXECPATH set to something else
then /bin.
Check the Faq for wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html
to read why.
You just created a security hole.
In general : there are absolute paths in ftpconversions just so the
tar/compress feature works without setting whole /bin dirs open.
To make tar/compress/etc work, you probably need some shared libraries
specific to your OS.
Grtx. KH
--
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Wed Jan 17 11:41:23 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcdi4-00077bC; Wed, 17 Jan 96 11:39 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA28434; Wed, 17 Jan 1996 13:35:43 -0600
Received: from longwood.cs.ucf.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA27956 for <
[email protected]>; Wed, 17 Jan 1996 13:30:17 -0600
Received: by longwood.cs.ucf.edu id AA16794
(5.65c/IDA-1.4.4 for
[email protected]); Wed, 17 Jan 1996 14:30:02 -0500
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 14:30:02 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Denise Tjong <
[email protected]>
To:
[email protected]
Subject: Re: dir command
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi,
I had the same problem in Solaris2.4 also. Somehow it got fixed when I
made sure I had the right files in ~ftp/dev.
I have tcp, zero, and udp in ~ftp/dev.
Hope this helps,
Denise
From
[email protected] Wed Jan 17 12:02:23 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tce3h-000D6EC; Wed, 17 Jan 96 12:02 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA00440; Wed, 17 Jan 1996 13:57:45 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA29895 for <
[email protected]>; Wed, 17 Jan 1996 13:53:13 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA04026; Wed, 17 Jan 1996 11:53:04 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA06307; Wed, 17 Jan 1996 11:49:13 +0800
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 11:49:13 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: dir command
Content-Type: X-sun-attachment
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
----------
X-Sun-Data-Type: text
X-Sun-Data-Description: text
X-Sun-Data-Name: text
X-Sun-Charset: us-ascii
X-Sun-Content-Lines: 10
>
> I had the same problem in Solaris2.4 also. Somehow it got fixed when I
> made sure I had the right files in ~ftp/dev.
>
> I have tcp, zero, and udp in ~ftp/dev.
Nope, tried that a few weeks ago. Thanks though.
>>Ericw
(For the curious, what follows is the ls -lR ~ftp.)
----------
X-Sun-Data-Type: default
X-Sun-Data-Description: default
X-Sun-Data-Name: ls.ftp
X-Sun-Charset: us-ascii
X-Sun-Content-Lines: 78
total 7
lrwxrwxrwx 1 root 7 Jan 4 16:48 bin -> usr/bin
drwxrwxrwx 2 root 512 Jan 4 17:04 dev/
dr-xr-xr-x 3 root 512 Jan 5 09:34 etc/
drwxrwxrwx 2 root 512 Jan 3 10:34 incoming/
drwxrwxrwx 2 root 512 Jan 4 16:40 pub/
drwxr-xr-x 4 root 512 Jan 4 16:48 usr/
-rwxr-xr-x 1 root 221 Jan 4 16:06 welcome.msg*
/home/ftp/dev:
total 0
crwxrwxrwx 1 root 13, 2 Jan 3 10:04 null*
crw-rw-rw- 1 root 11, 42 Jan 3 10:05 tcp
crw-rw-rw- 1 root 105, 1 Jan 3 10:06 ticotsord
crw-rw-rw- 1 root 11, 41 Jan 3 10:06 udp
crw-rw-rw- 1 root 13, 12 Jan 4 16:55 zero
/home/ftp/etc:
total 2
drwxr-xr-x 2 root 512 Jan 5 09:35 lib/
-r--r--r-- 1 root 73 Jan 3 10:46 passwd
/home/ftp/etc/lib:
total 202
-rwxr-xr-x 1 root 42580 Jan 5 09:35 ia_scheme.so*
-rwxr-xr-x 1 root 97804 Jan 5 09:35 ld.so.1*
-rwxr-xr-x 1 root 3492 Jan 5 09:35 libdl.so.1*
-rwxr-xr-x 1 root 17740 Jan 5 09:35 nss_files.so.1*
-rwxr-xr-x 1 root 42580 Jan 5 09:35 unix_scheme.so.1*
/home/ftp/incoming:
total 2
-rwxrwxrwx 1 ftp 1821 Jan 3 10:34 hosts*
/home/ftp/pub:
total 176
-rw-r--r-- 1 root 169268 Jan 4 16:40 hsfsboot
/home/ftp/usr:
total 2
drwxr-xr-x 3 root 512 Jan 4 16:48 bin/
drwxr-xr-x 2 root 512 Jan 3 10:13 lib/
/home/ftp/usr/bin:
total 84
-r-xr-xr-x 1 root 14696 Jan 3 10:45 compress*
drwxr-xr-x 2 root 512 Jan 3 11:22 ftp-exec/
-r-xr-xr-x 1 root 20040 Jan 3 10:13 ls*
-r-xr-xr-x 1 root 48380 Jan 3 10:45 tar*
/home/ftp/usr/bin/ftp-exec:
total 83
-r-xr-xr-x 1 root 14696 Jan 3 11:14 compress*
-r-xr-xr-x 1 root 20040 Jan 3 11:14 ls*
-r-xr-xr-x 1 root 48380 Jan 3 11:14 tar*
/home/ftp/usr/lib:
total 2743
-rwxr-xr-x 1 root 24576 Jan 3 10:13 ld.so*
-rwxr-xr-x 1 root 97804 Jan 3 10:13 ld.so.1*
-rwxr-xr-x 1 root 621628 Jan 3 10:13 libc.so*
-rwxr-xr-x 1 root 621628 Jan 3 10:13 libc.so.1*
-rwxr-xr-x 1 root 3492 Jan 3 10:13 libdl.so*
-rwxr-xr-x 1 root 3492 Jan 3 10:13 libdl.so.1*
-rwxr-xr-x 1 root 13516 Jan 3 10:13 libintl.so*
-rwxr-xr-x 1 root 13516 Jan 3 10:13 libintl.so.1*
-rwxr-xr-x 1 root 508896 Jan 3 10:13 libnsl.so*
-rwxr-xr-x 1 root 508896 Jan 3 10:13 libnsl.so.1*
-rwxr-xr-x 1 root 73068 Jan 3 10:13 libsocket.so*
-rwxr-xr-x 1 root 73068 Jan 3 10:13 libsocket.so.1*
-rwxr-xr-x 1 root 41704 Jan 3 10:13 libw.so*
-rwxr-xr-x 1 root 41704 Jan 3 10:13 libw.so.1*
-rwxr-xr-x 1 root 10796 Jan 3 10:13 nss_dns.so.1*
-rwxr-xr-x 1 root 18496 Jan 3 10:13 nss_files.so.1*
-rwxr-xr-x 1 root 25840 Jan 3 10:13 nss_nis.so.1*
-rwxr-xr-x 1 root 29376 Jan 3 10:13 nss_nisplus.so.1*
-rwxr-xr-x 1 root 9436 Jan 3 10:13 straddr.so*
-rwxr-xr-x 1 root 9436 Jan 3 10:13 straddr.so.2*
From
[email protected] Wed Jan 17 12:04:14 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tce5U-000FpTC; Wed, 17 Jan 96 12:04 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA00647; Wed, 17 Jan 1996 13:59:51 -0600
Received: from eagle by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA00274 for <
[email protected]>; Wed, 17 Jan 1996 13:56:16 -0600
Received: from imad75.is.lmsc.lockheed.com. by eagle (8.6.11/DEC-Ultrix/4.3)
id LAA17544; Wed, 17 Jan 1996 11:50:32 -0800
Received: by imad75.is.lmsc.lockheed.com. (4.1/SMI-4.1)
id AA15842; Wed, 17 Jan 96 11:56:03 PST
Message-Id: <
[email protected].>
Date: Wed, 17 Jan 96 11:56:03 PST
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Shanelec N.J. (Nathan))
To:
[email protected]
Subject: Re: dir command
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> Bill Townsley wrote:
> >
> > I have wu-ftpd 2.4 on a Sun SPARC running Solaris 2.4. I am
> > unable to get the "dir" command to work under the anonymous login.
> > Logins by specific users works fine, but the anonymous login is
> > unable to do a dir. For example, when logging in as anonymous, the
> > "ls" command outputs:
> >
Stuff deleted...
Nathan Sowatskey wrote:
>
> There must exist a ~ftp/usr/lib directory which must contain:
>
> ld.so.1 libc.so.1 libdl.so.1 libintl.so.1 libw.so.1
>
>>>Ericw wrote:
>Well, I have the same problem too, and I allready have all that (and more)
>in ~ftp/usr/lib. It is all read/execute to the world, and the directories
>are also a+rx mode too. There must be something else wrong. I've managed
>to track the problem down to where it actually does the call, but have not
>been able to track it down from there. (Lack of time).
I was able to get the dir command to work when I followed these instructions
in the INSTALL file.
6. Under Solaris 2.1, you need to have the following in ~ftp/dev
crw-rw-rw- 1 root 11, 42 Mar 24 17:00 tcp
cr--r--r-- 1 root 13, 12 Mar 24 16:23 zero
Good Luck
--------------------------------------------------------------------------------
= Nathan Shanelec =
= Lockheed Martin Missiles & Space =
= Engineering Data Services Organization 46-30 Building 531 =
= email:
[email protected] =
= phone: (408) 743-0121 =
--------------------------------------------------------------------------------
From
[email protected] Wed Jan 17 13:11:42 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcf8o-000Fk7C; Wed, 17 Jan 96 13:11 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA06170; Wed, 17 Jan 1996 15:04:42 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA05338 for <
[email protected]>; Wed, 17 Jan 1996 14:53:37 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA04152; Wed, 17 Jan 1996 12:53:32 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA06358; Wed, 17 Jan 1996 12:49:26 +0800
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 12:49:26 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: dir command
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> > Bill Townsley wrote:
> > >
> > > I have wu-ftpd 2.4 on a Sun SPARC running Solaris 2.4. I am
> > > unable to get the "dir" command to work under the anonymous login.
> > > Logins by specific users works fine, but the anonymous login is
> > > unable to do a dir. For example, when logging in as anonymous, the
> > > "ls" command outputs:
> > >
> Stuff deleted...
>
> Nathan Sowatskey wrote:
> >
> > There must exist a ~ftp/usr/lib directory which must contain:
> >
> > ld.so.1 libc.so.1 libdl.so.1 libintl.so.1 libw.so.1
> >
>
> >>>Ericw wrote:
> >Well, I have the same problem too, and I allready have all that (and more)
> >in ~ftp/usr/lib. It is all read/execute to the world, and the directories
> >are also a+rx mode too. There must be something else wrong. I've managed
> >to track the problem down to where it actually does the call, but have not
> >been able to track it down from there. (Lack of time).
>
Nathan Shanelec Wrote:
> I was able to get the dir command to work when I followed these instructions
> in the INSTALL file.
>
> 6. Under Solaris 2.1, you need to have the following in ~ftp/dev
> crw-rw-rw- 1 root 11, 42 Mar 24 17:00 tcp
> cr--r--r-- 1 root 13, 12 Mar 24 16:23 zero
>
Yep, tried that, then I tried what was in the man page on my Solaris 2.4 system
for setting up anon ftp. That failed too.
Somebody must have this running under Solaris 2.4. Could one of you kind souls
please send me an ls -lR of ~ftp. Maybe I can figure it out from there.
>>Ericw
(I hate taking up bandwidth like this...)
(BTW: Im using Wu-ftp version 2.4, Solaris 2.4, The Sun Sparcworks compiler.)
From
[email protected] Wed Jan 17 14:20:52 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcgDg-000Fq3C; Wed, 17 Jan 96 14:20 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA13155; Wed, 17 Jan 1996 16:16:20 -0600
Received: from ftp.paradigm.co.nz by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id QAA12469 for <
[email protected]>; Wed, 17 Jan 1996 16:09:36 -0600
Received: from keith (keith.paradigm.co.nz [202.37.254.6]) by ftp.paradigm.co.nz (8.6.9/8.6.9) with SMTP id LAA18405 for <
[email protected]>; Thu, 18 Jan 1996 11:08:12 +1300
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 11:26:53 +1300
Reply-To:
[email protected]
Sender:
[email protected]
From: "Keith Smith" <
[email protected]>
To:
[email protected]
Subject: Re: Lingering ftp connections
X-mailer: Pegasus Mail for Windows (v2.23)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On 17 Jan 96, Vidiot wrote:
> <I have set up wu-ftp for my system, and have been having lingering ftp
>
> Install the patch below to the wu-ftpd-2.4.2-beta-8 src directory.
>
Have you sent a copy of that patch to Stan?
------------
Keith Smith
[email protected]
Paradigm Technology Limited Senior Software Engineer
PO Box 10-268 +64 (4) 495-1000 (voice)
Wellington, New Zealand +64 (4) 405-1003 (fax)
Finger
[email protected] for PGP key
[all required disclaimers apply]
From
[email protected] Wed Jan 17 16:16:17 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tci1W-0000YAC; Wed, 17 Jan 96 16:16 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA22136; Wed, 17 Jan 1996 18:11:38 -0600
Received: from bruin.LCS.MIT.EDU by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA21781 for <
[email protected]>; Wed, 17 Jan 1996 18:06:19 -0600
Received: by bruin.LCS.MIT.EDU (4.1/SMI-4.1)
id AA05028; Wed, 17 Jan 96 19:06:12 EST
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 19:06:12 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Ed Hurley <
[email protected]>
To:
[email protected]
Subject: Re: dir command
In-Reply-To: Your message of "Wed, 17 Jan 1996 12:49:26 +0800."
<
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
is anyone keeping a mail archive of this list?
if so, how can i access it?
thanks,
-ed
From
[email protected] Wed Jan 17 19:25:16 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcky0-0006lXC; Wed, 17 Jan 96 19:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id VAA02302; Wed, 17 Jan 1996 21:20:24 -0600
Received: from smtp1.cerf.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id VAA02123 for <
[email protected]>; Wed, 17 Jan 1996 21:18:01 -0600
Received: from mansion.thepalace.com (mansion.thepalace.com [206.17.52.2]) by smtp1.cerf.net (8.6.10/8.6.9) with SMTP id QAA02982 for <
[email protected]>; Wed, 17 Jan 1996 16:17:07 -0800
Received: from hall.thepalace.com by mansion.thepalace.com; (5.65/1.1.8.2/19Sep95-0226PM)
id AA09193; Wed, 17 Jan 1996 16:21:09 -0800
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 16:23:19 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Robert McDaniel)
To:
[email protected]
Subject: Re: dir command
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>Yep, tried that, then I tried what was in the man page on my Solaris 2.4 system
>for setting up anon ftp. That failed too.
>
>Somebody must have this running under Solaris 2.4. Could one of you kind souls
>please send me an ls -lR of ~ftp. Maybe I can figure it out from there.
>
>>>Ericw
>
>(I hate taking up bandwidth like this...)
>(BTW: Im using Wu-ftp version 2.4, Solaris 2.4, The Sun Sparcworks compiler.)
This may not help because I'm on a Dec Alpha running osf, but I also had a
problem getting dir to work when I first setup wu-ftp. I had copied over
everything correctly, but dir was not working.
I don't remember where I found the answer, but it had to do with two
versions of ls on my system, one in /usr/bin/ and one in /sbin/. I had
copied the one in /usr/bin (which was much smaller by the way). When I
changed to the one from /sbin, dir worked correctly.
Just a thought.
_______________________
Robert McDaniel
Webmaster
The Palace Group
Time Warner
www.thepalace.com
[email protected]
(818) 295 6624
_______________________
From
[email protected] Wed Jan 17 19:52:30 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tclOj-0006lXC; Wed, 17 Jan 96 19:52 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id VAA03776; Wed, 17 Jan 1996 21:48:14 -0600
Received: from wire.paladin.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id VAA03699 for <
[email protected]>; Wed, 17 Jan 1996 21:47:30 -0600
Received: (cjwoods@localhost) by wire.paladin.com (8.6.8/8.6.5) id WAA18321; Wed, 17 Jan 1996 22:42:10 -0500
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 22:42:09 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Chris Woods <
[email protected]>
To: Robert McDaniel <
[email protected]>
Cc:
[email protected]
Subject: Re: dir command
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> From Ericw:
>
> >Somebody must have this running under Solaris 2.4. Could one of you kind souls
> >please send me an ls -lR of ~ftp. Maybe I can figure it out from there.
> >
> >>>Ericw
>From Mr. McDaniel:
[...]
> I don't remember where I found the answer, but it had to do with two
> versions of ls on my system, one in /usr/bin/ and one in /sbin/. I had
> copied the one in /usr/bin (which was much smaller by the way). When I
> changed to the one from /sbin, dir worked correctly.
I dunno if this was already suggested, but compile ls statically. This is
my guess as to the explanation for the fact that the version of ls that
works for Mr. McDaniel is much bigger than the one that doesn't work...
You can get GNU ls from
ftp://prep.ai.mit.edu/pub/gnu/fileutils-3.12.tar.gz.
Chris Woods Systems Administrator
[email protected] (office) Paladin Computing Solutions
[email protected] (home)
http://www.paladin.com
"A computer without Windows is like a fish without a bicycle."
From
[email protected] Thu Jan 18 00:19:56 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcpZZ-0000DXC; Thu, 18 Jan 96 00:19 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA15580; Thu, 18 Jan 1996 02:13:45 -0600
Received: from wilfer2.cdg.chalmers.se by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id CAA15353 for <
[email protected]>; Thu, 18 Jan 1996 02:07:00 -0600
Received: from wilfer5.cdg.chalmers.se by wilfer2.cdg.chalmers.se (8.6.12/3.14+gl) id IAA01380; Thu, 18 Jan 1996 08:06:57 GMT
Received: by wilfer5.cdg.chalmers.se (5.x/3.14+gl) id AA03662; Thu, 18 Jan 1996 09:06:56 +0100
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 09:06:56 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From: Lars-Erik Johansson <
[email protected]>
To:
[email protected]
Subject: Re: can't enable the compress/tar feature
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=ISO-8859-1
Content-Transfer-Encoding: QUOTED-PRINTABLE
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Wed, 17 Jan 1996, FTP_server Administrator wrote:
> Date: Wed, 17 Jan 1996 19:50:14 +0300
> From: FTP_server Administrator <
[email protected]>
> To:
[email protected]
> Subject: can't enable the compress/tar feature
>=20
> I'm trying to enable the compress/tar feature of the wu-ftpd v2.4
> and all my attempts totally failed which causes me to apply to you
> for an assistance.
> I defined the _PATH_EXECPATH variable in the pathnames.h file as
> "/bin" which is actually "~ftp/bin" and the _PATH_CVT as
> "/usr/local/etc/ftpconversions" according to the INSTALL instruction
> file. So, I put all necessary binaries such as ls, compress, tar and
> gzip to the ~ftp/bin directory and the ftpconversions file to the
> appropriate directory as it was defined. The relevant tar and
> compress options in the ftpaccess file are enabled (i.e set as yes for
> local, remote class).
>=20
> The contents of the ftpconversions file is:
>=20
> :.Z: : :/bin/compress -d -c %s:T_REG|T_ASCII:O_UNCOMPRESS:UNCOMPRESS
> : : :.Z:/bin/compress -c %s:T_REG:O_COMPRESS:COMPRESS
> :.gz: : :/bin/gunzip -c %s:T_REG|T_ASCII:O_UNCOMPRESS:GUNZIP
> : : :.gz:/bin/gzip -9c %s:T_REG:O_COMPRESS:GZIP
> : : :.tar:/bin/tar -cf - %s:T_REG|T_DIR:O_TAR:TAR
> : : :.tar.gz:/bin/tar -czf - %s:T_REG|T_DIR:O_COMPRESS|O_TAR:TAR+GZIP
>=20
> I've tried to provide different paths in this file to succeed, but nothin=
g
> took effect.
>=20
> What's wrong? What have I got to do to get that feature to work?
There is an error in the example file doc/examples/ftpaccess. This error=20
disables compress and tar:
It reads
compress yes local remote
tar yes local remote
According to the man page on ftpaccess the syntax of compress is
compress <yes|no> <classglob> [<classglob>...]
In the example file there is no class called local or remote. The only=20
class defined is all. TO enable compress in the example file you need to=20
change the compress line to:
compress yes all
And the tar line to
tar yes all
/lej
[email protected] Lars-Erik Johansson
Tel: +46 31 772 16 66 Datan=E4tgruppen, Chalmers
Fax: +46 31 772 36 63 412 96 G=F6teborg
---
"The number of UNIX installations has grown to 10, with more
expected."
-- <UNIX Programmer's Manual>, 2nd Ed., June 1972
From
[email protected] Thu Jan 18 00:38:40 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcpqI-000FGSC; Thu, 18 Jan 96 00:37 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA16236; Thu, 18 Jan 1996 02:32:49 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id CAA15505 for <
[email protected]>; Thu, 18 Jan 1996 02:11:15 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id KAA13575; Thu, 18 Jan 1996 10:11:15 -0200
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 10:11:14 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: dir command
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
There has been a great deal posted re: the dir and ls commands on
Solaris.
The dir and ls commands actually work differently; why I don't know. I
don't believe that the linking, static or otherwise, is relevant for ls.
I have discovered that most PC clients will use the dir command, but
that a ftp from a unix or ftp shell will usually employ the ls command.
It is the dir command that needs the static libraries, and the the ls
command that needs the dev entries.
If you have ls working this does not mean that dir works.
Everything works fine for me and here are the relevant parts of the
listing for my setup:
total 10
d--x--x--x 2 root other 512 Dec 27 13:29 bin
drwxr-xr-x 2 root other 512 Dec 27 15:08 dev
drwxr-xr-x 3 root other 512 Dec 27 13:53 etc
drwxrwxrwx 4 ftp other 512 Jan 2 13:41 pub
drwxr-xr-x 3 root other 512 Dec 28 17:28 usr
/bin:
total 42
lrwxrwxrwx 1 root other 13 Dec 27 13:29 ftp-exec ->
/bin/ftp-exec
---x--x--x 1 root other 20040 Dec 27 11:24 ls
/dev:
total 0
crw-r--r-- 1 root other 13, 2 Dec 27 15:07 null
crw-r--r-- 1 root other 11, 42 Dec 27 13:50 tcp
crw-r--r-- 1 root other 11, 9 Dec 27 15:07 ticotsord
crw-r--r-- 1 root other 11, 41 Dec 27 15:08 udp
crw-r--r-- 1 root other 13, 12 Dec 27 13:51 zero
/usr:
total 2
dr-xr-xr-x 2 root other 512 Dec 28 17:28 lib
/usr/lib:
total 1542
-r-xr-xr-x 1 root other 97804 Dec 28 17:26 ld.so.1
-r-xr-xr-x 1 root other 621628 Dec 28 17:26 libc.so.1
-r-xr-xr-x 1 root other 3492 Dec 28 17:26 libdl.so.1
-r-xr-xr-x 1 root other 13516 Dec 28 17:26 libintl.so.1
-r-xr-xr-x 1 root other 41704 Dec 28 17:26 libw.so.1
Notice in particular the entries for dev and lib.
I hope that this will help all those people wandering in the dark.
Regards
Nathan
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Thu Jan 18 00:56:33 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcq90-000FJ9C; Thu, 18 Jan 96 00:56 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA16909; Thu, 18 Jan 1996 02:52:18 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id CAA16754 for <
[email protected]>; Thu, 18 Jan 1996 02:48:15 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id JAA15425; Thu, 18 Jan 1996 09:48:39 +0100
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 09:48:39 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: dir command
In-Reply-To: <
[email protected]> from "Nathan Sowatskey x4758" at Jan 18, 96 10:11:14 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Nathan Sowatskey x4758, who wrote :
> The dir and ls commands actually work differently; why I don't know. I
> don't believe that the linking, static or otherwise, is relevant for ls.
'pure' ls is done as an internal command in wu-ftpd, without starting
anything external. This saves on process starting.
Offcourse this means the ls command (or better : the ftp command that
starts ls) will 'allways' work and that dir is a bit more sensitive.
Grtx. KH
--
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Thu Jan 18 05:31:11 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcuQb-000DDYC; Thu, 18 Jan 96 05:30 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA23950; Thu, 18 Jan 1996 07:26:43 -0600
Received: from hermes.bcm.tmc.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id HAA23682 for <
[email protected]>; Thu, 18 Jan 1996 07:22:06 -0600
Received: from BCM.TMC.EDU (
[email protected] [128.249.2.1]) by hermes.bcm.tmc.edu (8.7/8.6.11) with SMTP id HAA08786 for <
[email protected]>; Thu, 18 Jan 1996 07:22:03 -0600 (CST)
Received: from KIRA.SSCTR.BCM.TMC.EDU (KIRA.SSCTR.BCM.TMC.EDU [128.249.16.12]) by BCM.TMC.EDU (8.6.11/8.6.6) with SMTP id HAA10578 for <
[email protected]>; Thu, 18 Jan 1996 07:22:02 -0600
Received: (from david@localhost) by KIRA.SSCTR.BCM.TMC.EDU (8.6.8.1/8.6.6) id HAA00340; Thu, 18 Jan 1996 07:22:00 -0600
Message-Id: <Pine.SOL.3.91.960118071448.332A-100000@kira>
Date: Thu, 18 Jan 1996 07:21:59 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "David A. Smith" <
[email protected]>
To:
[email protected]
Subject: Re: dir command
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Sender: david@kira
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Thu, 18 Jan 1996, Nathan Sowatskey x4758 wrote:
> There has been a great deal posted re: the dir and ls commands on
> Solaris.
This "problem" is not specfic to Solaris, but I belive to every UNIX
that supports setroot.
> The dir and ls commands actually work differently; why I don't know. I
> don't believe that the linking, static or otherwise, is relevant for ls.
When you just send an "ls" you trigger the built in command "NLIST" which
does not use any executable at all. You can get that standard listing
WITHOUT any ls binary at all. To see this use the standard UNIX ftp with
-vd (verbose debugging) which will show what is really going on.
If you use the "dir" command (ls -l really) or send any switches ls (ie
-F, etc) NLIST cannot understand them so it tries to run the "ls"
binary. Since wuftp does a setroot on anonymous connections to restrict
access to only the ~ftp/ directory you must either have all the libaries
in ~ftp/lib or wherever ls expects them from when it was compiled or you
must compile it staticly. In my option static compiling is both safer
and easier.
This is also why links to files or directories outside of the ~ftp/
directory do not work under wuftp.
> I have discovered that most PC clients will use the dir command, but
> that a ftp from a unix or ftp shell will usually employ the ls command.
As do web browsers and most ftp clients with the exception of standard
UNIX ftp.
> If you have ls working this does not mean that dir works.
Correct.
-----------------------------------------------------------------------
David A. Smith | Baylor College of Medicine
Systems Services | Enterprise Services, MEDT1103
(713) 798-8469 | One Baylor Plaza
Internet:
[email protected] | Houston, TX 77030
From
[email protected] Thu Jan 18 08:38:57 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcxMN-000FE0C; Thu, 18 Jan 96 08:38 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA05722; Thu, 18 Jan 1996 10:34:30 -0600
Received: from nasirc.hq.nasa.gov by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id KAA05558 for <
[email protected]>; Thu, 18 Jan 1996 10:31:51 -0600
Received: from localhost.hq.nasa.gov by nasirc.hq.nasa.gov (8.6.10/1.35)
id LAA08924; Thu, 18 Jan 1996 11:31:32 -0500
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 11:31:30 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Fred Blonder <
[email protected]>
To: Ed Hurley <
[email protected]>
Cc:
[email protected]
Subject: Wuarchive ftpd mailing list archive
In-Reply-To: Your message of "Wed, 17 Jan 1996 19:06:12 EST."
<
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Message-Id: <
[email protected]>
Date: Wed, 17 Jan 1996 19:06:12 -0500
From: Ed Hurley <
[email protected]>
To:
[email protected]
is anyone keeping a mail archive of this list?
if so, how can i access it?
thanks,
-ed
There's a nice one at:
http://freeway.oact.hq.nasa.gov/wuarchive.html
From
[email protected] Thu Jan 18 09:05:23 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcxko-000FHHC; Thu, 18 Jan 96 09:04 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA07820; Thu, 18 Jan 1996 10:59:51 -0600
Received: from noah.smumn.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA07609 for <
[email protected]>; Thu, 18 Jan 1996 10:57:41 -0600
Received: by noah.smumn.edu (5.64/A/UX-3.00)
id AA00230; Thu, 18 Jan 96 11:05:07 CST
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 11:05:07 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Kevin A. Hoogheem" <
[email protected]>
To:
[email protected]
Subject: Login Messages
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I was wondering if there is a nice paper that show what all
can go into the initial login message so that you can show
the current date or what user number they are out of the total
thanks
Kevin Hoogheem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Kevin A. Hoogheem Saint Marys Press
Asst. Network Admin. Winona Minnesota
507-457-7915
[email protected]
http://wwwsmp.smumn.edu/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
From
[email protected] Thu Jan 18 09:30:49 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcyAL-000CqYC; Thu, 18 Jan 96 09:30 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA10313; Thu, 18 Jan 1996 11:25:57 -0600
Received: from puma.jf.intel.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA09643 for <
[email protected]>; Thu, 18 Jan 1996 11:19:28 -0600
Received: from puma.jf.intel.com by puma.jf.intel.com (NTMail 3.00.06) id aa000540 Thu, 18 Jan 96 09:19:14 -0800 (PST)
Message-Id: <2.2.32.19960118091913.002f48b4@puma>
Date: Thu, 18 Jan 1996 09:19:13 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From: Darci Chapman <
[email protected]>
To:
[email protected], Ed Hurley <
[email protected]>
Subject: Re: Wuarchive ftpd mailing list archive
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender: dchapmax@puma
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Info: Evaluation version at puma.jf.intel.com
X-Info: NTMail v3.00.06 installed 1/6/96
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
At 11:31 AM 1/18/96 -0500, Fred Blonder wrote:
> From: Ed Hurley <
[email protected]>
> is anyone keeping a mail archive of this list?
>
> if so, how can i access it?
>
> thanks,
> -ed
>
>There's a nice one at:
>
>
http://freeway.oact.hq.nasa.gov/wuarchive.html
>
Maybe I'm missing something (or maybe Netscape beta 5 is); I can't
find anything at the above site beyond April 95 and when I try
the search link, I get "document contains no data" dialog.
If I had the disk space on a system outside a firewall and running
hypermail, I'd offer to start a new archive...
Cheers,
..dlc...
From
[email protected] Thu Jan 18 09:55:18 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tcyY0-000DLRC; Thu, 18 Jan 96 09:54 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA13104; Thu, 18 Jan 1996 11:50:35 -0600
Received: from red.isearch.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id LAA12941 for <
[email protected]>; Thu, 18 Jan 1996 11:49:23 -0600
Received: (from tim@localhost) by red.isearch.com (8.6.10/8.6.10) id JAA03655 for
[email protected]; Thu, 18 Jan 1996 09:49:21 -0800
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 09:49:21 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Tim Capps <
[email protected]>
To:
[email protected]
Subject: Re: dir command
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>> There has been a great deal posted re: the dir and ls commands on
>> Solaris.
That has to be the understatement of the year so far.
>This "problem" is not specfic to Solaris, but I belive to every UNIX
>that supports setroot.
True. Since a big percentage of the traffic on this list has to do
with various folks trying to get dir working on various platforms, perhaps
this indicates a fundamental design flaw in the way dir works.
Nobody has any trouble with ls, as the code to support that command is
built in to wu_ftpd. Suggestion: why not build the code in for dir
too - it's not that difficult, and it would save a hell of a lot of
wasted time on this problem.
Tim
From
[email protected] Thu Jan 18 10:48:30 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tczNd-0000DXC; Thu, 18 Jan 96 10:48 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA17624; Thu, 18 Jan 1996 12:43:56 -0600
Received: from gemini.yars.free.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA16824 for <
[email protected]>; Thu, 18 Jan 1996 12:35:30 -0600
Received: (from ftpadm@localhost) by gemini.yars.free.net (8.6.12/8.6.12) id VAA26978 for
[email protected]; Thu, 18 Jan 1996 21:34:10 +0300
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 21:34:10 +0300
Reply-To:
[email protected]
Sender:
[email protected]
From: FTP_server Administrator <
[email protected]>
To:
[email protected]
Subject: Re: dir command
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> Nathan Shanelec Wrote:
>
> > I was able to get the dir command to work when I followed these instructions
> > in the INSTALL file.
> >
> > 6. Under Solaris 2.1, you need to have the following in ~ftp/dev
> > crw-rw-rw- 1 root 11, 42 Mar 24 17:00 tcp
> > cr--r--r-- 1 root 13, 12 Mar 24 16:23 zero
> >
>
> Yep, tried that, then I tried what was in the man page on my Solaris 2.4 system
> for setting up anon ftp. That failed too.
>
> Somebody must have this running under Solaris 2.4. Could one of you kind souls
> please send me an ls -lR of ~ftp. Maybe I can figure it out from there.
>
> >>Ericw
>
> (I hate taking up bandwidth like this...)
> (BTW: Im using Wu-ftp version 2.4, Solaris 2.4, The Sun Sparcworks compiler.)
>
I have wu-ftpd 2.4 running under Solaris 2.4 and as far as I remember there was
such problem until I created the ~ftp/dev directory and all necessary devices.
The gcc has been used to compile ftpd.
Anyway, here is ls -lR output of ~ftp (only system directories):
~ftp/bin:
total 1032
-r-x--x--x 1 ftpadm root 118860 Jan 8 18:56 compress
-r-x--x--x 1 ftpadm root 209080 Jan 16 15:20 gzip
-r-x--x--x 1 ftpadm root 20040 Aug 17 17:54 ls
-r-x--x--x 1 ftpadm root 144560 Jan 8 18:58 tar
~ftp/dev:
total 4
dr-x--x--x 2 ftpadm root 512 Aug 18 21:28 .
drwxr-xr-x 8 ftpadm root 512 Jan 18 02:03 ..
crwxr--r-- 1 ftpadm root 11, 42 Aug 18 21:28 tcp
crwxr--r-- 1 ftpadm root 105, 1 Aug 18 21:28 ticotsord
crwxr--r-- 1 ftpadm root 11, 41 Aug 18 21:28 udp
crwxr--r-- 1 ftpadm root 13, 12 Aug 18 21:27 zero
~ftp/etc:
total 12
dr-x--x--x 3 ftpadm root 512 Jan 18 20:47 .
drwxr-xr-x 8 ftpadm root 512 Jan 18 02:03 ..
-r--r--r-- 1 ftpadm root 110 Dec 12 18:03 group
drwxr-xr-x 2 ftpadm root 512 Nov 21 17:25 msgs <= contains message
files.
-r--r--r-- 1 ftpadm root 1515 Dec 12 18:00 passwd
~ftp/usr:
total 2
dr-x--x--x 2 ftpadm root 1024 Jan 8 18:47 lib
/lib:
total 2990
-rwxr-xr-x 1 ftpadm root 24576 Aug 18 20:46 ld.so
-rwxr-xr-x 1 ftpadm root 97804 Aug 18 20:46 ld.so.1
lrwxrwxrwx 1 ftpadm other 9 Sep 22 18:06 libc.so -> libc.so.1
-rwxr-xr-x 1 ftpadm root 621540 Aug 18 17:58 libc.so.1
lrwxrwxrwx 1 ftpadm other 10 Sep 22 18:06 libdl.so -> libdl.so.1
-rwxr-xr-x 1 ftpadm root 3492 Aug 18 17:58 libdl.so.1
lrwxrwxrwx 1 ftpadm other 12 Sep 22 18:06 libintl.so -> libintl.so.1
-rwxr-xr-x 1 ftpadm root 13516 Aug 18 17:58 libintl.so.1
lrwxrwxrwx 1 ftpadm other 11 Sep 22 18:06 libnsl.so -> libnsl.so.1
-rwxr-xr-x 1 ftpadm root 508896 Aug 18 20:50 libnsl.so.1
lrwxrwxrwx 1 ftpadm other 14 Sep 22 18:06 libsocket.so -> libsocket.so.1
-rwxr-xr-x 1 ftpadm root 73048 Aug 18 20:51 libsocket.so.1
lrwxrwxrwx 1 ftpadm other 9 Sep 22 18:06 libw.so -> libw.so.1
-rwxr-xr-x 1 ftpadm root 41704 Aug 18 17:57 libw.so.1
lrwxrwxrwx 1 ftpadm other 12 Sep 22 18:06 nss_dns.so -> nss_dns.so.1
-rwxr-xr-x 1 ftpadm root 10796 Aug 18 20:54 nss_dns.so.1
lrwxrwxrwx 1 ftpadm other 14 Sep 22 18:06 nss_files.so -> nss_files.so.1
-rwxr-xr-x 1 ftpadm root 18496 Aug 18 20:55 nss_files.so.1
lrwxrwxrwx 1 ftpadm other 12 Sep 22 18:06 nss_nis.so -> nss_nis.so.1
-rwxr-xr-x 1 ftpadm root 25840 Aug 18 20:53 nss_nis.so.1
lrwxrwxrwx 1 ftpadm other 16 Sep 22 18:06 nss_nisplus.so -> nss_nisplus.so.1
-rwxr-xr-x 1 ftpadm root 30196 Aug 18 20:53 nss_nisplus.so.1
-rwxr-xr-x 1 ftpadm root 9436 Aug 18 20:56 straddr.so
-rwxr-xr-x 1 ftpadm root 9436 Aug 18 20:56 straddr.so.2
Perhaps some of these libraries are not actually necessary.
By the way, has anyone suceeded to compile the ls staticly under Solaris 2.4?
Cheers,
Serge Bezzubov <
[email protected]> <
[email protected]>
YTC, Yaroslavl, Russia
From
[email protected] Thu Jan 18 10:51:24 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tczQY-0000DXC; Thu, 18 Jan 96 10:51 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA18006; Thu, 18 Jan 1996 12:47:04 -0600
Received: from noah.smumn.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA17026 for <
[email protected]>; Thu, 18 Jan 1996 12:37:35 -0600
Received: by noah.smumn.edu (5.64/A/UX-3.00)
id AA00350; Thu, 18 Jan 96 12:45:14 CST
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 12:45:14 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Kevin A. Hoogheem" <
[email protected]>
To:
[email protected]
Subject: Did something stupid
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Ok I did something realy neat. I used ftpshut and it
shut down the ftp server. So now how do I get it back up and
running.?
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Kevin A. Hoogheem Saint Marys Press
Asst. Network Admin. Winona Minnesota
507-457-7915
[email protected]
http://wwwsmp.smumn.edu/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
From
[email protected] Thu Jan 18 10:58:23 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tczWd-000DScC; Thu, 18 Jan 96 10:57 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA18685; Thu, 18 Jan 1996 12:53:17 -0600
Received: from wire.paladin.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA18486 for <
[email protected]>; Thu, 18 Jan 1996 12:51:38 -0600
Received: (cjwoods@localhost) by wire.paladin.com (8.6.8/8.6.5) id NAA21092; Thu, 18 Jan 1996 13:46:20 -0500
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 13:46:20 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Chris Woods <
[email protected]>
To: "Kevin A. Hoogheem" <
[email protected]>
Cc:
[email protected]
Subject: Re: Did something stupid
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Thu, 18 Jan 1996, Kevin A. Hoogheem wrote:
> Ok I did something realy neat. I used ftpshut and it
> shut down the ftp server. So now how do I get it back up and
> running.?
rm /etc/shutmsg
Chris Woods Systems Administrator
[email protected] (office) Paladin Computing Solutions
[email protected] (home)
http://www.paladin.com
"A computer without Windows is like a fish without a bicycle."
From
[email protected] Thu Jan 18 11:09:00 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tczhe-000CqYC; Thu, 18 Jan 96 11:08 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA19253; Thu, 18 Jan 1996 12:59:18 -0600
Received: from mailhost.lanl.gov by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA18705 for <
[email protected]>; Thu, 18 Jan 1996 12:53:28 -0600
Received: from wrangler.lanl.gov by mailhost.lanl.gov (8.6.12/1.2)
id LAA10252; Thu, 18 Jan 1996 11:53:27 -0700
Received: from berrieh.lanl.gov (berrieh.lanl.gov [128.165.113.225]) by wrangler.lanl.gov (8.7.1/8.7.1) with SMTP id LAA17839 for <
[email protected]>; Thu, 18 Jan 1996 11:53:27 -0700 (MST)
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 11:53:25 MST
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Lyn A. Kendrick)
To:
[email protected]
Subject: Re: Did something stupid
X-Mailer: Mail User's Shell (7.2.6 1995-03-03)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I'd just go home if I were you.
> Ok I did something realy neat. I used ftpshut and it
> shut down the ftp server. So now how do I get it back up and
> running.?
>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Kevin A. Hoogheem Saint Marys Press
> Asst. Network Admin. Winona Minnesota
> 507-457-7915
[email protected]
>
http://wwwsmp.smumn.edu/
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>
From
[email protected] Thu Jan 18 11:25:32 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tczxh-000Fq0C; Thu, 18 Jan 96 11:25 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA20955; Thu, 18 Jan 1996 13:17:49 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA20722 for <
[email protected]>; Thu, 18 Jan 1996 13:15:43 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id UAA28364; Thu, 18 Jan 1996 20:16:04 +0100
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 20:16:03 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: dir command
In-Reply-To: <
[email protected]> from "Tim Capps" at Jan 18, 96 09:49:21 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Tim Capps, who wrote :
> >This "problem" is not specfic to Solaris, but I belive to every UNIX
> >that supports setroot.
>
> True. Since a big percentage of the traffic on this list has to do
> with various folks trying to get dir working on various platforms, perhaps
> this indicates a fundamental design flaw in the way dir works.
> Nobody has any trouble with ls, as the code to support that command is
> built in to wu_ftpd. Suggestion: why not build the code in for dir
> too - it's not that difficult, and it would save a hell of a lot of
> wasted time on this problem.
I don't agree on this one. The next thing that will not run is tar, compress,
gzip and other convertors.
The basic rule is :
- Find statically linked versions of ls, tar, gzip
or
- Find out which libraries these programs need and copy those libraries to
~ftp/lib
Complete answers for both are in the FAQ at
http://www.hvu.nl/~koos/wu-ftpd-faq.html
In general : this list is not about the newest 'simpleterm for windows', it's
about a special kind of ftp-server. Which means (in my opinion) that people
should read the manual first, read the faq too, read all the readme's that
come with wu-ftpd, and *then* ask questions.
I would very much appriciate it if the 'new user info' for this list contained
a pointer to the current faq. The info-page at wuarchive itself for the ftpd
contains the pointer. (that's
http://www.hvu.nl/~koos/wu-ftpd-faq.html again).
Grtx. KH
--
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Thu Jan 18 11:32:29 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td04P-0000DXC; Thu, 18 Jan 96 11:32 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA21512; Thu, 18 Jan 1996 13:23:17 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA21224 for <
[email protected]>; Thu, 18 Jan 1996 13:20:11 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id UAA28383; Thu, 18 Jan 1996 20:20:29 +0100
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 20:20:28 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Login Messages
In-Reply-To: <
[email protected]> from "Kevin A. Hoogheem" at Jan 18, 96 11:05:07 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Kevin A. Hoogheem, who wrote :
> I was wondering if there is a nice paper that show what all
> can go into the initial login message so that you can show
> the current date or what user number they are out of the total
> thanks
Go to the source tree of wu-ftpd
cd doc
nroff -man < ftpaccess.5 | more
Grtx. KH
--
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Thu Jan 18 11:41:52 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td0DU-000DT2C; Thu, 18 Jan 96 11:41 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA22594; Thu, 18 Jan 1996 13:34:55 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA22504 for <
[email protected]>; Thu, 18 Jan 1996 13:33:36 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA01866; Thu, 18 Jan 1996 11:33:30 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA07391; Thu, 18 Jan 1996 11:29:39 +0800
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 11:29:39 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: dir command/FAQ
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
As one of the people who are having problems setting up ftp, I have to agree
with the suggestion about adding the FAQ to the welcome letter. On the other
hand, I do not agree with it's tone.
There is NO mention of an FAQ anywhere in the documentation for wu-ftp, or
in the new user info letter that is sent upon joining this mailing list.
I have lurked for several weeks now waiting for ANY mention of an FAQ, and this
was the first mention of it.
I resent the authors opinion that those of us having problems did not
read the "fine" manual. I read it, and still have problems. If there
is a requirement for statically linked libraries, then the manual
should say so, instead of saying you can either copy the libraries,
or recompile the binaries statically.
The author also assumes that we all knew where the FAQ is. This was the
first I have even heard of an FAQ.
I have to think that if this many folks who are reading the manual are
having difficulties, then maybe the manual needs to be re-written.
>>>Ericw
>
> I don't agree on this one. The next thing that will not run is tar, compress,
> gzip and other convertors.
>
> The basic rule is :
>
> - Find statically linked versions of ls, tar, gzip
>
> or
>
> - Find out which libraries these programs need and copy those libraries to
> ~ftp/lib
>
> Complete answers for both are in the FAQ at
>
http://www.hvu.nl/~koos/wu-ftpd-faq.html
>
> In general : this list is not about the newest 'simpleterm for windows', it's
> about a special kind of ftp-server. Which means (in my opinion) that people
> should read the manual first, read the faq too, read all the readme's that
> come with wu-ftpd, and *then* ask questions.
>
> I would very much appriciate it if the 'new user info' for this list contained
> a pointer to the current faq. The info-page at wuarchive itself for the ftpd
> contains the pointer. (that's
http://www.hvu.nl/~koos/wu-ftpd-faq.html again).
>
From
[email protected] Thu Jan 18 11:43:56 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td0FV-000FkQC; Thu, 18 Jan 96 11:43 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA22788; Thu, 18 Jan 1996 13:36:36 -0600
Received: from eliza.netaxis.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA22539 for <
[email protected]>; Thu, 18 Jan 1996 13:34:14 -0600
Received: (from angelos@localhost) by eliza.netaxis.com (8.7.3/8.7.3) id OAA01559 for
[email protected]; Thu, 18 Jan 1996 14:36:05 -0500 (EST)
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 14:36:05 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Angelos Karageorgiou <
[email protected]>
To:
[email protected]
Subject: Re: Did something stupid
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have fixed a small bug in xferstats in the datecompare function
have you guys seen this ? if not here goes
$date1 = substr($a, 11, 4) * 365;
$date2 = substr($b, 11, 4) * 365;
$date1 += index("JanFebMarAprMayJunJulAugSepOctNovDec",substr($a, 4, 3))*10;
$date2 += index("JanFebMarAprMayJunJulAugSepOctNovDec",substr($b, 4, 3))*10;
$date1 += substr($a, 8, 2);
$date2 += substr($b, 8, 2);
$date1 - $date2;
this correctly sorts the dates according to the num of dates since 1/1/1 :-)
From
[email protected] Thu Jan 18 12:52:10 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td1JV-0006tOC; Thu, 18 Jan 96 12:52 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA28683; Thu, 18 Jan 1996 14:43:53 -0600
Received: from handy.gr.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA28480 for <
[email protected]>; Thu, 18 Jan 1996 14:42:05 -0600
Received: from steveb.gr.com by handy.gr.com with SMTP
(1.38.193.5/16.2) id AA03410; Thu, 18 Jan 1996 14:40:08 -0600
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 14:40:08 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: Steve Brothers <
[email protected]>
To:
[email protected]
Subject: HP-UX - /bin/ld: Can't find library for -lPW
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Light Version 1.5.2
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Howdy!
I am sort of a Unix novice, and I was hoping someone could spare a couple of
minutes to help me compile the wuftpd daemon. I checked the mail archive,
the related newsgroup FAQ, and other sources without success. Here's my
problem:
I am trying to build wuftp-2.4 on HPUX-9.04 and the message that I receive
while building is: "/bin/ld: Can't find library for -lPW". After reading
some man pages it seems to indicate that it is looking for libPW.sl or
libPW.a. Is that what it is looking for? Is this a special library that I
need to get, or should it have been included, or ...
Any help would be appreciated.
TIA
-S
---
Steve Brothers, Greenbrier & Russel, Development Services
[email protected]
"Extraordinary Problems Require Extraordinary Solutions!"
From
[email protected] Thu Jan 18 13:04:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td1V9-000DDRC; Thu, 18 Jan 96 13:04 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA29862; Thu, 18 Jan 1996 14:55:07 -0600
Received: from red.isearch.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA29418 for <
[email protected]>; Thu, 18 Jan 1996 14:50:55 -0600
Received: (from tim@localhost) by red.isearch.com (8.6.10/8.6.10) id MAA05244 for
[email protected]; Thu, 18 Jan 1996 12:50:53 -0800
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 12:50:53 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Tim Capps <
[email protected]>
To:
[email protected]
Subject: Re: dir command
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>I don't agree on this one. The next thing that will not run is tar, compress,
>gzip and other convertors.
True. However, how many messages on this list do you see about that?
Answer: Very few. I'd guess that a lot of folks never use the tar,
compress, gzip converters. Folks who do need to solve the problem,
but why make everyone do it?
>Complete answers for both are in the FAQ at
>
http://www.hvu.nl/~koos/wu-ftpd-faq.html
Not so. I worked for a couple of weeks to get SunOS 4.1.4 running.
I have no interest in the tar/gzip/whatever converters, and so I
won't be spending any time at all on that. I could have better used
the time I wasted figuring this out on something else. I suspect
that a large number of folks will be in the same situation (correct
me if I'm wrong people, and I'll shut up).
It seems to me that basic functionality should happen right out of
the box. If you want to get exotic, then fine, maybe it takes a little
more work. One might wonder why "ls" is part of the basic package?
Why not have that call the external "ls" command? I suspect because
it is problematic to get that stuff working in the first place.
>In general : this list is not about the newest 'simpleterm for windows', it's
>about a special kind of ftp-server. Which means (in my opinion) that people
>should read the manual first, read the faq too, read all the readme's that
>come with wu-ftpd, and *then* ask questions.
Right. I did that. It was no help. I then spent a lot of time on this
and finally got it to work. I don't like to waste my time like this.
Cheers,
Tim
From
[email protected] Thu Jan 18 13:29:45 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td1tv-0006tOC; Thu, 18 Jan 96 13:29 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA02543; Thu, 18 Jan 1996 15:21:39 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA02153 for <
[email protected]>; Thu, 18 Jan 1996 15:17:33 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA02168; Thu, 18 Jan 1996 13:16:43 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA07442; Thu, 18 Jan 1996 13:12:50 +0800
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 13:12:50 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Cc:
[email protected]
Subject: Re: dir command
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Tim Says:
>
> True. However, how many messages on this list do you see about that?
> Answer: Very few. I'd guess that a lot of folks never use the tar,
> compress, gzip converters. Folks who do need to solve the problem,
> but why make everyone do it?
I think that the fix for ls is also the same fix for compress, etc.
BTW: My next test is a small staticlly linked binary that just spits
"Hello Eric". After that, it's time to do a cp /usr/lib/* ~ftp/usr/lib,
and see if that works. I suspect that there is a missing library that
ldd does not report.
>>>Ericw
(About to dive back into the silly code again.)
From
[email protected] Thu Jan 18 13:53:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td2GZ-000DKzC; Thu, 18 Jan 96 13:53 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA04576; Thu, 18 Jan 1996 15:45:09 -0600
Received: from icslearn.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA04281 for <
[email protected]>; Thu, 18 Jan 1996 15:41:24 -0600
Received: by icslearn.com (5.x/SMI-SVR4)
id AA11835; Thu, 18 Jan 1996 16:50:04 -0500
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 16:50:04 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Gregory E. Paul)
To:
[email protected]
Subject: Guest user access
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I am currently configuring wu-ftpd-2.4 for use under Solaris 2.4. I have created a guest user and group. I seem to be able to login and the user has been chroot()ed to the directory I specified. But, any time I attempt to ls or put, I get error 425 Can't create data socket (0.0.0.0,20): Bad file number. My anonymous access operates cleanly. The directory I have setup for the guest user lies outside my anonymous ftp directory structures. What action can I take to remedy my situation? Thanks for your assistance!
Greg Paul
From
[email protected] Thu Jan 18 14:11:19 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td2Y3-000CqYC; Thu, 18 Jan 96 14:11 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA06276; Thu, 18 Jan 1996 16:02:48 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id QAA06158 for <
[email protected]>; Thu, 18 Jan 1996 16:01:52 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id XAA29184; Thu, 18 Jan 1996 23:02:15 +0100
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 23:02:15 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Guest user access
In-Reply-To: <
[email protected]> from "Gregory E. Paul" at Jan 18, 96 04:50:04 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Gregory E. Paul, who wrote :
> I am currently configuring wu-ftpd-2.4 for use under Solaris 2.4.
> I have created a guest user and group. I seem to be able to login and
> the user has been chroot()ed to the directory I specified. But, any time
> I attempt to ls or put, I get error 425 Can't create data socket
> (0.0.0.0,20): Bad file number. My anonymous access operates cleanly.
> The directory I have setup for the guest user lies outside my anonymous
> ftp directory structures. What action can I take to remedy my situation?
You need to have the same shared libs in the guest root, and (specific
to this error and solaris) ~guestdir/dev/tcp and ~guestdir/dev/zero.
Grtx. KH
--
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Thu Jan 18 14:48:14 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td37s-000FqgC; Thu, 18 Jan 96 14:48 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA09471; Thu, 18 Jan 1996 16:39:42 -0600
Received: from longwood.cs.ucf.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA09048 for <
[email protected]>; Thu, 18 Jan 1996 16:34:38 -0600
Received: by longwood.cs.ucf.edu id AA02538
(5.65c/IDA-1.4.4 for
[email protected]); Thu, 18 Jan 1996 17:34:34 -0500
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 17:34:34 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Denise Tjong <
[email protected]>
To:
[email protected]
Subject: Time difference during logging..
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi
I've installed academ's wu-ftpd beta 8 version on AIX3.2.5 and everything
seems to work fine except the time it logs in the xferlog file.
Any suggestions would be very appreciated.
Denise
From
[email protected] Thu Jan 18 15:58:14 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td4DT-0000tsC; Thu, 18 Jan 96 15:58 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA14827; Thu, 18 Jan 1996 17:50:22 -0600
Received: from tiamat.ncifcrf.gov by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id RAA14691 for <
[email protected]>; Thu, 18 Jan 1996 17:47:32 -0600
Received: (from poole@localhost) by tiamat.ncifcrf.gov (8.7.3/8.6.12) id SAA29876 for
[email protected]; Thu, 18 Jan 1996 18:46:24 -0500 (EST)
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 18:46:24 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Phil Poole <
[email protected]>
To:
[email protected]
Subject: Re: Perl script to tally logs in html
In-Reply-To: <9601182328.AA00772@griffin> from "Ann Keane" at Jan 18, 96 04:28:16 pm
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL24]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
>
> I'm looking for a script someone posted ~6mo. ago which tallied
> the logs into a monthly report in html.
>
> Thanks-
> Ann
Wow...I must have missed that one. I would also be interested in
this.
Thanks in advance.
--
Phil Poole | SUN Unix Administrator
[email protected] | Frederick Biomedical SuperComputing Center
(301) 846-5721 | Frederick MD, 21702
From
[email protected] Thu Jan 18 16:02:08 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td4HM-0000oOC; Thu, 18 Jan 96 16:02 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA14413; Thu, 18 Jan 1996 17:42:23 -0600
Received: from netsrv by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA14098 for <
[email protected]>; Thu, 18 Jan 1996 17:36:55 -0600
Received: from griffin (griffin.etl.noaa.gov) by netsrv (5.0/SMI-SVR4)
id AA10822; Thu, 18 Jan 1996 16:36:55 +0700
Received: by griffin (5.0/SMI-SVR4)
id AA00772; Thu, 18 Jan 96 16:28:16 MST
Message-Id: <9601182328.AA00772@griffin>
Date: Thu, 18 Jan 96 16:28:16 MST
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Ann Keane)
To:
[email protected]
Subject: Perl script to tally logs in html
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I'm looking for a script someone posted ~6mo. ago which tallied
the logs into a monthly report in html.
Thanks-
Ann
From
[email protected] Thu Jan 18 16:15:10 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td4Ty-000DScC; Thu, 18 Jan 96 16:15 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA15195; Thu, 18 Jan 1996 17:56:10 -0600
Received: from ns1.fni.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id RAA14784 for <
[email protected]>; Thu, 18 Jan 1996 17:49:51 -0600
Received: (from mbrennen@localhost) by ns1.fni.com (8.7.3/8.7.3) id RAA03477; Thu, 18 Jan 1996 17:50:05 -0600
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 17:50:04 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To:
[email protected]
Cc: Andrew Robert Ellsworth <
[email protected]>
Subject: Re: dir command
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Thu, 18 Jan 1996, Tim Capps wrote:
> It seems to me that basic functionality should happen right out of
> the box. If you want to get exotic, then fine, maybe it takes a little
> more work. One might wonder why "ls" is part of the basic package?
> Why not have that call the external "ls" command? I suspect because
> it is problematic to get that stuff working in the first place.
Basic functionality does happen right out of the box; the 'ls' command
with no options is built in. And yes, it is problematic to get the other
stuff working.
This is not point and click on "setup.exe". Given the variety of Unix
flavors that this thing runs on and the variety of things that don't work
(SETPROCTITLE, etc.) from OS to OS, it is to be expected that it takes
more than 'make; su; make install' to get it running. The library
directory and permissions structure required for installation of dynamic
libraries varies so much from OS to OS that it would be yet another big
effort to get it to that point.
Hacks contributed by the mail list inhabitants have greatly simplified the
installation process; it is not perfect yet, and documentation can be
improved. If you find something that can be improved, submit a patch to
the list and it will be incorporated into the beta release. wu-ftpd got
where it is today by people doing just that.
RE the FAQ: Washington University controls the listserver, and they have
not seen fit to update the subscription docs to reflect the location of
any of the ongoing work. Evidence over the past year seems to indicate
that they want to dissociate from it as much as they can. At least now we
have a name that is associated with the university; for a long time we
didn't have that.
I for one appreciate their willingness to at least keep the list alive,
but the product needs the hacks that have been done to it, and people need
to know about them. There are major problems in the "official" release.
Andrew, could you at least update the new subscriber info to point to the
new FAQ? That will be enough to point people to the beta release as well
as other resources that can help people securely and more efficiently set
up this loveable beast. Put on all the disclaimers you want about not
being responsible, it's an "unofficial" FAQ, etc.
On another point: this is a potentially serious hole on your server if you
don't get it right. Part of pulling wu-ftpd up is studying and
understanding the details of directory permissions, guest and real access,
etc. The resources in the FAQ can help that process. Take this thing
*seriously*, because if you don't you've left one of your front doors
open. A quick and dirty installation will get you hacked quick and dirty.
Michael
---------------------------------------------------------------------
Michael Brennen, President / /
[email protected]
FishNet, Inc. / Internet /
http://www.fni.com/
P.O. Box 940451 / Services / (214) 783-2553 (vox/fax)
Plano, TX 75094-0451 / / finger me for PGP public key
From
[email protected] Thu Jan 18 16:28:04 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td4gU-000FBzC; Thu, 18 Jan 96 16:28 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA15870; Thu, 18 Jan 1996 18:06:44 -0600
Received: from red.isearch.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id SAA15730 for <
[email protected]>; Thu, 18 Jan 1996 18:04:48 -0600
Received: (from tim@localhost) by red.isearch.com (8.6.10/8.6.10) id QAA09545 for
[email protected]; Thu, 18 Jan 1996 16:04:46 -0800
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 16:04:46 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Tim Capps <
[email protected]>
To:
[email protected]
Subject: Re: dir command
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>Basic functionality does happen right out of the box; the 'ls' command
>with no options is built in. And yes, it is problematic to get the other
>stuff working.
>
> [...]
>
>On another point: this is a potentially serious hole on your server if you
>don't get it right. Part of pulling wu-ftpd up is studying and
>understanding the details of directory permissions, guest and real access,
>etc. The resources in the FAQ can help that process. Take this thing
>*seriously*, because if you don't you've left one of your front doors
>open. A quick and dirty installation will get you hacked quick and dirty.
Ok, point taken. However, I still don't understand that if the code for
ls can be put into the main module, then why can't the code for 'dir'
be put there too? I have looked at the code for doing 'dir' type
operations, and it doesn't look very difficult to me. Is there some
overriding concern there of which I am not aware? Dont "ls" and "dir"
do basically the same thing (except for more info in the dir display)?
Yes, I am taking this seriously. Also, I have been working with unix
systems for years (several flavors) so I don't expect setup.exe type
installations. Btw, ever tried running setup.exe under wabi? It takes
about 15 minutes to come up on a Sparc 10.
Cheers,
Tim
From
[email protected] Thu Jan 18 17:50:39 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0td5yP-0006tYC; Thu, 18 Jan 96 17:50 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id TAA21197; Thu, 18 Jan 1996 19:43:26 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id TAA20985 for <
[email protected]>; Thu, 18 Jan 1996 19:40:41 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA03174; Thu, 18 Jan 1996 17:40:37 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA07688; Thu, 18 Jan 1996 17:36:46 +0800
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 1996 17:36:46 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: dir command: The semi-final solution...
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Well, I managed to get my ls -l working. It turns out that
copying /bin/ls to ~ftp/bin/ls was BAD. I accidentally noticed
that there is a /usr/ucb/ls also. When I copied that to
"ftp/bin/ls, it worked.
More details (gory, ugly details) to follow tomorrow.
>>Ericw
(BTW: the FAQ was no help in this problem, and needs to be updated
to reflect this particular bug/feature.)
From
[email protected] Fri Jan 19 00:11:16 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdBuk-0006emC; Fri, 19 Jan 96 00:11 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA08375; Fri, 19 Jan 1996 02:01:37 -0600
Received: from gps1.leeds.ac.uk by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA07998 for <
[email protected]>; Fri, 19 Jan 1996 01:50:37 -0600
Received: from faxil.leeds.ac.uk (
[email protected] [129.11.224.14]) by gps1.leeds.ac.uk (8.6.12/8.6.9) with SMTP id HAA19437; Fri, 19 Jan 1996 07:50:01 GMT
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 07:46:32 +0000 (GMT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Clarkson <
[email protected]>
To: FTP_server Administrator <
[email protected]>
Cc:
[email protected]
Subject: Re: dir command
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Confirm-Reading-To:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Thu, 18 Jan 1996, FTP_server Administrator wrote:
> By the way, has anyone suceeded to compile the ls staticly under Solaris 2.4?
>
As was suggested a while back at the beginning of this LS/DIR thread, the
problem is solved if ls is compiled statically.
I have succesfully compiled ls statically using gcc -static and also
SUNWspro cc -dn -Bstatic
Michael Clarkson
______ __ __ __ _ _
| ____|/ \ \ \ / /(_)| | FAXiL,
| |___ / /_ \ \ \/ / _ | | The Wellcome Wing,
| ___| ____ \ > < | || | The General Infirmary,
| | / / \ \/ /\ \ | || |____ Leeds LS1 3EX, UK.
|_| /_/ \_\/ \_\|_||______| Tel: 0113 292 2479 Fax: 0113 242 0926
From
[email protected] Fri Jan 19 00:43:17 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdCPi-000DDXC; Fri, 19 Jan 96 00:43 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA09490; Fri, 19 Jan 1996 02:35:19 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id CAA08383 for <
[email protected]>; Fri, 19 Jan 1996 02:01:39 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id JAA01659; Fri, 19 Jan 1996 09:02:03 +0100
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 09:02:03 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Time difference during logging..
In-Reply-To: <
[email protected]> from "Denise Tjong" at Jan 18, 96 05:34:34 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Denise Tjong, who wrote :
> I've installed academ's wu-ftpd beta 8 version on AIX3.2.5 and everything
> seems to work fine except the time it logs in the xferlog file.
>
> Any suggestions would be very appreciated.
Let me guess : the difference is an exact number of hours so it looks like
your host has been moved to the Greenwich meridian ?
Anyway, what is probably happening is that the SETPROCTITLE code is
overwriting the environment in stead of overwriting the command line.
Solution : rebuild wu-ftpd without SETPROCTITLE enabled.
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Fri Jan 19 02:08:28 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdDk9-0006ueC; Fri, 19 Jan 96 02:08 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id EAA11884; Fri, 19 Jan 1996 04:01:21 -0600
Received: from ecbull.frec.bull.fr by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id DAA11664 for <
[email protected]>; Fri, 19 Jan 1996 03:55:36 -0600
Received: from elvire.frec.bull.fr by ecbull.frec.bull.fr; Fri, 19 Jan 1996 10:55:01 +0100 (MET)
Received: from localhost (diemer@localhost) by elvire.frec.bull.fr (8.5/8.5) id KAA01288; Fri, 19 Jan 1996 10:54:59 +0100
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 10:54:59 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From: Pascale Diemer <
[email protected]>
To:
[email protected]
Subject: Re: Did something stupid
In-Reply-To: <
[email protected]> from "Kevin A. Hoogheem" at Jan 18, 96 12:45:14 pm
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Mailer: ELM [version 2.4 PL21]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> Ok I did something realy neat. I used ftpshut and it
> shut down the ftp server. So now how do I get it back up and
> running.?
>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Kevin A. Hoogheem Saint Marys Press
> Asst. Network Admin. Winona Minnesota
> 507-457-7915
[email protected]
>
http://wwwsmp.smumn.edu/
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>
>
I 'm glad to know that I'm not alone in this case...
I did it few weeks ago .
Probably you have in your "ftpaccess" file a line like this:
shutdown /etc/shutmsg
With this, ftpshut command creates a file shutmsg. The daemon
ftpd looks at this file and when it find it , the ftp service is anavailable.
To get it available, you have only to remove this file shutmsg.
Have a good day,
Pascale
--
+----------------------------------------------+-----------------------------+
| Pascale Diemer |
[email protected] |
| | |
| Open Systems & Software | M/S : FREC C1-059 |
| Open System Business Unit | ICN : 229 7152 |
| Systems & Pegasus Program | Voice : +33 76 29 71 52 |
| System Software Productization & ISV Support | Fax : +33 76 29 71 02 |
| Software Packaging & Manufacturing Transfer | |
+----------------------------------------------+-----------------------------+
From
[email protected] Fri Jan 19 02:19:34 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdDup-0000ZuC; Fri, 19 Jan 96 02:19 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id EAA12254; Fri, 19 Jan 1996 04:12:31 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id EAA11905 for <
[email protected]>; Fri, 19 Jan 1996 04:01:57 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id MAA01619; Fri, 19 Jan 1996 12:01:54 -0200
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 12:01:53 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: HP-UX - /bin/ld: Can't find library for -lPW
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Steve Brothers wrote:
>
> Howdy!
>
> I am sort of a Unix novice, and I was hoping someone could spare a couple of
> minutes to help me compile the wuftpd daemon. I checked the mail archive,
> the related newsgroup FAQ, and other sources without success. Here's my
> problem:
>
> I am trying to build wuftp-2.4 on HPUX-9.04 and the message that I receive
> while building is: "/bin/ld: Can't find library for -lPW". After reading
> some man pages it seems to indicate that it is looking for libPW.sl or
> libPW.a. Is that what it is looking for? Is this a special library that I
> need to get, or should it have been included, or ...
>
> Any help would be appreciated.
Basically you are right. If you have that library then you should find
it find doing:
find /usr -name libPW* -print
If you do find it then ensure that you make file has an entry for libs
that is:
-L/directory-where-lib-is
So that the linker will know where to look.
If you do not have it then remove the reference -lPW from you Makefile
and try again (you may not actually need it). If that does not work you
will have to learn more about UNIX.
BTW if you are a UNIX novice then you should be *VERY* careful about
putting ftp on your server. It will allow other, perhaps not very nice,
people access in ways that you might not have forseen.
Regards
Nathan
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Fri Jan 19 04:51:56 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdGIK-000FGaC; Fri, 19 Jan 96 04:51 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id GAA16595; Fri, 19 Jan 1996 06:44:03 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id GAA16357 for <
[email protected]>; Fri, 19 Jan 1996 06:38:58 -0600
Received: from gatekeeper.cableol.net by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Fri, 19 Jan 1996 06:21:43 -0500 (CDT)
Received: from pluto.cableol.net by gatekeeper.cableol.net;
(5.65v3.2/1.1.8.2/19Oct95-0208PM) id AA15234; Fri, 19 Jan 1996 12:56:34 GMT
Received: from [194.168.2.4] by pluto.cableol.net;
(5.65v3.2/1.1.8.2/19Oct95-0215PM) id AA29607; Fri, 19 Jan 1996 12:55:56 GMT
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 12:55:56 +0000 (GMT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Pulak Rakshit)
To:
[email protected]
Subject: Tar/Compress with wu-ftp
MIME-version: 1.0
Content-type: text/plain; charset="us-ascii"
Content-transfer-encoding: 7BIT
X-Sender:
[email protected]
X-Mailer: Windows Eudora Version 1.4.4
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi
I have just installed wu-ftpd, and find the product is great.
>From the documentation, tar/compress command seems to be
supported with wu-ftpd. Is this the case. If so how should
I configure wu-ftpd so I can use these commands.
Thanks for your help.
Pulak Rakshit
From
[email protected] Fri Jan 19 05:38:01 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdH0v-0006qyC; Fri, 19 Jan 96 05:37 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA18986; Fri, 19 Jan 1996 07:28:47 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id HAA18793 for <
[email protected]>; Fri, 19 Jan 1996 07:24:40 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id OAA06877; Fri, 19 Jan 1996 14:25:03 +0100
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 14:25:03 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Tar/Compress with wu-ftp
In-Reply-To: <
[email protected]> from "Pulak Rakshit" at Jan 19, 96 12:55:56 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Pulak Rakshit, who wrote :
> I have just installed wu-ftpd, and find the product is great.
> >From the documentation, tar/compress command seems to be
> supported with wu-ftpd. Is this the case. If so how should
> I configure wu-ftpd so I can use these commands.
Wu-ftpd uses tar and compress (and gzip) to do certain conversions on the
fly. One often-used possibility is to tar up a whole directory structure so
it is transfered as a single tar file. So if you have a subdirectory
'test', and you do a
get test.tar
wu-ftpd will see there is no file 'test.tar', and then see if it can perform
a conversion of 'test' to 'test.tar'.
The rules for the conversions are in /etc/ftpconversions (the exact path
to this file is configurable).
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Fri Jan 19 08:22:56 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdJaQ-000FE0C; Fri, 19 Jan 96 08:22 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA29488; Fri, 19 Jan 1996 10:12:28 -0600
Received: from huckle.cs.umt.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA29411 for <
[email protected]>; Fri, 19 Jan 1996 10:11:07 -0600
Received: from beaverhead.cs.umt.edu by huckle.cs.umt.edu (AIX 3.2/UCB 5.64/4.03)
id AA27969; Fri, 19 Jan 1996 09:11:05 -0700
Message-Id: <v01530500ad250f1b9145@[150.131.15.59]>
Date: Fri, 19 Jan 1996 09:11:05 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (David L. Thompson)
To:
[email protected]
Subject: Re: dir command
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>>I don't agree on this one. The next thing that will not run is tar, compress,
>>gzip and other convertors.
>
>True. However, how many messages on this list do you see about that?
>Answer: Very few. I'd guess that a lot of folks never use the tar,
>compress, gzip converters. Folks who do need to solve the problem,
>but why make everyone do it?
There are more people out there using this than you might think.
>
>>Complete answers for both are in the FAQ at
>>
http://www.hvu.nl/~koos/wu-ftpd-faq.html
>
>Not so. I worked for a couple of weeks to get SunOS 4.1.4 running.
>I have no interest in the tar/gzip/whatever converters, and so I
>won't be spending any time at all on that. I could have better used
>the time I wasted figuring this out on something else. I suspect
>that a large number of folks will be in the same situation (correct
>me if I'm wrong people, and I'll shut up).
FTP isn't something that you should just jump into and hope that it works.
If you are working this way, you may be in for a big suprise when your
machine gets broken in to. I think that anyone setting up an FTP server for
real has the sense to read everything they can regarding security features
of FTP daemons, etc. before they get started. O'Reilly's books are a good
start, and they could have answered a lot of your questions. WU-FTPd is not
your basic Word-Processor.
>
>It seems to me that basic functionality should happen right out of
>the box. If you want to get exotic, then fine, maybe it takes a little
>more work. One might wonder why "ls" is part of the basic package?
>Why not have that call the external "ls" command? I suspect because
>it is problematic to get that stuff working in the first place.
If you want functionality right out of the box, you shouldn't be working
with freeware FTPd daemons. You should be working with a company like
Microsoft which provides an FTP daemon for NT that is simple to get up and
running. WU-FTP is not your average run of the mill FTP daemon. It is
running on many many platforms and has security features that out of the
box FTP daemons do not include. The only time I've seen WU-FTP run as an
out of the box app, was installed on a Linux machine by someone who knew
what they were doing.
>
>>In general : this list is not about the newest 'simpleterm for windows', it's
>>about a special kind of ftp-server. Which means (in my opinion) that people
>>should read the manual first, read the faq too, read all the readme's that
>>come with wu-ftpd, and *then* ask questions.
>
>Right. I did that. It was no help. I then spent a lot of time on this
>and finally got it to work. I don't like to waste my time like this.
>
>Cheers,
>Tim
Get the O'Reilly books. It took me one day to get the server up and running
after I downloaded, but it took me 10 days to test it before I risked
putting my machine on the net.
David
............................................................................
David L. Thompson mailto:
[email protected]
The University of Montana/ITRC The University of Montana/CS Department
Digital Multimedia Specialist Missoula, MT 59812
Work Phone : (406)243-4810
From
[email protected] Fri Jan 19 12:17:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdNF7-000DfPC; Fri, 19 Jan 96 12:17 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA18195; Fri, 19 Jan 1996 14:12:30 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA17707 for <
[email protected]>; Fri, 19 Jan 1996 14:06:42 -0600
Received: from mercury.kset.com by ns (5.x/SMI-SVR4)
id AA05083; Fri, 19 Jan 1996 12:06:39 -0800
Received: by mercury.kset.com (AIX 3.2/UCB 5.64/4.03)
id AA18434; Fri, 19 Jan 1996 12:07:49 -0800
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 12:07:49 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: DIR PROBLEM DEFINITIVE SOLUTION...
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Cutting to the chase:
======================================================================
SOLUTION:
YOU NEED TO HAVE /ETC/GROUP!!!!!! This is not optional. The ls
command does not do the right thing if it does not have an
/etc/group it can read.
======================================================================
ANALYSIS:
So, here's my final analysis of the "dir/ls -l" problem. I now
understand the differences between /bin/ls and /usr/ucb/ls more than
I care to, and also know more about the internal code of ftpd than I
care to. I also know why some sites have this problem right away,
while others never experience it.
I followed the FAQ, and ran truss on ~ftp/bin/ls. Yes, all the
libraries are in fact there. I then ran 'chroot ~ftp /bin/ls', and
that worked too. That's not surprising, considering that tar and
compress have always done the right thing. While hacking about, I
remembered/discovered that there is a /bin/ls and a /usr/ucb/ls on
the system. When I copied /usr/ucb/ls to ~ftp/bin/ls, everything
appeared to work properly.
I ran 'chroot ~ftp /bin/ls ' and 'chroot ~ftp /bin/ls.ucb'.
Both of these worked. So now the task was to find out why ftpd didn't
like the /bin/ls. After running multiple options through both
versions of ls, the only real difference I could find was that the
/bin/ls always showed group information, but /usr/ucb/ls did not. I
then tried 'chroot ~ftp /bin/ls -l' and 'chroot ~ftp /bin/ls.ucb -l'.
Both of these core dumped. Running truss with these binaries showed
that they were both opening up the /etc/group file.
When I copied /etc/group to ~ftp/etc/group, everything worked fine.
======================================================================
SO WHY DO SOME SITES HAVE THIS PROBLEM AND OTHER SITES DON'T?
A) Some sites don't forget to copy /etc/group. (BTW: This was
buried in the Solaris ftpd man page. Their discussion of the
contents of directories lists each file needed by name on it's own
line, while the section on /etc is pushed together into a single
paragraph. My fault for missing it because I didn't read the man
page with a fine-tooth comb.)
B) Some sites run a version of ls that does not show groups by
default. The test here is to do a 'ls -g' (show groups) and see if
that works. If it fails, then you don't have a ~ftp/etc/group file.
C) Some sites (Non-Solaris-2.4) have a copy of ls that does the
right thing when there is not a group file. (ie, it shows that
group number instead of core dumping.)
======================================================================
SUGGESTIONS FOR CHANGES:
ftpd.c: This should really log an error message when something
core dumps.
ftpd/INSTALL: This mentions several problems with assorted
machines. There should probably be a warning about
this issue as well.
ftpd/INSTALL: This mentions the mailing list. It should
reference the FAQ and any patch sites as well.
FAQ: The FAQ should mention this problem/solution. This really
is a "Frequently Asked Question", and this fix is much
easier than trying to get the GNU fileutils package to
compile and statically link. (Yes, I know static is
better, but some people will take that chance anyways.)
>>Ericw
(This was too much work, in my not so humble opinion.)
From
[email protected] Fri Jan 19 13:06:47 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdO1E-00075kC; Fri, 19 Jan 96 13:06 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA21754; Fri, 19 Jan 1996 14:55:18 -0600
Received: from ns1.fni.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA21372 for <
[email protected]>; Fri, 19 Jan 1996 14:50:31 -0600
Received: (from mbrennen@localhost) by ns1.fni.com (8.7.3/8.7.3) id OAA05562; Fri, 19 Jan 1996 14:50:41 -0600
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 14:50:41 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To:
[email protected]
Subject: Re: DIR PROBLEM DEFINITIVE SOLUTION...
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Fri, 19 Jan 1996
[email protected] wrote:
> When I copied /etc/group to ~ftp/etc/group, everything worked fine.
Be careful doing this, especially with the ~ftp/etc/passwd file that has
to be present to give user IDs as well as group names. Strip these files
to the bare minimum, REPLACE ALL ENCODED PASSWORDS WITH A *, give a bogus
shell, etc. List no more users or groups than absolutely have to be there
to give an alpha name as owner and group. Don't give away useful
information for cracking your machine.
I don't mean to be pedantic/picky in a nasty way, but it is important to
realize the impact of copying your unstripped /etc/passwd and /etc/group
files to guest or anonymous ~ftp/etc/{passwd,group} accounts.
I have the beta version running so that anything in the /etc directory
cannot be fetched, but probably not many are running this way. This also
prevents real users from getting anything from the real /etc if you allow
real non-chrooted user ftp logins to your machine (use guest if you can).
See the docs in the beta to find out how.
Again, the beta location:
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-8.tar.Z
You can't see the directory contents, but get the file anyway. It's
there.
Michael
---------------------------------------------------------------------
Michael Brennen, President / /
[email protected]
FishNet, Inc. / Internet /
http://www.fni.com/
P.O. Box 940451 / Services / (214) 783-2553 (vox/fax)
Plano, TX 75094-0451 / / finger me for PGP public key
From
[email protected] Fri Jan 19 13:33:05 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdOQg-000DZJC; Fri, 19 Jan 96 13:33 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA23856; Fri, 19 Jan 1996 15:24:28 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA23715 for <
[email protected]>; Fri, 19 Jan 1996 15:22:33 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA05456; Fri, 19 Jan 1996 13:21:50 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA08428; Fri, 19 Jan 1996 13:17:51 +0800
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 13:17:51 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Cc:
[email protected]
Subject: Re: DIR PROBLEM DEFINITIVE SOLUTION...
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> On Fri, 19 Jan 1996
[email protected] wrote:
>
> > When I copied /etc/group to ~ftp/etc/group, everything worked fine.
>
> Be careful doing this, especially with the ~ftp/etc/passwd file that has
> to be present to give user IDs as well as group names. Strip these files
> to the bare minimum, REPLACE ALL ENCODED PASSWORDS WITH A *, give a bogus
> shell, etc. List no more users or groups than absolutely have to be there
> to give an alpha name as owner and group. Don't give away useful
> information for cracking your machine.
Yes, I knew that, and should have put in a "standard disclaimer", or spelled
out exactly what I meant by "copy".
>>Ericw
From
[email protected] Fri Jan 19 13:41:16 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdOYY-000DfaC; Fri, 19 Jan 96 13:41 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA24462; Fri, 19 Jan 1996 15:31:28 -0600
Received: from red.isearch.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id PAA24213 for <
[email protected]>; Fri, 19 Jan 1996 15:28:59 -0600
Received: (from tim@localhost) by red.isearch.com (8.6.10/8.6.10) id NAA15869 for
[email protected]; Fri, 19 Jan 1996 13:28:56 -0800
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 13:28:56 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Tim Capps <
[email protected]>
To:
[email protected]
Subject: Re: DIR PROBLEM DEFINITIVE SOLUTION...
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>> When I copied /etc/group to ~ftp/etc/group, everything worked fine.
>
>Be careful doing this, especially with the ~ftp/etc/passwd file that has
>to be present to give user IDs as well as group names. Strip these files
>to the bare minimum, REPLACE ALL ENCODED PASSWORDS WITH A *, give a bogus
>shell, etc. List no more users or groups than absolutely have to be there
>to give an alpha name as owner and group. Don't give away useful
>information for cracking your machine.
Per the docs, remove all users except "ftp" and "root", and do the above
things to those two.
Cheers,
Tim
From
[email protected] Fri Jan 19 13:54:05 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdOl1-000FHvC; Fri, 19 Jan 96 13:54 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA25893; Fri, 19 Jan 1996 15:45:55 -0600
Received: from red.isearch.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id PAA25598 for <
[email protected]>; Fri, 19 Jan 1996 15:43:01 -0600
Received: (from tim@localhost) by red.isearch.com (8.6.10/8.6.10) id NAA15899 for
[email protected]; Fri, 19 Jan 1996 13:42:50 -0800
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 13:42:50 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Tim Capps <
[email protected]>
To:
[email protected]
Subject: Re: dir command
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>FTP isn't something that you should just jump into and hope that it works.
>If you are working this way, you may be in for a big suprise when your
>machine gets broken in to.
Oh for crying out loud, I'm getting really sick and tired of all you
clever experts who undertstand security issues and so forth better than
the rest of the universe. For the record: I have been working with computers
for 18 years. I have implemented O/S level security systems, written
encryption systems, worked on firewalls, you name it.
This is the last time I'm going to say this, and I'll really be impressed
if somebody actually reads this and finally understands what I'm saying:
dir does the same thing as ls, with a different report format. ls is
built in to wu_ftpd. My assertion is that dir should be also. It is
not difficult code, and there is no reason I can think of that it can't
be put in there.
Several people (including myself) mentioned that it is difficult to get
dir working. You primma donnas replied with "oh well, you just don't
understand security". This is NOT a security issue!! It is difficult
to get external programs to run - it is NOT difficult to prevent people
from running external programs. You are looking at the wrong side of
the coin.
I cannot believe that putting the code for DIR into wu_ftpd is all that
hard, and I can't see how that causes security problems at all. If it
does, then I want the code for LS removed, as it must cause the same
security holes.
Reading the docs and setting up the directory trees is fairly straightforward
and therefore it is fairly easy to get the system secured.
> O'Reilly's books are a good
>start, and they could have answered a lot of your questions.
No they did not. The problems involved with getting "dir" to work on
a system (and by extension tar, gzip and whatever) have to do with system
dependant stuff like dynamic libraries which need to be there, in the
SunOS case, some kind of library cache file, and a varying amount of
"system" directories in the ~ftp tree. O'Reilly does an admirable job
of documenting how all this works, what the security considerations are,
and how to best go about approaching a good solution. They do not
go into the minutae of detail required to get "dir" running on every
system on the planet, and no one could expect them to do that.
>WU-FTPd is not
>your basic Word-Processor.
Really? What a revelation.
>If you want functionality right out of the box, you shouldn't be working
>with freeware FTPd daemons. You should be working with a company like
>Microsoft which provides an FTP daemon for NT that is simple to get up and
>running.
Not a useful suggestion (condecension aside) at all. We run a unix shop
and have no interest in MicroSloth products.
>Get the O'Reilly books. It took me one day to get the server up and running
>after I downloaded, but it took me 10 days to test it before I risked
>putting my machine on the net.
Then your machine was not a SunOS 4.1.4 Sparc. You lucky person.
Cheers,
Tim
From
[email protected] Fri Jan 19 15:11:42 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdPy9-0002M4C; Fri, 19 Jan 96 15:11 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA02077; Fri, 19 Jan 1996 17:03:22 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id RAA01960 for <
[email protected]>; Fri, 19 Jan 1996 17:02:15 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id AAA12453; Sat, 20 Jan 1996 00:02:38 +0100
Message-Id: <
[email protected]>
Date: Sat, 20 Jan 1996 00:02:38 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Perl script to tally logs in html
In-Reply-To: <9601182328.AA00772@griffin> from "Ann Keane" at Jan 18, 96 04:28:16 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Ann Keane, who wrote :
> I'm looking for a script someone posted ~6mo. ago which tallied
> the logs into a monthly report in html.
My perl-script doesn't make a report that is really monthly (this is why
I hesitated in replying) but it does make an overview of the usage of
the last day, and the total popularity of files.
ftp://ftp.cetis.hvu.nl/pub/koos/ftplogcheck
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Fri Jan 19 18:50:51 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdTOB-000DfKC; Fri, 19 Jan 96 18:50 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id UAA13208; Fri, 19 Jan 1996 20:43:46 -0600
Received: from novell.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id UAA13111 for <
[email protected]>; Fri, 19 Jan 1996 20:41:42 -0600
Received: from INET-NJ-Message_Server by fromGW
with Novell_GroupWise; Fri, 19 Jan 1996 19:39:59 -0500
Message-Id: <s0fff38f.008@fromGW>
Date: Fri, 19 Jan 1996 19:43:36 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Vard Lott)
To:
[email protected],
[email protected]
Subject: Re: Lingering ftp connections -Reply
Content-Type: text/plain
X-Mailer: Novell GroupWise 4.1
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Which particular wu-ftpd-2.4.2-beta-8
distribution are you using (and where is
it)? The one at Academ has obviously been
further customized.
Regards,
VL
>>> Keith Smith <
[email protected]>
01/17/96 03:26pm >>>
On 17 Jan 96, Vidiot wrote:
> <I have set up wu-ftp for my system, and
have been having lingering ftp
> > Install the patch below to the
wu-ftpd-2.4.2-beta-8 src directory.
>
Have you sent a copy of that patch to Stan?
------------
Keith Smith
[email protected]
Paradigm Technology Limited
Senior Software Engineer
PO Box 10-268
+64 (4) 495-1000 (voice)
Wellington, New Zealand
+64 (4) 405-1003 (fax)
Finger
[email protected]
for PGP key
[all required disclaimers
apply]
From
[email protected] Fri Jan 19 18:54:04 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdTRJ-000FCnC; Fri, 19 Jan 96 18:54 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id UAA13389; Fri, 19 Jan 1996 20:45:33 -0600
Received: from novell.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id UAA13118 for <
[email protected]>; Fri, 19 Jan 1996 20:41:45 -0600
Received: from INET-NJ-Message_Server by fromGW
with Novell_GroupWise; Fri, 19 Jan 1996 20:05:49 -0500
Message-Id: <s0fff99d.024@fromGW>
Date: Fri, 19 Jan 1996 20:09:38 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Vard Lott)
To:
[email protected]
Subject: Make: Error code 127
Content-Type: text/plain
X-Mailer: Novell GroupWise 4.1
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I'm trying to build wu-ftpd beta 8 from
Academ and getting the following fatal
situation:
Making ftpd.
yacc ftpcmd.y
Make: Error code 127
I'm using both gcc and the SPARCWorks
compilers, and both give the same problem.
Regards,
VL
From
[email protected] Sat Jan 20 00:24:19 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdYas-0006mNC; Sat, 20 Jan 96 00:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA25500; Sat, 20 Jan 1996 02:15:21 -0600
Received: from m54.oz.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id BAA25036 for <
[email protected]>; Sat, 20 Jan 1996 01:54:16 -0600
Received: by m54.oz.com id AA05778
(5.67a8/IDA-1.4.4 for
[email protected]); Fri, 19 Jan 1996 23:54:13 -0800
Message-Id: <
[email protected]>
Date: Fri, 19 Jan 1996 23:54:13 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Mitch Wright <
[email protected]>
To:
[email protected]
Subject: Re: dir command
In-Reply-To: <
[email protected]>
References: <
[email protected]>
X-Mid: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
/* Tim Capps [
[email protected]] writes: */
>dir does the same thing as ls, with a different report format. ls is
>built in to wu_ftpd.
>
I'm sure Tim knows this already, but for the benefit of others that might
not... NLST (aka ls) does indeed use the internal routine send_file_list()
to provide a simple directory listing. HOWEVER, when supplied with any
options is behaves much like LIST (aka dir) and calls /bin/ls to do the
dirty work. Anyway...
>My assertion is that dir should be also. It is
>not difficult code, and there is no reason I can think of that it can't
>be put in there.
>
Except that you'd be adding ALOT of extra code to ftpd. Sort of against
the UNIX philosophy, IMO.
>Several people (including myself) mentioned that it is difficult to get
>dir working. You primma donnas replied with "oh well, you just don't
>understand security". This is NOT a security issue!! It is difficult
>to get external programs to run - it is NOT difficult to prevent people
>from running external programs. You are looking at the wrong side of
>the coin.
>
You are right, however, it is more *worth while* to create an environment
such that the external programs can be invoked in a secure manner.
Again, IMO.
>I cannot believe that putting the code for DIR into wu_ftpd is all that
>hard, and I can't see how that causes security problems at all. If it
>
It's trivial actually. In a nutshell, just take the "useful" functions
out of GNU ls and put it into ftpd and make send_file_list() AND
ls_long() + ls_short() call them instead.
It shouldn't cause any more of a security problem than calling /bin/ls.
Heck, it should be less of a problem. The only issue I see is that it
bloats wu_ftpd even more which makes things like code reviews and alike
more difficult for those that even do such things anymore.
It's also more maintenance for the software which in turn could cause
security problems due to lack of attention in other areas. I put the
emphasis on "could" and certainly won't say "will".
>No they did not. The problems involved with getting "dir" to work on
>a system (and by extension tar, gzip and whatever) have to do with system
>dependant stuff like dynamic libraries which need to be there, in the
>
Of course, but again, if you *really* wanted to incorporate them in you
could just by taking the appropriate subsets from things GNU ls and so
forth. They've (FSF) spent alot of time making those tools work on a
variety of systems.
Personally, I prefer ftpd to be smaller and use "outside" tools where
appropriate. I made hacks into beta-6 so it could use the TIS fwtk
authserv daemon and thus get SKEY, SNK, and various other support
for authentication. This technique, while allowing ftpd proper to
be smaller really just spreads out the vulnerabilities a bit.
I suppose one should just say "pick your poison".
--
do svidaniya,
~mitch
Mitch Wright
[email protected]
From
[email protected] Sat Jan 20 14:09:16 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdlTF-000FjVC; Sat, 20 Jan 96 14:09 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA21340; Sat, 20 Jan 1996 16:01:30 -0600
Received: from hobbes.crim.ca by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id PAA21092 for <
[email protected]>; Sat, 20 Jan 1996 15:56:26 -0600
Received: from hobbes.crim.ca (localhost [127.0.0.1]) by hobbes.crim.ca (8.7.3/8.7.3) with ESMTP id QAA08825 for <
[email protected]>; Sat, 20 Jan 1996 16:55:02 -0500 (EST)
Message-Id: <
[email protected]>
Date: Sat, 20 Jan 1996 16:55:02 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Luc Desrosiers <
[email protected]>
To:
[email protected]
Subject: Re: dir command
In-Reply-To: Votre message du "Fri, 19 Jan 1996 07:46:32 GMT."
<
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: exmh version 1.6.5 12/11/95
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> > By the way, has anyone suceeded to compile the ls staticly under Solaris 2.4?
> >
> As was suggested a while back at the beginning of this LS/DIR thread, the
> problem is solved if ls is compiled statically.
>
> I have succesfully compiled ls statically using gcc -static and also
> SUNWspro cc -dn -Bstatic
Unless you have written your own libraries, you cannot be right.
Sun's static library libc.a contain a bug in which calls are made
to the dl library. Alas, there is no static version of this library
available on a sun. This problem is very well know by sun as you can
find heaps of description about it on sunsolve. Thus all static building
will fail with something like this:
gcc -static -o chgrp chgrp.o ../lib/libfu.a version.o
Undefined first referenced
symbol in file
dlclose /usr/lib/libc.a(nss_deffinder.o)
dlsym /usr/lib/libc.a(nss_deffinder.o)
dlopen /usr/lib/libc.a(nss_deffinder.o)
ld: fatal: Symbol referencing errors. No output written to chgrp
*** Error code 1
make: Fatal error: Command failed for target `chgrp'
This is what you will find on solaris 2.4 and 2.5. To my knowledge,
it's the case as well for sunos 4.x.
It should not be too much of a problem writing a custom made version
to get the thing right.
Luc Desrosiers
RISQ, CRIM
From
[email protected] Sat Jan 20 16:33:57 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdnjH-0000biC; Sat, 20 Jan 96 16:33 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA27135; Sat, 20 Jan 1996 18:27:06 -0600
Received: from bobcat.ent.ohiou.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA27028 for <
[email protected]>; Sat, 20 Jan 1996 18:24:54 -0600
Received: from chargers.ent.ohiou.edu by bobcat.ent.ohiou.edu (4.1/5.921016)
id AA10807; Sat, 20 Jan 96 19:24:39 EST
Received: by chargers.ent.ohiou.edu (4.1/SMI-4.1)
id AA03397; Sat, 20 Jan 96 19:31:19 EST
Message-Id: <
[email protected]>
Date: Sat, 20 Jan 96 19:31:19 EST
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Doug Martin)
To:
[email protected]
Subject: wu-ftpd
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi.. I need some help installing wu-ftpd-academ to use an
alt. password file..
(I have 3 types of services on my system and I'll like to
use wu-ftpd-academ on another port and another passwd file.)
Exp: port 2010 / password file - /etc/ftp-passwd & /etc/ftp-group
Do you have any Ideas how I can go by doing so? and or any
one I can ask for help about geting this done?
Thanks...
From
[email protected] Sat Jan 20 16:43:00 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdnrs-000FjfC; Sat, 20 Jan 96 16:42 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA27462; Sat, 20 Jan 1996 18:33:59 -0600
Received: from zcias1.ziff.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id SAA27202 for <
[email protected]>; Sat, 20 Jan 1996 18:29:07 -0600
Received: from DN-ARNOR by zcias1.ziff.com (PMDF V4.3-10 #6906)
id <
[email protected]>; Sat, 20 Jan 1996 19:29:02 -0500 (EST)
Received: from arnor.zis.ziff.com by arnor.zis.ziff.com (PMDF V4.3-10 #6906)
id <
[email protected]>; Sat,
20 Jan 1996 19:28:56 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Sat, 20 Jan 1996 19:28:56 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: "May we be forgiving of our systems' faults..." <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: FCNTL Lock Failed
MIME-version: 1.0
Content-transfer-encoding: 7BIT
X-Envelope-to:
[email protected]
X-VMS-To: IN%"
[email protected]"
X-VMS-Cc: IN%"
[email protected]",SEAN
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Well, I happen to have run into the same problem that Frank Everitt
did back on 08/26/95; and I have to ask his question again since
I can find no reply in my wu-ftpd archives. So...HELP!!! :)
Thanks!
Sean.
*** AS A REPEAT OF ***
From: IN%"
[email protected]" 29-AUG-1995 14:14:11.17 29-AUG-1995 14:14:00.00
To: IN%"
[email protected]"
CC:
Subj: FCNTL Lock Failed
To All....
Since this is the first time I'm using this process, I may not be doing
this posting correctly. Please take this fact into consideration before
I get flamed. Anyway, I'm having a problem with the WU-FTPD and here's
a brief description.
I've installed the WU ftpd and I'm having a problem with the deamon
releasing itself. I'm running on a Sparc 20 under Solaris 2.4. The
problem scenerio is:
After an initial ftp session is established on the Sparc 20, and the
user has exited using the "bye" command, "ftpd" continues to run. This
is determined by doing a "ps -deaf | grep ftp". When another ftp session is initiated, the user is prompted for his login, but never gets the
password prompt. This is because the ftp server has placed this process
into a "sleep" state and generates the following message.
"Aug 28 12:00:44 hawkeye ftpd[5771]: sleeping: fcntl lock of pid file
failed: Resource temporarily unavailable"
I've made sure that the ftpd is owned by "bin" and is the group "bin".
Any help on this problem will be greatly appreciated.
Thanks......
Frank Everitt
[email protected]
From
[email protected] Sat Jan 20 16:55:52 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tdo4Q-000FE0C; Sat, 20 Jan 96 16:55 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA28018; Sat, 20 Jan 1996 18:49:11 -0600
Received: from cadaver.acm.ndsu.NoDak.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA27923 for <
[email protected]>; Sat, 20 Jan 1996 18:47:15 -0600
Received: by cadaver.acm.ndsu.NoDak.edu (NX5.67d/NX3.0M)
id AA28796; Sat, 20 Jan 96 18:47:13 -0600
Message-Id: <
[email protected]>
Date: Sat, 20 Jan 1996 18:47:12 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Chadwick A. Dubuque" <
[email protected]>
To:
[email protected]
Subject: CFD: wu-ftpd announce email list
In-Reply-To: <
[email protected]> from "Doug Martin" at Jan 20, 96 07:31:19 pm
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Help: I am being held captive against my will.
X-Mailer: ELM [version 2.4 PL24 PGP2]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I'd like to keep up to date on any new bugs found and any new releases, but
w/o having the weekly "how do I do ls() on Solaris" discussion in my
mailbox. I have two proposals:
1) Posting of the FAQ weekly and inclusion of the FAQ's URL in the
distribution. That should help a little, even though the FAQ is only in
development. If someone needs help getting either of these done, I'm sure I
can find a way to help.
2) Creation of a new (moderated) mailing list with just the announcements. I
don't have a server, but I'm imagining the current list's server could
handle another list. The members of the current (discussion) list would
automatically get a copy of the items to the announce list, so there should
be no duplication of recipients. Plus, I'm imagining there are others like
me on this list who would rather only be on the announce list, which would
(obviously) have less traffic, thereby reducing load on the list server and
the net as a whole.
Please consider these proposals seriously, and those of you with the power
to initiate some of these measures please look into the feasibility of
implementing them.
--
Chadwick A. Dubuque
[email protected]
http://www.acm.ndsu.NoDak.edu/~cdubuque/ finger for PGP pub. key
postal:USA/58105-5164/ND/Fargo/IACC 258 NDSU Box 5164/Chad Dubuque
From
[email protected] Sun Jan 21 09:31:40 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0te3c7-0006p3C; Sun, 21 Jan 96 09:31 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA25321; Sun, 21 Jan 1996 11:23:12 -0600
Received: from xx.acs.appstate.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id LAA25044 for <
[email protected]>; Sun, 21 Jan 1996 11:14:20 -0600
Received: (from jmm@localhost) by xx.acs.appstate.edu (8.6.12/8.6.12) id MAA12111 for
[email protected]; Sun, 21 Jan 1996 12:14:20 -0500
Message-Id: <
[email protected]>
Date: Sun, 21 Jan 1996 12:14:20 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Martin Moore <
[email protected]>
To:
[email protected]
Subject: Problem with wu-ftpd on Ultrix 4.4 with UPGRADE security
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have just upgraded the security level on 2 of my Ultrix 4.4 machines to
UPGRADE. This allows for users to manually migrate from a BSD style password
file (encrypted password in the /etc/passwd file) to using a shadow style
passowrd file. After doing the security upgrade the following happened:
Anonymous ftp worked just fine, but real users would get login failures...
220 host.domain FTP server (Version wu-2.4(2) Sun Jan 21 01:43:25 EST 19
96) ready.
Name (host.domain:root): realuser
331 Password required for realuser.
Password:
530 Login incorrect.
Login failed.
ftp> quit
221 Goodbye.
This, I hope, is something that others have allready run into and hopefully
is fixable. I looked for an FAQ but have not found one. However, following
the installation instructions I built this version using build ult. It
complained about typenames and such and I replaces the ftp.h file as the
instructions show and then ran build ult again. It was successful.
I then ran bin/ckconfig and get ok results I think:
# ./bin/ckconfig
Checking _PATH_FTPUSERS :: /etc/ftpusers
ok.
Checking _PATH_FTPACCESS :: /usr/local/etc/ftpaccess
ok.
Checking _PATH_PIDNAMES :: /usr/local/daemon/ftpd/ftp.pids-%s
ok.
Checking _PATH_CVT :: /usr/local/etc/ftpconversions
ok.
Checking _PATH_XFERLOG :: /usr/adm/xferlog
ok.
Checking _PATH_PRIVATE :: /etc/ftpgroups
ok.
Checking _PATH_FTPHOSTS :: /usr/local/etc/ftphosts
ok.
Again the anonymous ftp users are working just fine. It is the real users
who can not login.
Any help would be greatly appreciated! If you need to know more details
or see logs of access or whatever I will try to quickly provide them.
Thanks in advance!
--
J Martin Moore (704) 262-6274
Appalachian State University
Academic Computing Services
Room 2067 New COB
Boone, NC 28608
[email protected]
[email protected]
From
[email protected] Sun Jan 21 11:25:02 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0te5No-0006p3C; Sun, 21 Jan 96 11:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA29691; Sun, 21 Jan 1996 13:17:47 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA29501 for <
[email protected]>; Sun, 21 Jan 1996 13:14:00 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id UAA19055; Sun, 21 Jan 1996 20:14:06 +0100
Message-Id: <
[email protected]>
Date: Sun, 21 Jan 1996 20:14:06 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Problem with wu-ftpd on Ultrix 4.4 with UPGRADE security
In-Reply-To: <
[email protected]> from "Martin Moore" at Jan 21, 96 12:14:20 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Martin Moore, who wrote :
> I have just upgraded the security level on 2 of my Ultrix 4.4 machines to
> UPGRADE. This allows for users to manually migrate from a BSD style password
> file (encrypted password in the /etc/passwd file) to using a shadow style
> passowrd file. After doing the security upgrade the following happened:
> This, I hope, is something that others have allready run into and hopefully
> is fixable. I looked for an FAQ but have not found one.
http://www.hvu.nl/~koos/wu-ftpd-faq.html
Anyway, from looking around the password-handling code of wu-ftpd, I conclude
wu-ftpd is either with shadow passwords or without shadow passwords. So,
a transition system like yours is not supported.
Wu-ftpd uses the password calls from libc (or libshadow, when compiled with
shadow password enabled).
If _your_ libshadow can handle your situation correctly (I guess it can,
since your system runs ;) maybe rebuilding it with shadow support enabled
will fix this.
To enable shadow support, change the master config file for your system,
config/config.ult to enable shadow password support.
Also, check the manpage(s) for the getpwent routines and their shadow
counterparts. Maybe you need to call a different crypt (pw_encrypt).
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Mon Jan 22 08:03:18 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teOi9-000FmzC; Mon, 22 Jan 96 08:03 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA07534; Mon, 22 Jan 1996 09:58:14 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA03843 for <
[email protected]>; Mon, 22 Jan 1996 09:38:20 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id MAA25486; Mon, 22 Jan 1996 12:03:00 +0100
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 12:03:00 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: CFD: wu-ftpd announce email list
In-Reply-To: <
[email protected]> from "Chadwick A. Dubuque" at Jan 20, 96 06:47:12 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Chadwick A. Dubuque, who wrote :
> 1) Posting of the FAQ weekly and inclusion of the FAQ's URL in the
> distribution. That should help a little, even though the FAQ is only in
> development.
I think the FAQ is a bit to big for complete posting. A weekly pointer to
the FAQ, with just an overview of the contents would be better. I am willing
too and capable of doing something like that. Using crontab.
> 2) Creation of a new (moderated) mailing list with just the announcements. I
> don't have a server, but I'm imagining the current list's server could
> handle another list.
'we' would have to ask wuarchive. (Would the person from wuarchive reading this
list please stand up ;)
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Mon Jan 22 08:43:11 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tePK2-0000dRC; Mon, 22 Jan 96 08:42 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA13805; Mon, 22 Jan 1996 10:38:00 -0600
Received: from xx.acs.appstate.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA06620 for <
[email protected]>; Mon, 22 Jan 1996 09:52:56 -0600
Received: (from jmm@localhost) by xx.acs.appstate.edu (8.6.12/8.6.12) id VAA02606 for
[email protected]; Sun, 21 Jan 1996 21:25:52 -0500
Message-Id: <
[email protected]>
Date: Sun, 21 Jan 1996 21:25:51 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Martin Moore <
[email protected]>
To:
[email protected]
Subject: Re: Problem with wu-ftpd on Ultrix 4.4 with UPGRADE security
In-Reply-To: <
[email protected]> from "Koos van den Hout _U nix and we all_" at Jan 21, 96 08:14:06 pm
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Thanks! That did the trick! I was missing the config.ult file changes.
There was a #undef that needed to be changed to a #define
19c19
< #define ULTRIX_AUTH
---
> #undef ULTRIX_AUTH
I had already added the -lauth to the makefile.ult but somehow I missed
the config.ult file all together.
LIBES = -lsupport -lauth
Again thank you for pointing me to the solution!
>
>
http://www.hvu.nl/~koos/wu-ftpd-faq.html
>
> Anyway, from looking around the password-handling code of wu-ftpd, I conclude
> wu-ftpd is either with shadow passwords or without shadow passwords. So,
> a transition system like yours is not supported.
>
> Wu-ftpd uses the password calls from libc (or libshadow, when compiled with
> shadow password enabled).
>
> If _your_ libshadow can handle your situation correctly (I guess it can,
> since your system runs ;) maybe rebuilding it with shadow support enabled
> will fix this.
>
> To enable shadow support, change the master config file for your system,
> config/config.ult to enable shadow password support.
>
> Also, check the manpage(s) for the getpwent routines and their shadow
> counterparts. Maybe you need to call a different crypt (pw_encrypt).
>
> Grtx. KH
--
J Martin Moore (704) 262-6274
Appalachian State University
Academic Computing Services
Room 2067 New COB
Boone, NC 28608
[email protected]
[email protected]
From
[email protected] Mon Jan 22 08:44:51 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tePMD-0000d8C; Mon, 22 Jan 96 08:44 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA14086; Mon, 22 Jan 1996 10:40:20 -0600
Received: from ns1.fni.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id KAA09043 for <
[email protected]>; Mon, 22 Jan 1996 10:08:49 -0600
Received: (from mbrennen@localhost) by ns1.fni.com (8.7.3/8.7.3) id KAA03100; Mon, 22 Jan 1996 10:08:58 -0600
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 10:08:57 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To:
[email protected]
Subject: First Virtual wu-ftpd hacks
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Just a notice to the list: I am presently working on adding the First
Virtual FTP hacks to beta 8. I did not know FV had hacked the daemon
until Friday. The version of wu-ftpd that FV hacked looks pretty old, and
I don't want to regress that far back.
I will work with Stan Barber to get the hacks folded into the beta source
stream. Don't know when that will be -- I have to get the new daemon
checked out with FV first to make sure it works okay. Probably not many
are using this, but I need it for my own purposes and want to see it in
the ongoing source stream.
Michael
---------------------------------------------------------------------
Michael Brennen, President / /
[email protected]
FishNet, Inc. / Internet /
http://www.fni.com/
P.O. Box 940451 / Services / (214) 783-2553 (vox/fax)
Plano, TX 75094-0451 / / finger me for PGP public key
From
[email protected] Mon Jan 22 08:47:41 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tePP7-000773C; Mon, 22 Jan 96 08:47 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA14396; Mon, 22 Jan 1996 10:43:18 -0600
Received: from cadaver.acm.ndsu.NoDak.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA12016 for <
[email protected]>; Mon, 22 Jan 1996 10:25:02 -0600
Received: from t-rex.acm.ndsu.NoDak.edu by cadaver.acm.ndsu.NoDak.edu (NX5.67d/NX3.0M)
id AA19842; Sun, 21 Jan 96 22:25:22 -0600
Received: by t-rex.acm.ndsu.NoDak.edu (NX5.67d/NX3.0X)
id AA13354; Sun, 21 Jan 96 22:25:21 -0600
Message-Id: <
[email protected]>
Date: Sun, 21 Jan 1996 22:25:18 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Chadwick A. Dubuque" <
[email protected]>
To:
[email protected]
Subject: wu-ftpd on linux with shadow passwds and expiring
In-Reply-To: <
[email protected]> from "Koos van den Hout _U nix and we all_" at Jan 21, 96 08:14:06 pm
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Help: I am being held captive against my will.
X-Mailer: ELM [version 2.4 PL24 PGP2]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I think I've discovered an "absent feature" (bug) from wu-ftpd on linux with
shadow passwords: It's not honoring the fact that the account has expired.
If you have shadow passwords on linux, could you please test to make sure
it's not just me that is having this problem.
In the meantime, I'll be working on a solution. I'm thinking I'll rip some
of the code out of the login() that somes with the shadow package.
--
Chadwick A. Dubuque
[email protected]
http://www.acm.ndsu.NoDak.edu/~cdubuque/ finger for PGP pub. key
postal:USA/58105-5164/ND/Fargo/IACC 258 NDSU Box 5164/Chad Dubuque
From
[email protected] Mon Jan 22 09:03:24 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tePe3-000FCnC; Mon, 22 Jan 96 09:03 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA15931; Mon, 22 Jan 1996 10:58:27 -0600
Received: from diamant.dir.univ-rouen.fr by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id KAA15641 for <
[email protected]>; Mon, 22 Jan 1996 10:54:53 -0600
Received: (from oger@localhost) by diamant.dir.univ-rouen.fr (8.7.1/8.7.1) id RAA27816 for
[email protected]; Mon, 22 Jan 1996 17:57:22 GMT
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 17:57:22 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From: Thierry Oger <
[email protected]>
To:
[email protected]
Subject: unsuscribe
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
unsuscribe Listprocessor
From
[email protected] Mon Jan 22 09:48:44 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teQKq-000DUyC; Mon, 22 Jan 96 09:47 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA19685; Mon, 22 Jan 1996 11:42:45 -0600
Received: from pahtoh.cwu.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id LAA19393 for <
[email protected]>; Mon, 22 Jan 1996 11:39:46 -0600
Received: from tahoma.cwu.edu (
[email protected] [198.104.67.25]) by pahtoh.cwu.edu (8.6.12/8.6.9) with ESMTP id JAA25004 for <
[email protected]>; Mon, 22 Jan 1996 09:39:45 -0800
Received: (from skynyrd@localhost) by tahoma.cwu.edu (8.6.12/8.6.9) id JAA16296; Mon, 22 Jan 1996 09:39:43 -0800
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 09:39:43 -0800 (PST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Chris Timmons <
[email protected]>
To:
[email protected]
Subject: Re: Problem with wu-ftpd on Ultrix 4.4 with UPGRADE security
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On the topic of Ultrix, I've got an instance of the "'ls -l' and 'dir'
commands produce no ouput" problem. (all) Ultrix binaries are statically
linked, and I did search through the mail archives and found another instance
of the question but the answer was missing. 'ls' works fine for real and
anonymous users. I've gone through my configuration and worked through the
FAQ but cannot seem to figure this one out...
This is on Ultrix/VAX 4.4 and the ftpd is started from inetd via a tcp
wrapper.
-Chris
On Sun, 21 Jan 1996, Martin Moore wrote:
> Thanks! That did the trick! I was missing the config.ult file changes.
> There was a #undef that needed to be changed to a #define
> 19c19
> < #define ULTRIX_AUTH
> ---
> > #undef ULTRIX_AUTH
>
> I had already added the -lauth to the makefile.ult but somehow I missed
> the config.ult file all together.
> LIBES = -lsupport -lauth
>
> Again thank you for pointing me to the solution!
>
>
> >
> >
http://www.hvu.nl/~koos/wu-ftpd-faq.html
> >
> > Anyway, from looking around the password-handling code of wu-ftpd, I conclude
> > wu-ftpd is either with shadow passwords or without shadow passwords. So,
> > a transition system like yours is not supported.
> >
> > Wu-ftpd uses the password calls from libc (or libshadow, when compiled with
> > shadow password enabled).
> >
> > If _your_ libshadow can handle your situation correctly (I guess it can,
> > since your system runs ;) maybe rebuilding it with shadow support enabled
> > will fix this.
> >
> > To enable shadow support, change the master config file for your system,
> > config/config.ult to enable shadow password support.
> >
> > Also, check the manpage(s) for the getpwent routines and their shadow
> > counterparts. Maybe you need to call a different crypt (pw_encrypt).
> >
> > Grtx. KH
>
> --
> J Martin Moore (704) 262-6274
> Appalachian State University
> Academic Computing Services
> Room 2067 New COB
> Boone, NC 28608
>
[email protected]
>
[email protected]
>
From
[email protected] Mon Jan 22 10:20:25 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teQq6-000FCoC; Mon, 22 Jan 96 10:19 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA22358; Mon, 22 Jan 1996 12:15:13 -0600
Received: from dime.fv.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA22201 for <
[email protected]>; Mon, 22 Jan 1996 12:13:23 -0600
Received: from localhost (localhost [127.0.0.1]) by dime.fv.com (8.7.3/8.6.10) with ESMTP id KAA19798 for <
[email protected]>; Mon, 22 Jan 1996 10:14:07 -0800 (PST)
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 10:14:07 -0800
Reply-To: "Mike D. Kail" <
[email protected]>
Sender:
[email protected]
From: "Mike D. Kail" <
[email protected]>
To:
[email protected]
Subject: Re: First Virtual wu-ftpd hacks
In-Reply-To: (Your message of Mon, 22 Jan 1996 10:08:57 CST.)
<
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: exmh version 1.6.5 12/8/95
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Mon, 22 Jan 1996 10:08:57 CST, Michael Brennen wrote:
>
> Just a notice to the list: I am presently working on adding the First
> Virtual FTP hacks to beta 8. I did not know FV had hacked the daemon
> until Friday. The version of wu-ftpd that FV hacked looks pretty old, and
> I don't want to regress that far back.
>
> I will work with Stan Barber to get the hacks folded into the beta source
> stream. Don't know when that will be -- I have to get the new daemon
> checked out with FV first to make sure it works okay. Probably not many
> are using this, but I need it for my own purposes and want to see it in
> the ongoing source stream.
>
Would it be possible to include me in on this thread. I'm currently
working on all of FV's security issues, and would like a chance to work
on/with this
Thanks
--
/*----------------------------------------------------------*/
/* Mike D. Kail | voice: (619) 793-3359 */
/* System Administrator | fax: (619) 793-2950 */
/* FIRST VIRTUAL Holdings Inc. | e-mail:
[email protected] */
/*----------------------------------------------------------*/
From
[email protected] Mon Jan 22 10:27:20 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teQxX-000FCoC; Mon, 22 Jan 96 10:27 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA23031; Mon, 22 Jan 1996 12:22:59 -0600
Received: from yen.fv.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA22690 for <
[email protected]>; Mon, 22 Jan 1996 12:19:50 -0600
Received: (from lowery@localhost) by yen.fv.com (8.6.9/8.6.9) id KAA23033; Mon, 22 Jan 1996 10:14:55 -0800
Message-Id: <9601221014.ZM23031@yen>
Date: Mon, 22 Jan 1996 10:14:55 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: "Carlyn M. Lowery" <
[email protected]>
To: "Mike D. Kail" <
[email protected]>,
[email protected]
Subject: Re: First Virtual wu-ftpd hacks
In-Reply-To: "Mike D. Kail" <
[email protected]>
"Re: First Virtual wu-ftpd hacks" (Jan 22, 10:14)
References: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Z-Mail Lite (3.2.0 5jul94)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Jan 22, 10:14, Mike D. Kail wrote:
> Subject: Re: First Virtual wu-ftpd hacks
> On Mon, 22 Jan 1996 10:08:57 CST, Michael Brennen wrote:
> >
> > Just a notice to the list: I am presently working on adding the First
> > Virtual FTP hacks to beta 8. I did not know FV had hacked the daemon
> > until Friday. The version of wu-ftpd that FV hacked looks pretty old,
and
> > I don't want to regress that far back.
> >
> > I will work with Stan Barber to get the hacks folded into the beta source
> > stream. Don't know when that will be -- I have to get the new daemon
> > checked out with FV first to make sure it works okay. Probably not many
> > are using this, but I need it for my own purposes and want to see it in
> > the ongoing source stream.
> >
>
> Would it be possible to include me in on this thread. I'm currently
> working on all of FV's security issues, and would like a chance to work
> on/with this
By the way, Washington Univerity did the FV integration. We at FV only made
a few minor bug fixes to their excellent work.
--Carlyn
From
[email protected] Mon Jan 22 10:36:44 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teR6W-000FHMC; Mon, 22 Jan 96 10:36 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA23970; Mon, 22 Jan 1996 12:32:08 -0600
Received: from garbanzo.SSESCO.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA23393 for <
[email protected]>; Mon, 22 Jan 1996 12:26:12 -0600
Received: from ribs.ssesco.com by garbanzo.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.srv.92.07.22)
id AA19464; Mon, 22 Jan 1996 12:26:18 -0600
Received: by ribs.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.cli.92.10.15)
id AA16048; Mon, 22 Jan 1996 12:26:07 -0600
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 12:26:06 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected] (wuftp)
Subject: Re: DIR PROBLEM DEFINITIVE SOLUTION...
In-Reply-To: <
[email protected]> from "
[email protected]" at Jan 19, 96 12:07:49 pm
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I want to thank
[email protected] for the prompt reply, however
I'm still having difficulty. I have a valid ~/ftp/etc/group.
I've downloaded, compiled, and statically linked the GNU ls
command and placed it into ~/ftp/bin (as well as ~/ftp/bin/ftp-exec
because I don't know what the hell that's for).
I gather that this is a common problem and that the above
are a couple of common solutions. They don't seem to work
for me. Any other ideas?
[email protected] writes:
> Cutting to the chase:
> ======================================================================
> SOLUTION:
>
> YOU NEED TO HAVE /ETC/GROUP!!!!!! This is not optional. The ls
> command does not do the right thing if it does not have an
> /etc/group it can read.
>
> ======================================================================
> ANALYSIS:
--
Disclaimer: The above are my opinions and SSESCO can't have them!
William R. Nau
Supercomputer Systems Engineering and Services Company (SSESCO)
511 11th Avenue South, Suite 216
Minneapolis, Minnesota 55415-1536
Phone: 612-342-0003, Email:
[email protected], WWW:
http://www.SSESCO.com
From
[email protected] Mon Jan 22 11:20:14 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teRlX-000D9cC; Mon, 22 Jan 96 11:18 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA27633; Mon, 22 Jan 1996 13:14:37 -0600
Received: from cserv.iupui.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA27131 for <
[email protected]>; Mon, 22 Jan 1996 13:09:42 -0600
Received: from CSERV-Message_Server by cserv.iupui.edu
with WordPerfect_Office; Mon, 22 Jan 1996 14:08:45 -0500
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 13:56:19 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: WUFPTD 2.4 with HP-UX 10.01
X-Mailer: WordPerfect Office 4.0
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Greetings,
I've installed WU-FTPD 2.4 on an HP-UX 10.01server, but seem to be
missing shared libs to run the LS and DIR commands. I can transfer
files ok, but just can't list directories, etc.
The only thing I have in ~ftp/bin is ls.
Any suggestions? I'm assuming I need some shared HP-UX libs?
TIA.
Brad Christensen
From
[email protected] Mon Jan 22 11:47:22 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teSCs-0000fFC; Mon, 22 Jan 96 11:47 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA00275; Mon, 22 Jan 1996 13:42:55 -0600
Received: from carbon.cary.mci.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA29708 for <
[email protected]>; Mon, 22 Jan 1996 13:39:06 -0600
Received: by carbon.cary.mci.net (8.6.12/kaw-mci.net/feb95)
id OAA23374; Mon, 22 Jan 1996 14:39:04 -0500
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 14:39:04 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Frank Everitt <
[email protected]>
To:
[email protected]
Subject: unsuscribe
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
unsuscribe Listprocessor
From
[email protected] Mon Jan 22 12:00:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teSPI-000DcYC; Mon, 22 Jan 96 12:00 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA01337; Mon, 22 Jan 1996 13:55:42 -0600
Received: from ladybug.cec.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA01216 for <
[email protected]>; Mon, 22 Jan 1996 13:54:41 -0600
Received: by ladybug.cec.wustl.edu (5.x/ECL-A1.27)
id AA01740; Mon, 22 Jan 1996 13:54:16 -0600
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 13:54:16 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Robert Ellsworth <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: unsuscribe
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Mon, 22 Jan 1996, Frank Everitt wrote:
> unsuscribe Listprocessor
To unsubscribe from the list, please send a message to:
[email protected]
with no subject, and place the words
unsubscribe wu-ftpd
in the body. (Please be sure to spell 'unsubscribe' correctly.)
Andy Ellsworth | "...The wind was not the beginning. There are
[email protected] | neither beginnings nor endings to the turning of
Assistant Admin, wuarchive | the Wheel of Time. But it was _a_ beginning..."
http://cec.wustl.edu/~are1 | --The Wheel of Time saga, Robert Jordan
From
[email protected] Mon Jan 22 12:16:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teSdZ-000D9cC; Mon, 22 Jan 96 12:14 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA02664; Mon, 22 Jan 1996 14:10:32 -0600
Received: from acs5.bu.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA02329 for <
[email protected]>; Mon, 22 Jan 1996 14:07:23 -0600
Received: by acs5.bu.edu (8.6.11/BU_SmartClient-1.0)
id PAA27193; Mon, 22 Jan 1996 15:03:06 -0500
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 15:03:06 -0500 (EST)
Reply-To: Nik Conwell <
[email protected]>
Sender:
[email protected]
From: Nik Conwell <
[email protected]>
To:
[email protected]
Cc: Koos van den Hout _U nix and we all_ <
[email protected]>
Subject: Re: Time difference during logging..
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
X-Sender: Nik Conwell <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Fri, 19 Jan 1996, Koos van den Hout _U nix and we all_ wrote:
> Quoting Denise Tjong, who wrote :
>
> > I've installed academ's wu-ftpd beta 8 version on AIX3.2.5 and everything
> > seems to work fine except the time it logs in the xferlog file.
> >
> > Any suggestions would be very appreciated.
>
> Let me guess : the difference is an exact number of hours so it looks like
> your host has been moved to the Greenwich meridian ?
>
> Anyway, what is probably happening is that the SETPROCTITLE code is
> overwriting the environment in stead of overwriting the command line.
>
> Solution : rebuild wu-ftpd without SETPROCTITLE enabled.
I've also fixed this, and sent the fix in to the moderators. I didn't
get any response back from them... Here's a message talking about it:
>From
[email protected] Fri Nov 17 08:35:42 1995
Date: Mon, 25 Sep 1995 16:05:23 -0400 (EDT)
From: Nik Conwell <
[email protected]>
Sender: Nik Conwell <
[email protected]>
Reply-To: Nik Conwell <
[email protected]>
Subject: Re: AIX version of WU-FTPD
To:
[email protected],
[email protected],
Jason Patterson <
[email protected]>
In-Reply-To: <v01530500ac8c213f0794@[150.131.15.59]>
Message-ID: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
On Mon, 25 Sep 1995, David L. Thompson wrote:
> I have been trying to get the AIX version of the beta up and running. I've
> run into a few problems and thought that I would mention them.
Thanks for consolidating these and bringing them up. I had also run into a
couple of these problems (and had notified the wu-ftpd admins...).
I've also recently found/fixed another (this problem also appears in sendmail
since it uses setproctitle code that looks suspiciously the same...).
ATTN: Jason Patterson (<
[email protected]>), this code may fix your
timezone problem as well (I've no Solaris experience, so can't be sure...)
4) The setproctitle support code kills the environment variables. This
messes up the syslog code in that syslog appears to get its timezone from the
environment (TZ??) (on the first call). If you do a syslog before a
setproctitle, things will be ok. If you do a setproctitle before a syslog,
the syslog timezone will be wrong (will probably default to GMT).
Here's the code change I made... (Only the AIX_LEAVE_ENV stuff is important
- some other mods I made showed up in the diff.)
acs-tst [src] gnudiff -c ftpd.c.19950829 ftpd.c
*** ftpd.c.19950829 Thu Aug 24 11:32:03 1995
--- ftpd.c Tue Aug 29 09:25:18 1995
***************
*** 314,325 ****
--- 314,333 ----
openlog("ftpd", LOG_PID);
#endif
+
#ifdef SETPROCTITLE
/* Save start and extent of argv for setproctitle. */
Argv = argv;
+ #ifdef AIX_LEAVE_ENV
+ /* LastArgv will be set when we figure it out as the last argv entry. It */
+ /* should not be the last envp entry since erasing the env entries will */
+ /* cause problems with things trying to get at them (such as syslog, for */
+ /* figuring out the date/time (ENV TZ)). */
+ #else
while (*envp)
envp++;
LastArgv = envp[-1] + strlen(envp[-1]);
+ #endif /* AIX_LEAVE_ENV */
#endif /* SETPROCTITLE */
argc--, argv++;
***************
*** 393,398 ****
--- 401,409 ----
argc--, argv++;
}
(void) freopen(_PATH_DEVNULL, "w", stderr);
+ #ifdef AIX_LEAVE_ENV
+ LastArgv = argv[-1] + strlen(argv[-1]) + 1;
+ #endif /* AIX_LEAVE_ENV */
/* Checking for random signals ... */
#ifndef SIG_DEBUG
***************
*** 495,500 ****
--- 506,512 ----
if (fcntl(fileno(stdin), F_SETOWN, getpid()) == -1)
syslog(LOG_ERR, "fcntl F_SETOWN: %m");
#endif
+
dolog(&his_addr);
/* Set up default state */
data = -1;
***************
*** 1049,1054 ****
--- 1061,1071 ----
if (!meta_authenticate(pw->pw_name, passwd, error_str)) {
reply(530, error_str);
+
+ #ifdef LOG_FAILED
+ syslog(LOG_INFO, "failed login from %s [%s], %s",
+ remotehost, remoteaddr, the_user);
+ #endif
return;
}
***************
*** 2615,2626 ****
setproctitle(proctitle);
#endif /* SETPROCTITLE */
- #if 0 /* this is redundant unless the caller doesn't do *anything*, and
- tcpd will pick it up and deal with it better anyways. _H*/
if (logging)
syslog(LOG_INFO, "connection from %s [%s]", remotehost,
remoteaddr);
- #endif
}
/* Record logout in wtmp file and exit with supplied status. */
--- 2632,2640 ----
Let me know what you think about this.
Thanks very much.
-nik
Nik Conwell Boston University
[email protected]
From
[email protected] Mon Jan 22 12:35:04 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teSx0-0000ZqC; Mon, 22 Jan 96 12:34 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA04516; Mon, 22 Jan 1996 14:30:06 -0600
Received: from ns1.sterling.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA04338 for <
[email protected]>; Mon, 22 Jan 1996 14:29:09 -0600
Received: by ns1.sterling.com
id AA12919; Mon, 22 Jan 1996 14:26:20 -0600
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 96 14:26:20 CST
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Re: CFD: wu-ftpd announce email list
In-Reply-To: <
[email protected]>; from "Koos van den Hout _U nix and we all_" at Jan 22, 96 12:03 pm
X-Mailer: ELM [version 2.3 PL11]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> > 2) Creation of a new (moderated) mailing list with just the announcements. I
> > don't have a server, but I'm imagining the current list's server could
> > handle another list.
>
> 'we' would have to ask wuarchive. (Would the person from wuarchive reading this
> list please stand up ;)
>
I was under the impression that it already existed.
[...]
Sender:
[email protected]
To:
[email protected]
Subject: SUBSCRIBE WU-FTPD-ANNOUNCE Kent Landfield
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Welcome to WU-FTPD-ANNOUNCE!
The purpose of this list is to announce information (like new
releases and patches) to users of the wuarchive ftp server. You will
not be able to send messages to this list -- it is for announcement
purposes only.
There is also a general discussion list. You may subscribe to this
list by sending a mail message with a body of
SUBSCRIBE WU-FTPD <your full name>
to the list server (
[email protected]).
Please save this message for future reference.
=============================================================================
[...]
Is this for a different purpose than what I subscribed for ? Not sure
who the moderator is...
-Kent+
--
Kent Landfield INTERNET:
[email protected]
Sterling Software FAX: 1-214-891-8655
Phone: 1-214-891-8693 Pager: 1-800-386-0277
Please send comp.sources.misc-related mail to
[email protected].
From
[email protected] Mon Jan 22 12:42:29 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teT41-00079yC; Mon, 22 Jan 96 12:42 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA05262; Mon, 22 Jan 1996 14:37:49 -0600
Received: from xx.acs.appstate.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA05130 for <
[email protected]>; Mon, 22 Jan 1996 14:36:02 -0600
Received: (from jmm@localhost) by xx.acs.appstate.edu (8.6.12/8.6.12) id PAA07001 for
[email protected]; Mon, 22 Jan 1996 15:35:56 -0500
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 15:35:56 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Martin Moore <
[email protected]>
To:
[email protected]
Subject: Re: Problem with wu-ftpd on Ultrix 4.4 with UPGRADE security
In-Reply-To: <
[email protected]> from "Chris Timmons" at Jan 22, 96 09:39:43 am
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
>
> On the topic of Ultrix, I've got an instance of the "'ls -l' and 'dir'
> commands produce no ouput" problem. (all) Ultrix binaries are statically
> linked, and I did search through the mail archives and found another instance
> of the question but the answer was missing. 'ls' works fine for real and
> anonymous users. I've gone through my configuration and worked through the
> FAQ but cannot seem to figure this one out...
>
> This is on Ultrix/VAX 4.4 and the ftpd is started from inetd via a tcp
> wrapper.
>
> -Chris
>
I have the wrapper around my ftpd as well. Feel free to ftp to
ftp.acs.appstate.edu and poke around to see the files in my ~ftp/bin
directory. Its contains the ls command that is just copied from its
standard location. Also the ~ftp/etc/directory must have the svc.conf, passwd
and group files...
This is not much but I hope it helps...
--
J Martin Moore (704) 262-6274
Appalachian State University
Academic Computing Services
Room 2067 New COB
Boone, NC 28608
[email protected]
[email protected]
From
[email protected] Mon Jan 22 12:43:43 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teT5F-000Dg9C; Mon, 22 Jan 96 12:43 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA05436; Mon, 22 Jan 1996 14:38:56 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA05126 for <
[email protected]>; Mon, 22 Jan 1996 14:36:01 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id VAA02964; Mon, 22 Jan 1996 21:35:44 +0100
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 21:35:44 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: wu-ftpd on linux with shadow passwds and expiring
In-Reply-To: <
[email protected]> from "Chadwick A. Dubuque" at Jan 21, 96 10:25:18 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Chadwick A. Dubuque, who wrote :
> I think I've discovered an "absent feature" (bug) from wu-ftpd on linux with
> shadow passwords: It's not honoring the fact that the account has expired.
>
> If you have shadow passwords on linux, could you please test to make sure
> it's not just me that is having this problem.
>
> In the meantime, I'll be working on a solution. I'm thinking I'll rip some
> of the code out of the login() that somes with the shadow package.
Hmmm.. the shadow password support with Linux is still a bit 'clunky'.
Maybe a couple #IFDEF linux && SHADOW_PWD or something like that would
improve things. This way it could be merged with the main code in a way
that is more transparant for future users.
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Mon Jan 22 12:53:34 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teTEy-00079yC; Mon, 22 Jan 96 12:53 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA06320; Mon, 22 Jan 1996 14:49:09 -0600
Received: from ns1.sterling.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA05914 for <
[email protected]>; Mon, 22 Jan 1996 14:44:20 -0600
Received: by ns1.sterling.com
id AA13078; Mon, 22 Jan 1996 14:41:31 -0600
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 96 14:41:31 CST
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Re: CFD: wu-ftpd announce email list
In-Reply-To: <
[email protected]>; from "Kent Landfield" at Jan 22, 96 2:26 pm
X-Mailer: ELM [version 2.3 PL11]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> Is this for a different purpose than what I subscribed for ? Not sure
> who the moderator is...
Here is the current information on the wu-ftpd-announce list.
***
***
[email protected]: Announcements about the WUARCHIVE-FTPD project
***
*** Date created: Tue Mar 14 16:02:26 1995
--- The current list settings are as follows:
OPEN: subscriptions are open.
SEND: open to all.
VISIBLE: the list shows up in listings.
NO-ARCHIVE: no logs are kept.
STATS: open to all.
REVIEW: open to all.
ARCHIVES: available to all.
MODERATED: postings edited by
[email protected] [email protected] .
DIGEST: no digests collected.
MESSAGE-LIMIT: unlimited daily postings.
FORWARD-REJECTS: no; all listproc-generated errors sent to sender.
REPLY-TO-LIST
AUTO-DELETE-SUBSCRIBERS: yes.
KEEP-RESENT-LINES: yes; Resent- header lines preserved.
DELIVERY-ERRORS: non-delivery reports are sent to the owners.
OWNERS:
[email protected] [email protected]
-Kent+
--
Kent Landfield INTERNET:
[email protected]
Sterling Software FAX: 1-214-891-8655
Phone: 1-214-891-8693 Pager: 1-800-386-0277
Please send comp.sources.misc-related mail to
[email protected].
From
[email protected] Mon Jan 22 12:55:45 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teTH9-00079oC; Mon, 22 Jan 96 12:55 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA06598; Mon, 22 Jan 1996 14:51:23 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA05923 for <
[email protected]>; Mon, 22 Jan 1996 14:44:27 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id VAA03022; Mon, 22 Jan 1996 21:44:43 +0100
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 21:44:43 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: CFD: wu-ftpd announce email list
In-Reply-To: <
[email protected]> from "Kent Landfield" at Jan 22, 96 02:26:20 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Kent Landfield, who wrote :
> I was under the impression that it already existed.
Whoops.. *blush* .. hmmm.. well, have to find out who the moderators are then.
[ Yes, I saved the messages when subscribing.. ]
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Mon Jan 22 14:15:37 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teUWR-0006pHC; Mon, 22 Jan 96 14:15 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA13823; Mon, 22 Jan 1996 16:06:46 -0600
Received: from wasp.cec.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA12155 for <
[email protected]>; Mon, 22 Jan 1996 15:48:36 -0600
Received: by wasp.cec.wustl.edu (5.x/ECL-A1.27)
id AA02068; Mon, 22 Jan 1996 15:48:31 -0600
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 15:48:30 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Robert Ellsworth <
[email protected]>
To:
[email protected]
Subject: Re: CFD: wu-ftpd announce email list
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> > 2) Creation of a new (moderated) mailing list with just the announcements. I
> > don't have a server, but I'm imagining the current list's server could
> > handle another list.
>
> 'we' would have to ask wuarchive. (Would the person from wuarchive reading this
> list please stand up ;)
I discussed this with the fellows around here, and the consensus seems to
be as follows:
We could certainly host a moderated wu-ftpd-announce list. In fact, there
already -is- a moderated wu-ftpd-announce list, but it is rarely used, and
half of the subscribers are unreachable...so it would take a little bit of
cleaning up. We could probably handle the initial cleanup of "bouncing"
subscribers, but regrettably we don't have the resources to provide a
moderator for the list.
Sooo...if someone (or possibly more than one) wants to volunteer to act as
moderator, then it would basically be a done deal. If you're interested,
please post to the list, so that everyone interested in being a moderator
can get a general idea of the number of volunteers. I'm not sure if our
listproc is configurable for more than one moderator; if it is, we'll
possibly have more than one moderator, depending on how many volunteers we
get.
If you have any questions, feel free to either e-mail me direct, or post
to the list. Thanks.
Andy Ellsworth | "...The wind was not the beginning. There are
[email protected] | neither beginnings nor endings to the turning of
Assistant Admin, wuarchive | the Wheel of Time. But it was _a_ beginning..."
http://cec.wustl.edu/~are1 | --The Wheel of Time saga, Robert Jordan
From
[email protected] Mon Jan 22 14:46:41 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teV0W-000CpiC; Mon, 22 Jan 96 14:46 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA16781; Mon, 22 Jan 1996 16:36:01 -0600
Received: from wasp.cec.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA14412 for <
[email protected]>; Mon, 22 Jan 1996 16:13:53 -0600
Received: by wasp.cec.wustl.edu (5.x/ECL-A1.27)
id AA02429; Mon, 22 Jan 1996 16:13:51 -0600
Message-Id: <
[email protected]>
Date: Mon, 22 Jan 1996 16:13:50 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Robert Ellsworth <
[email protected]>
To:
[email protected]
Subject: Wuarchive, wu-ftpd, and patches/diffs
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
After reading the mail concerning a residing place for the new flavors of
wu-ftpd, it occurred to me that there's no reason we can't harbor the new
versions. So, for those of you who would like to see the new versions
mirrored/stored on wuarchive, I'm proposing the following:
Currently, the original wu-ftpd (version 2.4) is stored on wuarchive in
/packages/wuarchive-ftpd. I plan on leaving the original in its current
location, and making a few subdirectories off of the wuarchive-ftpd
directory, like ./patches, ./academ, etc.
However, for obvious security reasons, uploading directly to /packages (or
anything but /pub, for that matter) is not allowed; so I'll have to be the
one to add new files/directories. I'm open to suggestions regarding the
best way to do this; my initial idea is to have interested parties e-mail
me telling me where to get the files they want uploaded, and then
(presumably) I'd download the files and put them in the correct places. I
think this would work OK, at least initially; if I start getting flooded
with upload requests then I might consider asking for volunteers to handle
the requests.
As far as integrity checking goes (ensuring that no one sends us patches
inserting "back doors", etc.), I think that it would be best to establish
a certain set of people who are well-trusted in this area, and only accept
new items from those people. (In addition to cutting down on "hacked"
wu-ftpd's, it would prevent everyone and their dog from submitting their
own personal patches for wu-ftpd). Then again, we could simply put up a
"use at your own risk" sign, and leave it at that.
Please let me (and the list) know what you think. Thanks.
Andy Ellsworth | "...The wind was not the beginning. There are
[email protected] | neither beginnings nor endings to the turning of
Assistant Admin, wuarchive | the Wheel of Time. But it was _a_ beginning..."
http://cec.wustl.edu/~are1 | --The Wheel of Time saga, Robert Jordan
From
[email protected] Mon Jan 22 22:32:06 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tecGS-000FCoC; Mon, 22 Jan 96 22:31 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id AAA11936; Tue, 23 Jan 1996 00:23:58 -0600
Received: from owlman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id AAA11699 for <
[email protected]>; Tue, 23 Jan 1996 00:16:00 -0600
Received: (from sob@localhost) by owlman.academ.com (8.7.3/8.7.1) id AAA01373; Tue, 23 Jan 1996 00:15:56 -0600 (CST)
Message-Id: <
[email protected]>
Date: Tue, 23 Jan 1996 00:15:56 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected],
[email protected],
[email protected]
Subject: Academ version of wu-ftpd 2.4 Release 2 Beta 9 available for testing
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
BETA 9 is now available. It has been tested on the following systems:
Solaris 2.4, SunOS 4.1.4, NetBSD 1.1, FreeBSD 2.0.5-RELEASE, BSD/OS 2.0.1,
BSD/OS 1.1, Linux 1.2.13.
It has been compiled, but not tested on the following systems:
AIX 3.2, IRIX 5.4, Digital Unix 3.2
I would like to hear from folks with access to HP-UX, Digital Unix, IRIX
and AIX in particular. Please send mail to the
[email protected]
address.
This is another release candidate.
The location is:
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-9.tar.Z
NOTE: This directory is protected. Attempts to use a directory listing
command will fail.
-0-FIXES IN THIS RELEASE-0-
Fixed all the support makefiles to build vsnprintf in the support library since
most systems do not have it. I have left it out of systems that I know do
have the real library routine (all BSD 4.4-Lite based OSes have this).
Moved openlog() in ftpd.c up closer to the beginning of the program.
Fix suggested by CERT.
Added endgrent() to access.c, private.c and extensions.c to insure that
the /etc/group or ~ftp/etc/group file is closed after it is used. Fix
suggested by CERT.
The "nodirs" option of the upload directive in an ftpaccess file is now
fixed and actually works. Previously, it did not work. Bug reported by CERT.
Two changes to popen.c --
1. In the child process, the port attached to the ftp protocol port
is now closed before exec().
2. In the child process, the effective user and group ids are
set as the real user and group ids prior to exec().
Bugs reported by CERT.
From
[email protected] Mon Jan 22 23:40:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tedKj-00076fC; Mon, 22 Jan 96 23:40 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id BAA14395; Tue, 23 Jan 1996 01:33:12 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA14206 for <
[email protected]>; Tue, 23 Jan 1996 01:29:22 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id JAA04042; Tue, 23 Jan 1996 09:29:31 -0200
Message-Id: <
[email protected]>
Date: Tue, 23 Jan 1996 09:29:31 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: WUFPTD 2.4 with HP-UX 10.01
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
[email protected] wrote:
>
> Greetings,
>
> I've installed WU-FTPD 2.4 on an HP-UX 10.01server, but seem to be
> missing shared libs to run the LS and DIR commands. I can transfer
> files ok, but just can't list directories, etc.
>
> The only thing I have in ~ftp/bin is ls.
>
> Any suggestions? I'm assuming I need some shared HP-UX libs?
> TIA.
>
> Brad Christensen
Hello Brad
You must have been on a differenrt planet for the last few days.
This has been an ongiong discussion for a while.
Here is my last reply:
There has been a great deal posted re: the dir and ls commands on
Solaris.
The dir and ls commands actually work differently; why I don't know. I
don't believe that the linking, static or otherwise, is relevant for ls.
I have discovered that most PC clients will use the dir command, but
that a ftp from a unix or ftp shell will usually employ the ls command.
It is the dir command that needs the static libraries, and the the ls
command that needs the dev entries.
If you have ls working this does not mean that dir works.
Everything works fine for me and here are the relevant parts of the
listing for my setup:
total 10
d--x--x--x 2 root other 512 Dec 27 13:29 bin
drwxr-xr-x 2 root other 512 Dec 27 15:08 dev
drwxr-xr-x 3 root other 512 Dec 27 13:53 etc
drwxrwxrwx 4 ftp other 512 Jan 2 13:41 pub
drwxr-xr-x 3 root other 512 Dec 28 17:28 usr
/bin:
total 42
lrwxrwxrwx 1 root other 13 Dec 27 13:29 ftp-exec ->
/bin/ftp-exec
---x--x--x 1 root other 20040 Dec 27 11:24 ls
/dev:
total 0
crw-r--r-- 1 root other 13, 2 Dec 27 15:07 null
crw-r--r-- 1 root other 11, 42 Dec 27 13:50 tcp
crw-r--r-- 1 root other 11, 9 Dec 27 15:07 ticotsord
crw-r--r-- 1 root other 11, 41 Dec 27 15:08 udp
crw-r--r-- 1 root other 13, 12 Dec 27 13:51 zero
/usr:
total 2
dr-xr-xr-x 2 root other 512 Dec 28 17:28 lib
/usr/lib:
total 1542
-r-xr-xr-x 1 root other 97804 Dec 28 17:26 ld.so.1
-r-xr-xr-x 1 root other 621628 Dec 28 17:26 libc.so.1
-r-xr-xr-x 1 root other 3492 Dec 28 17:26 libdl.so.1
-r-xr-xr-x 1 root other 13516 Dec 28 17:26 libintl.so.1
-r-xr-xr-x 1 root other 41704 Dec 28 17:26 libw.so.1
Notice in particular the entries for dev and lib.
I hope that this will help all those people wandering in the dark.
Regards
Nathan
P.S. The faq is very helpful on this matter. I assume that you have
read it?
If not,
http://www.hvu.nl/~koos/wu-ftpd-faq.html
--
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Tue Jan 23 00:37:28 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0teeEH-000CtRC; Tue, 23 Jan 96 00:37 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA16217; Tue, 23 Jan 1996 02:29:53 -0600
Received: from m54.oz.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA16054 for <
[email protected]>; Tue, 23 Jan 1996 02:24:29 -0600
Received: by m54.oz.com id AA07672
(5.67a8/IDA-1.4.4 for
[email protected]); Tue, 23 Jan 1996 00:24:19 -0800
Message-Id: <
[email protected]>
Date: Tue, 23 Jan 1996 00:24:19 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Mitch Wright <
[email protected]>
To:
[email protected]
Subject: Re: WUFPTD 2.4 with HP-UX 10.01
In-Reply-To: <
[email protected]>
References: <
[email protected]>
<
[email protected]>
X-Mid: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
/* Nathan Sowatskey [
[email protected]] writes: */
>The dir and ls commands actually work differently; why I don't know. I
>don't believe that the linking, static or otherwise, is relevant for ls.
>
It is very relevant IF you use an options to ls. Using *just* ls causes
an internal routine to list out the directory. Using options to ls
causes it to behave more like dir; hence, invoking /bin/ls.
--
do svidaniya,
~mitch
From
[email protected] Tue Jan 23 02:00:07 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tefWE-00076fC; Tue, 23 Jan 96 02:00 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id DAA18180; Tue, 23 Jan 1996 03:53:24 -0600
Received: from supelec.supelec.fr by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id DAA17981 for <
[email protected]>; Tue, 23 Jan 1996 03:45:31 -0600
Received: by supelec.supelec.fr; id AA05062; Tue, 23 Jan 1996 10:45:23 +0100
Message-Id: <
[email protected]>
Date: Tue, 23 Jan 1996 09:03:50 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Daniel Clar)
To:
[email protected]
Subject: SUMMARY : Problem with syslog after chroot and chdir (sugegstion for 2.2.2 ?)
X-Vms-To: SMTP%"
[email protected]"
X-Vms-Cc: DC
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
My initla posting was :
>It seems to me that there is some bug in Digital Unix 3.2c when using some
>system calls.
>
>I'm currently using WU FTPD and I was surprised not to see some messages in the
>daemon.log file.
>
>In fact all the messages are in it just before the following sequence :
>
> if (anonymous || guest) {
> /* We MUST do a chdir() after the chroot. Otherwise the old current
> * directory will be accessible as "." outside the new root! */
> if (anonymous) {
>/* the following line is added by me */
> syslog(LOG_INFO,"PW->PW_DIR %s", pw->pw_dir);
> if (chroot(pw->pw_dir) < 0 || chdir("/") < 0) {
> reply(550, "Can't set guest privileges.");
> goto bad;
> }
>/* the following two lines are added by me */
> reply(220, "after chroot and chdir.");
> syslog(LOG_INFO,"AFTER CHDIR ANONYMOUS %d GUEST %d", anonymous, guest);
>
>
>So what happens ?
>
>The first syslog works correctly and the PW->PW_DIR message is sent in the
>daemon.log file. But, if the "after chroot and chdir." is correctly sent to the
>user, the "AFTER CHDIR ANONYMOUS" is absolutely not sent to the daemon.log file.
>
>When the chdir,chroot is not executed, for an identified user, there is
>absolutely no problem.
>
>So for me the syslog doesn't work any more after the chroot,chdir.
>
>Bug (or feature) ?
Some of you answered that it was a feature because all the syslog related system
calls send message to /dev/log and after the chroot the /dev/log file is no more
there.
The standard Digital ftpd does log the commands after the chroot and Benoit
Maillard (
[email protected]) told me that it was because they don't use
the standard system calls.
While looking at the distribution files, I've found a syslog.c file in support
directory and I've modified the Makefile.osf in support/makefiles to include
it in the library.
There were 2 compilation errors on this file, in fact one warning and one error.
The warning is on
if ((p = malloc(strlen(ident) + 1)) == NULL)
and to suppress it, modify in
if ((p = (char *)malloc(strlen(ident) + 1)) == NULL)
The error was on the redefinition of openlog (or closelog). It comes from the
fact that these calls are redefined in <syslog.h>
extern int openlog __((const char *, int, int));
extern int syslog __((int, const char *, ...));
extern void closelog __((void));
extern int setlogmask __((int));
So I've copied /usr/include/syslog.h in the support directory and I've modified
it in suppressing these lines. Then I've modified syslog.c in replacing
#include <syslog.h> by #include "syslog.h"
So now all is working fine and even for anonymous users the commands are logged
correctly as for real users in the daemon.log file.
For the next version of wu-ftpd, it could be wise to add a definition about the
fact that the daemon is compiled with standard syslog calls or with included
syslog calls. The syslog.h problem has not yet been cleanly resolved in my
solution.
Daniel
o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
| Daniel Clar e-mail :
[email protected] |
| Computer Operations Manager :
[email protected] |
| Service Informatique Supelec and |
| Plateau de Moulon DECUSF::CLAR_D or
[email protected] |
| 91192 Gif sur Yvette Cedex - France |
| Tel : (33 1) 69 85 14 87 Fax : (33 1) 69 85 12 34 |
o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
From
[email protected] Tue Jan 23 08:26:44 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from camco1.celestial.com by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0telYR-000DHNC; Tue, 23 Jan 96 08:26 PST
Received: from relay5.UU.NET by camco1.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tekmw-0003e2C; Tue, 23 Jan 96 07:37 PST
Received: from wugate.wustl.edu by relay5.UU.NET with SMTP
id QQzztu26133; Tue, 23 Jan 1996 10:37:01 -0500 (EST)
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA19437; Thu, 18 Jan 1996 13:00:44 -0600
Received: from diusys.cms.udel.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA19188 for <
[email protected]>; Thu, 18 Jan 1996 12:58:53 -0600
Received: by diusys.cms.udel.edu (4.1/SMI-4.1)
id AA02732; Thu, 18 Jan 96 13:58:53 EST
Message-Id: <
[email protected]>
Date: Thu, 18 Jan 96 13:58:53 EST
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Walt Dabell)
To:
[email protected]
Subject: Re: dir command
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
> From: FTP_server Administrator <
[email protected]>
> > Nathan Shanelec Wrote:
> >
> > > I was able to get the dir command to work when I followed these instructions
> > > in the INSTALL file.
> > >
> > > 6. Under Solaris 2.1, you need to have the following in ~ftp/dev
> > > crw-rw-rw- 1 root 11, 42 Mar 24 17:00 tcp
> > > cr--r--r-- 1 root 13, 12 Mar 24 16:23 zero
> > >
> >
> > Yep, tried that, then I tried what was in the man page on my Solaris 2.4 system
When I installed mine (sunOS4.1.x) with the ~ftp/dev/zero as 13,12 it
would not work just as yours doesn't. When zero is 3,12 it works fine.
FWIW...
Walt Dabell (302)645-4225
[email protected]
University of Delaware, College of Marine Studies
From
[email protected] Tue Jan 23 10:48:07 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from relay4.UU.NET by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tenlF-000DhQC; Tue, 23 Jan 96 10:48 PST
Received: from wugate.wustl.edu by relay4.UU.NET with SMTP
id QQzzug27600; Tue, 23 Jan 1996 13:42:39 -0500 (EST)
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA17073; Tue, 23 Jan 1996 12:30:34 -0600
Received: from ladybug.cec.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA14146 for <
[email protected]>; Tue, 23 Jan 1996 11:59:09 -0600
Received: by ladybug.cec.wustl.edu (5.x/ECL-A1.27)
id AA08140; Tue, 23 Jan 1996 11:59:05 -0600
Message-Id: <
[email protected]>
Date: Tue, 23 Jan 1996 11:59:04 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Robert Ellsworth <
[email protected]>
To:
[email protected]
Subject: Timeouts fixed in wu-ftpd 2.4 Release 2 Beta 9?
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Tue, 23 Jan 1996, Stan Barber wrote:
> BETA 9 is now available. It has been tested on the following systems:
[snip]
> -0-FIXES IN THIS RELEASE-0-
[snip]
I didn't see any mention of the timeouts/lingering ftp connections patch
being applied in Beta 9. I remember that this was still broken in Beta 8;
has it been fixed in Beta 9?
Just curious...
Andy Ellsworth | "...The wind was not the beginning. There are
[email protected] | neither beginnings nor endings to the turning of
Assistant Admin, wuarchive | the Wheel of Time. But it was _a_ beginning..."
http://cec.wustl.edu/~are1 | --The Wheel of Time saga, Robert Jordan
From
[email protected] Tue Jan 23 14:36:45 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0terKT-0000a7C; Tue, 23 Jan 96 14:36 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA29853; Tue, 23 Jan 1996 14:55:29 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA29100 for <
[email protected]>; Tue, 23 Jan 1996 14:48:19 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id OAA00646; Tue, 23 Jan 1996 14:48:03 -0600 (CST)
Message-Id: <
[email protected]>
Date: 23 Jan 1996 20:48:02 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: Timeouts fixed in wu-ftpd 2.4 Release 2 Beta 9?
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]> Andrew Robert Ellsworth <
[email protected]> writes:
>I didn't see any mention of the timeouts/lingering ftp connections patch
>being applied in Beta 9. I remember that this was still broken in Beta 8;
>has it been fixed in Beta 9?
If it is not listed, then it probably has not changed since beta 8.
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Tue Jan 23 15:16:10 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tervs-000DhyC; Tue, 23 Jan 96 15:15 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA09712; Tue, 23 Jan 1996 16:56:34 -0600
Received: from gatekeeper.arborsoft.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id QAA08460 for <
[email protected]>; Tue, 23 Jan 1996 16:42:06 -0600
Received: by gatekeeper.arborsoft.com; id OAA17692; Tue, 23 Jan 1996 14:38:11 -0500
Received: from paper.arborsoft.com(206.65.95.2) by gatekeeper.arborsoft.com via smap (g3.0.1)
id xma017680; Tue, 23 Jan 96 14:37:43 -0500
Received: by paper.arborsoft.com (IBM OS/2 SENDMAIL VERSION 1.3.2)/1.0)
id AA0895; Tue, 23 Jan 96 14:42:41 -0800
Received: from Arbor with "Lotus Notes Mail Gateway for SMTP" id
3C1C9081D512C559882562BA007C1B76; Tue, 23 Jan 96 14:42:41
Message-Id: <
[email protected]>
Date: 23 Jan 96 14:41:00 EDT
Reply-To:
[email protected]
Sender:
[email protected]
From: Willy Hertanu <
[email protected]>
To: wu-ftpd <
[email protected]>
Subject: Problem configuring wu-ftpd 2.4
Mime-Version: 1.0
Content-Type: Text/Plain
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I just setup the server on my BSD/OS 2.0 with wu-ftpd 2.4. I changed my
/etc/inetd.conf to include -a in the parameter and do a kill -1. I can login OK
from my client, download the file OK, but I can only upload ONE file then it
did a core dump. It disconnected my connection and created one file
(ftpd.core). I looked at my /etc/ftpaccess file and I don't have any clue right
now. Can anybody help?
Thanks.
Willy Hertanu
Arbor Software
Here is my /etc/ftpaccess file
---------------------------- start here
loginfails 2
class local real,guest,anonymous *.wustl.edu 0.0.0.0
class remote real,guest,anonymous *
limit local 20 Any /etc/msgs/msg.toomany
limit remote 100 SaSu|Any1800-0600 /etc/msgs/msg.toomany
limit remote 60 Any /etc/msgs/msg.toomany
readme README* login
readme README* cwd=*
message /welcome.msg login
message .message cwd=*
compress yes local remote
tar yes local remote
# allow use of private file for SITE GROUP and SITE GPASS?
private yes
# passwd-check <none|trivial|rfc822> [<enforce|warn>]
passwd-check rfc822 warn
log commands real
log transfers anonymous,real inbound,outbound
shutdown /etc/shutmsg
banner /usr/var/spool/ftp/banner
# all the following default to "yes" for everybody
delete yes real,guest # delete permission?
overwrite yes real,guest # overwrite permission?
rename yes real,guest # rename permission?
chmod yes real # chmod permission?
umask yes real # umask permission?
# specify the upload directory information
upload /var/spool/ftp * no
upload /var/spool/ftp /incoming yes root daemon 0600 dirs
upload /var/spool/ftp /bin no
upload /var/spool/ftp /etc no
upload /var/spool/ftp /pub yes root daemon 0600 dirs
upload / * yes root daemon 0666 dirs
upload /var/spool/ftp /pub/is yes mis user 0666 dirs
# directory aliases... [note, the ":" is not required]
alias inc: /incoming
# cdpath
cdpath /incoming
cdpath /pub
cdpath /
# path-filter...
path-filter anonymous /etc/pathmsg ^[-A-Za-z0-9_\.]*$ ^\. ^-
path-filter guest /etc/pathmsg ^[-A-Za-z0-9_\.]*$ ^\. ^-
# specify which group of users will be treated as "guests".
guestgroup ftponly
email
[email protected]
From
[email protected] Tue Jan 23 15:39:25 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tesIo-000DT2C; Tue, 23 Jan 96 15:39 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA12270; Tue, 23 Jan 1996 17:27:00 -0600
Received: from novell.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA11698 for <
[email protected]>; Tue, 23 Jan 1996 17:18:36 -0600
Received: from INET-PRV-Message_Server by fromGW
with Novell_GroupWise; Tue, 23 Jan 1996 16:17:20 -0700
Message-Id: <s1050a10.057@fromGW>
Date: Tue, 23 Jan 1996 16:20:41 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Vard Lott)
To:
[email protected]
Subject: Re: Timeouts fixed in wu-ftpd 2.4 Release 2 Beta 9? -Reply
Content-Type: text/plain
X-Mailer: Novell GroupWise 4.1
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Would the first to implement the patch in
Academ beta 9 please send it on to the rest
of us then?
Thanks in advance,
VL
>>> Stan Barber <
[email protected]> 01/23/96
01:48pm >>>
In article
<
[email protected]>
Andrew Robert Ellsworth <
[email protected]>
writes:
>I didn't see any mention of the
timeouts/lingering ftp connections patch
>being applied in Beta 9. I remember that
this was still broken in Beta 8;
>has it been fixed in Beta 9?
If it is not listed, then it probably has
not changed since beta 8.
-- Stan | Academ Consulting Services
|internet:
[email protected]
Olan | For more info on academ, see this
|uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ
|Opinions expressed are only mine.
From
[email protected] Tue Jan 23 15:49:44 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tesSt-0000qfC; Tue, 23 Jan 96 15:49 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA12462; Tue, 23 Jan 1996 17:29:43 -0600
Received: from meserv.me.umn.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id RAA11759 for <
[email protected]>; Tue, 23 Jan 1996 17:19:27 -0600
Received: from test197.me.umn.edu (test197.me.umn.edu [134.84.197.197]) by meserv.me.umn.edu (8.6.11/8.6.11) with ESMTP id RAA26017 for <
[email protected]>; Tue, 23 Jan 1996 17:18:58 -0600
Received: (clolson@localhost) by test197.me.umn.edu (8.6.12/8.6.5) id RAA01745 for
[email protected]; Tue, 23 Jan 1996 17:18:13 -0600
Message-Id: <
[email protected]>
Date: Tue, 23 Jan 1996 17:18:13 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Curt Olson" <
[email protected]>
To:
[email protected]
Subject: ftpconversions
Content-Type: text
X-Mailer: ELM [version 2.4 PL24 PGP2]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Greetings,
I am attempting to get wu-ftpd 2.4 up and running on a SunOS 4.1.3
machine. Everything is fine except the ftpconversions part. I
created and installed a statically linked version of gnu tar. But,
when I give a command such as:
get weather.tar
where weather is a directory, I get the following result:
550 weather.tar: No such file OR directory.
I know I probably can't expect an easy answer for "What am I doing
wrong?", but is there any techniques for debugging this thing to find
out why it is failing? Any obvious pitfalls I should have a look at?
Thanks in advance,
Curt.
--
Curtis Olson E-mail:
[email protected]
Try Linux! WWW:
http://www.me.umn.edu/home/clolson/main
From
[email protected] Tue Jan 23 16:22:50 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tesyq-000D50C; Tue, 23 Jan 96 16:22 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA16068; Tue, 23 Jan 1996 18:15:16 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA15692 for <
[email protected]>; Tue, 23 Jan 1996 18:09:48 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA15682; Tue, 23 Jan 1996 16:09:44 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA11868; Tue, 23 Jan 1996 16:05:43 +0800
Message-Id: <
[email protected]>
Date: Tue, 23 Jan 1996 16:05:43 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: "PASV"?
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Does anyone know what the point is on the PASV command to the server?
What does it do in all the gory details? It seems that my server
is hanging when this command is being sent to my ftpd. (What's
sending, why Netscape, of course). This is unfortunately the only
browser that I have found that sends that command to my ftpd, and it
is the only browser that does not like ftp to my server.
Anyone have any clues about this, or the details on PASV?
>>Ericw
From
[email protected] Tue Jan 23 23:31:59 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tezgQ-0000qTC; Tue, 23 Jan 96 23:31 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id BAA08936; Wed, 24 Jan 1996 01:24:26 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA08731 for <
[email protected]>; Wed, 24 Jan 1996 01:18:25 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id JAA04941; Wed, 24 Jan 1996 09:18:38 -0200
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 09:18:38 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: Problem configuring wu-ftpd 2.4
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Willy Hertanu wrote:
>
> I just setup the server on my BSD/OS 2.0 with wu-ftpd 2.4. I changed my
> /etc/inetd.conf to include -a in the parameter and do a kill -1. I can login OK
> from my client, download the file OK, but I can only upload ONE file then it
> did a core dump. It disconnected my connection and created one file
> (ftpd.core). I looked at my /etc/ftpaccess file and I don't have any clue right
> now. Can anybody help?
Can you not get a stack trace from your core? If so then you could tell
where the ftpd was dumping.
Use -g to compile ftpd, and also follow install instructions for
debugging.
Regards
Nathan
--------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Tue Jan 23 23:41:32 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tezpe-000DXUC; Tue, 23 Jan 96 23:41 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id BAA09311; Wed, 24 Jan 1996 01:35:15 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA08706 for <
[email protected]>; Wed, 24 Jan 1996 01:18:01 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id JAA04938; Wed, 24 Jan 1996 09:16:26 -0200
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 09:16:26 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: ftpconversions
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Curt Olson wrote:
>
> Greetings,
>
> I am attempting to get wu-ftpd 2.4 up and running on a SunOS 4.1.3
> machine. Everything is fine except the ftpconversions part. I
> created and installed a statically linked version of gnu tar. But,
> when I give a command such as:
>
> get weather.tar
>
> where weather is a directory, I get the following result:
>
> 550 weather.tar: No such file OR directory.
Am I correct in thinking that you expect this to retrieve the weather
directory and all it contents as a tar file?
If so then I don't think that what you have in mind is realistic.
Otherwise, please explain what it is you are trying to achieve.
A ls -Rla of your ~ftp directory structure might also be useful. In fact
more information in general would help.
Regards
Nathan
>
> I know I probably can't expect an easy answer for "What am I doing
> wrong?", but is there any techniques for debugging this thing to find
> out why it is failing? Any obvious pitfalls I should have a look at?
>
> Thanks in advance,
>
> Curt.
> --
> Curtis Olson E-mail:
[email protected]
> Try Linux! WWW:
http://www.me.umn.edu/home/clolson/main
--
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Wed Jan 24 00:10:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tf0Gz-000DLoC; Wed, 24 Jan 96 00:09 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA10182; Wed, 24 Jan 1996 02:02:53 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA10036 for <
[email protected]>; Wed, 24 Jan 1996 01:59:55 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id JAA19216; Wed, 24 Jan 1996 09:00:16 +0100
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 09:00:15 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: "PASV"?
In-Reply-To: <
[email protected]> from "
[email protected]" at Jan 23, 96 04:05:43 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting
[email protected], who wrote :
> Does anyone know what the point is on the PASV command to the server?
Ftp-Data connections are then initiated 'the other way around' then normal.
This can be usefull if the ftp client is inside a firewall, and can't
accept new connections coming from the outside.
> What does it do in all the gory details? It seems that my server
> is hanging when this command is being sent to my ftpd. (What's
> sending, why Netscape, of course). This is unfortunately the only
> browser that I have found that sends that command to my ftpd, and it
> is the only browser that does not like ftp to my server.
In case you're running on Solaris...
>From the FAQ :
--------------------------------------------------------------------
9. Normal ftp clients work, Netscape ftp's fail. So, passive
mode doesn't work.
Apparantly ftpd needs write permission on ~ftp/dev/tcp in
order to operate correctly in passive mode (Solaris).
Fix:
cd ~ftp/dev
chgrp ftp tcp
chmod 775 tcp
Thanks to Simon Rakov (
[email protected]) for
this one.
--------------------------------------------------------------------
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Wed Jan 24 01:07:59 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tf1BF-000CoBC; Wed, 24 Jan 96 01:07 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id DAA11692; Wed, 24 Jan 1996 03:00:56 -0600
Received: from raf.math.ist.utl.pt by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA11511 for <
[email protected]>; Wed, 24 Jan 1996 02:53:25 -0600
Received: from sisdin8.math.ist.utl.pt by raf.math.ist.utl.pt; (5.65/1.1.8.2/26Oct95-8.2MAM)
id AA03143; Wed, 24 Jan 1996 09:53:13 +0100
Message-Id: <
[email protected]>
Date: 24 Jan 96 09:43:50 GMT+0100
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Joao Palhoto Matos)
To:
[email protected]
Subject: Re: "PASV"?
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
--- Koos van den Hout _U nix and we all_ wrote:
Quoting
[email protected], who wrote :
> Does anyone know what the point is on the PASV command to the server?
Ftp-Data connections are then initiated 'the other way around' then normal.
This can be usefull if the ftp client is inside a firewall, and can't
accept new connections coming from the outside.
> What does it do in all the gory details? It seems that my server
> is hanging when this command is being sent to my ftpd. (What's
> sending, why Netscape, of course). This is unfortunately the only
> browser that I have found that sends that command to my ftpd, and it
> is the only browser that does not like ftp to my server.
In case you're running on Solaris...
>From the FAQ :
--------------------------------------------------------------------
9. Normal ftp clients work, Netscape ftp's fail. So, passive
mode doesn't work.
Apparantly ftpd needs write permission on ~ftp/dev/tcp in
order to operate correctly in passive mode (Solaris).
Fix:
cd ~ftp/dev
chgrp ftp tcp
chmod 775 tcp
Thanks to Simon Rakov (
[email protected]) for
this one.
--------------------------------------------------------------------
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
--- end of quoted material ---
Exactly the same thing happens with the server version for A/UX found at
jagubox.gsfc.nasa.gov. Version wu-2.4(1).
Joao Palhoto Matos
Department of Mathematics
Instituto Superior Tecnico
Lisbon, Portugal
From
[email protected] Wed Jan 24 08:18:00 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tf7t8-000DayC; Wed, 24 Jan 96 08:17 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA00274; Wed, 24 Jan 1996 10:07:03 -0600
Received: from garbanzo.SSESCO.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA28744 for <
[email protected]>; Wed, 24 Jan 1996 09:50:37 -0600
Received: from ribs.ssesco.com by garbanzo.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.srv.92.07.22)
id AA22271; Wed, 24 Jan 1996 09:50:49 -0600
Received: by ribs.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.cli.92.10.15)
id AA05029; Wed, 24 Jan 1996 09:50:37 -0600
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 09:50:36 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected] (wuftp)
Subject: That darned 'dir' thing again (AIX)
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
It's me again. Still having trouble with the 'dir' and 'ls -l' on
my RS6000 (AIX 3.2.5). I have the etc/groups file and I have
built a (GNU) static version of 'ls' and placed it into the
bin directory. I've opened up permissions on it yet 'dir' and
'ls -l' still don't seem to work. It is becoming increasingly
important that I get this to work. I really don't want to
revert to the insecure ftpd that came with the system.
I'm probably doing something really stupid. Maybe it's in
the conf file. I'm really not sure. I would appreciate
any help I can get.
Thanks.
--
William R. Nau
Supercomputer Systems Engineering and Services Company (SSESCO)
511 11th Avenue South, Suite 216
Minneapolis, Minnesota 55415-1536
Phone: 612-342-0003, Email:
[email protected], WWW:
http://www.SSESCO.com
From
[email protected] Wed Jan 24 09:39:57 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tf99U-000Dg9C; Wed, 24 Jan 96 09:38 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA07488; Wed, 24 Jan 1996 11:29:51 -0600
Received: from huckle.cs.umt.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA06115 for <
[email protected]>; Wed, 24 Jan 1996 11:13:31 -0600
Received: from eisgate.cs.umt.edu by huckle.cs.umt.edu (AIX 3.2/UCB 5.64/4.03)
id AA08213; Wed, 24 Jan 1996 10:13:18 -0700
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 10:13:18 -0700 (MST)
Reply-To:
[email protected]
Sender:
[email protected]
From: David Thompson <
[email protected]>
To:
[email protected]
Cc: wuftp <
[email protected]>
Subject: Re: That darned 'dir' thing again (AIX)
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
What I would suggest is try setting up your dir as a non-static first
and see if you can get that to work. You will need libc.a and libcurses.a
in the ~ftp/lib directory. If this works, then try setting up the static
version.
David
******************************************************************************
David L. Thompson e-mail:
[email protected]
3650 Hwy 200 E. Box 10 University of Montana/CS Department
Missoula, MT 59802 Missoula, MT 59812
Home Phone : (406)543-8530 Work Phone : (406)243-4810
******************************************************************************
From
[email protected] Wed Jan 24 10:11:11 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tf9eg-0000qfC; Wed, 24 Jan 96 10:10 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA10405; Wed, 24 Jan 1996 12:03:01 -0600
Received: from garbanzo.SSESCO.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA07819 for <
[email protected]>; Wed, 24 Jan 1996 11:33:45 -0600
Received: from ribs.ssesco.com by garbanzo.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.srv.92.07.22)
id AA21763; Wed, 24 Jan 1996 11:33:55 -0600
Received: by ribs.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.cli.92.10.15)
id AA24461; Wed, 24 Jan 1996 11:33:40 -0600
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 11:33:39 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected] (David Thompson)
Cc:
[email protected]
Subject: Re: That darned 'dir' thing again (AIX)
In-Reply-To: <
[email protected]> from "David Thompson" at Jan 24, 96 10:13:18 am
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
David Thompson writes:
>
> What I would suggest is try setting up your dir as a non-static first
> and see if you can get that to work. You will need libc.a and libcurses.a
> in the ~ftp/lib directory. If this works, then try setting up the static
> version.
Thanks very much! That's exactly what it took. I looked through
the docs and stuff for that kind of information, but it was all
particular to the SUN.
Thanks again.
--
William R. Nau
Supercomputer Systems Engineering and Services Company (SSESCO)
511 11th Avenue South, Suite 216
Minneapolis, Minnesota 55415-1536
Phone: 612-342-0003, Email:
[email protected], WWW:
http://www.SSESCO.com
From
[email protected] Wed Jan 24 10:24:20 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tf9r3-0000brC; Wed, 24 Jan 96 10:23 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA11521; Wed, 24 Jan 1996 12:15:34 -0600
Received: from mercury.Sun.COM by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id LAA10212 for <
[email protected]>; Wed, 24 Jan 1996 11:59:51 -0600
Received: from Eng.Sun.COM by mercury.Sun.COM (Sun.COM)
id JAA17426; Wed, 24 Jan 1996 09:59:05 -0800
Received: from caribe.eng.sun.com (caribe-85.Eng.Sun.COM) by Eng.Sun.COM (5.x/SMI-5.3)
id AA05251; Wed, 24 Jan 1996 09:58:53 -0800
Received: from lucknow.eng.sun.com (lucknow [129.146.86.77]) by caribe.eng.sun.com (8.7.1/8.7.1) with SMTP id JAA15500; Wed, 24 Jan 1996 09:58:13 -0800 (PST)
Received: by lucknow.eng.sun.com (5.x/SMI-SVR4)
id AA21332; Wed, 24 Jan 1996 09:56:44 -0800
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 09:56:44 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Mukesh Kacker)
To:
[email protected]
Cc:
[email protected]
Subject: Re: "PASV"?
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>
> > Does anyone know what the point is on the PASV command to the server?
>
> Ftp-Data connections are then initiated 'the other way around' then normal.
> This can be usefull if the ftp client is inside a firewall, and can't
> accept new connections coming from the outside.
>
I will clarify and get into the some more gory details and hope stop
some rumors about Solaris :-)
The "normal/default" way the FTP server operates is that the clients
first open a "control" TCP connections on which all your ftp commands
are sent. Each command that results in some I/O to/from the file
system (like ls, dir, get, put) use a separate ftp data connections that
is set up and then torn down for each command. This data connections
is initiated from the server ("Active" open in TCP speak) and the server
knows which port to connect() to through the PORT command.
There is another more obscure way traditional BSD ftp clients can be
used to do a 3-way transfer. [ client on machine X connects to machine A and B
and then transfers files between A and B]. THe "proxy" command on your
"ftp" command ( which you may not have ever used :-)) does that. To accomplish
that PASV command was invented where one end of server actively opens the
connection while the other end listens (PASiVe open in TCP speak).
For various reasons I will not get into, Firewall folks do not like
ability of externally intiated connections to be able to connect to
services inside the protected zones. So RFC 1579 "Firewall Friendly FTP"
by Steve Bellovin advocated the use of PASV command even for normal
two way ftp data connections.
> > What does it do in all the gory details? It seems that my server
> > is hanging when this command is being sent to my ftpd. (What's
> > sending, why Netscape, of course). This is unfortunately the only
> > browser that I have found that sends that command to my ftpd, and it
> > is the only browser that does not like ftp to my server.
>
As far as I know only Netscape client implements RFC1579 "Firewall Friendly
FTP". However in doing that a combination of bugs in all BSD derived FTP
daemons (that might translate to all ftpd daemons :-)) and some
(broken?) Firewall/packet filter policies.
Certain Firewall/packet-filters only allow the "normal/default" FTP data
setup for their ftp clients where the incoming FTP data connection is from
ftp-data port (port 20) and the other end in some TCP "anonymous" port range.
The RFC 1579 advocated PASV command FTP data connections have "anonymous" port
range on both ends of the TCP connections. They are silently dropped. So
ironically these Firewall/packet-filter policies are not quite in sync with
the "Firewall Friendly FTP" RFC 1579.
The bug in BSD derived implementations of FTP servers is that once put in
passive mode, the server waits forever for an incoming data connections which
presumably is never made or dropped by certain (broken?) firewalls. This is
manifested as hanging ftpd processes that stay forever on your server
holding resources and eventually eat up the swap and affect performance and
force you to take notice :-)
For the stock SOlaris ftpd we fixed the problem in SOlaris 2.5. We released
a patch for SOlaris 2.4.
A lot of our customers do use the more feature rich Wu-ftpd. So we protoyped
our fixes on Wu-ftpd too and communicated them to the developers of Wu-ftpd.
I am not sure if those (or any other fix to that problem) has shown up in
the "official release" of Wu-ftpd are not.
Some folks on this list have done some ad-hoc fixes too for the same
problem where they timeout the accept() call and I have seen those
curculated. [ The way we have fixed is different and we have fixed certain
other scenarios which can generate hanging ftpd processes too which also
involve turning on TCP keepalives ]
If the "release" of Wu-ftpd does not have the fixes, then the FAQ should
contain atleast some version of the fix.
> In case you're running on Solaris...
>
> >From the FAQ :
>
> --------------------------------------------------------------------
>
> 9. Normal ftp clients work, Netscape ftp's fail. So, passive
> mode doesn't work.
>
> Apparantly ftpd needs write permission on ~ftp/dev/tcp in
> order to operate correctly in passive mode (Solaris).
>
> Fix:
>
> cd ~ftp/dev
> chgrp ftp tcp
> chmod 775 tcp
> Thanks to Simon Rakov (
[email protected]) for
> this one.
I am not sure about this information in the FAQ. We have not heard of this
problem reported from any customer. I will file this as a
bug and have someone investigate if this is true or not. If this is
true, it should be well documented.
Whatever this issue is, it is orthogonal to the "hanging ftpd" processes
problem seen on various ftpd installations.
-Mukesh Kacker
Internet Engineering
From
[email protected] Thu Jan 25 06:37:26 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfSne-0000emC; Thu, 25 Jan 96 06:37 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA09834; Thu, 25 Jan 1996 08:29:22 -0600
Received: from homer.bus.miami.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA23020 for <
[email protected]>; Wed, 24 Jan 1996 14:45:39 -0600
Received: (From sysman@localhost) by homer.bus.miami.edu (8.7.3/8.7.3) id PAA07817;
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 15:45:12 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: System Manager <
[email protected]>
To:
[email protected]
Subject: 2.4.2 BETA 9 and Digital Unix 3.2D
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I wondered if someone could send me the patch for using wu-ftp 2.4.2
Beat 9 with C2 (enhanced) security on Digital Unix. The patch I had
for 2.4 doesn't seem to work with the new version, and also dumped
core frequently when a user would disconnect without logging out by
typing bye, or quit. Thanks.
____________________________________________________________________
Tom Leffingwell Office: SBA 211
Systems Manager Office Phone: (305) 284-1771
Network Security Email:
[email protected]
School of Business
University of Miami
____________________________________________________________________
From
[email protected] Thu Jan 25 06:52:10 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfT1u-0000dOC; Thu, 25 Jan 96 06:52 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA10969; Thu, 25 Jan 1996 08:45:44 -0600
Received: from rescol by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA23953 for <
[email protected]>; Wed, 24 Jan 1996 14:57:26 -0600
Received: from [132.203.154.5] by rescol (SMI-8.6/SMI-SVR4)
id PAA29203; Wed, 24 Jan 1996 15:52:52 -0500
Message-Id: <v02130507ad2bf396fd2b@[132.203.154.5]>
Date: Wed, 24 Jan 1996 15:57:53 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Carlos Reed)
To:
[email protected]
Subject: help with guestgroups
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I'm runnig wu-ftpd on a machine with solaris 2.5.
I'm trying to do a login group without succes so far.
here it is what I did:
on my /etc/group guests::21:guest
on my /etc/passwd guest:*:21:21:Guest FTP:/export/ftp/FSE/./fse:/bin/false
(user 21 and group 21)
/usr/ftp/etc/ftpaccess
class guests guest *
guestgroup guests
ls -l /export/ftp
drwxrwx--x 3 guest guests 512 Jan 24 15:04 FSE
lrwxrwxrwx 1 root other 9 Nov 6 10:33 bin -> ./usr/bin
drwx--x--x 2 root sys 512 Oct 3 16:23 dev
drwxr-xr-x 2 root sys 512 Jan 24 15:17 etc
drwxrwxrwx 3 root sys 512 Jan 20 17:49 incoming
drwx-wx-wx 2 root sys 512 Jan 12 15:05 prive
drwxr-xr-x 5 root sys 512 Oct 3 16:23 pub
drwx--x--x 4 root sys 512 Nov 3 15:24 usr
and in my ftp ~/etc
group file
root:0:0:root
guets::400:guest
passwd file
root:*:0:0::/:/bin/false
guest:403:400::/export/ftp/FSE/./fse:/bin/false
when I do an ftp to ftp.fse.ulaval.ca and I try to connect as guest, the
ftpd deamon sends me a guest access denied, What is missing on my setup ?
any ideas ?
thanks for you help
-----------------------------------
Laval University
Carlos Reed
[email protected]
http://www.fse.ulaval.ca/~creed
tel (418) 656-3245
From
[email protected] Thu Jan 25 07:02:21 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfTBS-0000emC; Thu, 25 Jan 96 07:01 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA11714; Thu, 25 Jan 1996 08:54:28 -0600
Received: from pangaea.eos.hokudai.ac.jp by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id WAA19398 for <
[email protected]>; Wed, 24 Jan 1996 22:08:13 -0600
Received: (from star@localhost) by pangaea.eos.hokudai.ac.jp (8.7.1+2.6Wbeta4/3.4W3) id NAA06704 for
[email protected]; Thu, 25 Jan 1996 13:08:12 +0900 (JST)
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 13:08:12 +0900 (JST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Akihiko YAMAMOTO <
[email protected]>
To:
[email protected]
Subject: test
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
test
ignore,please...
From
[email protected] Thu Jan 25 07:04:55 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfTEC-000CpgC; Thu, 25 Jan 96 07:04 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA12074; Thu, 25 Jan 1996 08:58:21 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id WAA21492 for <
[email protected]>; Wed, 24 Jan 1996 22:58:19 -0600
Received: from ea.com by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Wed, 24 Jan 1996 22:40:44 -0500 (CDT)
Received: from ronix (ronix.ea.com [159.153.152.151])
by ea.com (8.6.6.Beta9/8.6.6.Beta9) with SMTP id UAA15927 for
<
[email protected]>; Wed, 24 Jan 1996 20:58:06 -0800
Message-Id: <
[email protected]>
Date: Wed, 24 Jan 1996 20:58:06 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Bala Coomandur <
[email protected]>
To:
[email protected]
Subject: Help. problem with Mac Netscape client & wu-ftpd wu-2.4(18)
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 1.1N (X11; I; SunOS 5.4 sun4m)
X-URL:
http://freeway.oact.hq.nasa.gov/wuftp/mar/msg00015.html
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Greetings,
I am experiencing problems using a Netscape versions 1.1* & 2.0b* on
a Macintosh as ftp client talking to wu-ftpd Version wu-2.4(18)
(Sun Jan 29 00:58:05 PST 1995) The client is not able to
read even the top level directory listing. The version 1.1* client
says that "Netscape is unable to find the file / Check the filename
and try again." With Netscape 2.0b*, I get the banner message and
the client sits there for a very long time and prints "226" where you
will normally see the list of filenames. The "226" appears to be
the message identifier for "Transfer completed" or "Abort Completed"
There was no change made to the wu-ftp setup except for the
addition of users for accessing ~ftp/private/user_name and
~ftp/incoming/user_name
The same thing done with Netscape browsers running on Solaris, Win 95
didn't have any problem. Also I could use fetch 2.1.2 on the Mac, ws_ftp
on win_95, commandline ftp client on Solaris without any problems.
Our ftp server is quite busy all the time as it is also our web server
& campus nntp-server also receiving newsfeed from the net. So there could
be some delay in connecting to the ftp server, but never did lose any
connections for me. The only other significant thing that I do note
is that there are these messages in the syslog for a very long time:
"syslog: getpeername (in.ftpd): Broken pipe"
Our ftp site is: ftp.ea.com If any of you have a Macintosh running any
version of Netscape Client, you may point it to our ftp server
and see the similar results.
I tried to subscribe to the wu-ftpd mailing list by sending a mail
message to
[email protected] and the listserv's response was that
no such mailing-list? Could someone help me with that too?
Many thanks in advance.
--
EEEE EE Bala Coomandur Electronic Arts
EEEE EEEE
[email protected] UNIX Operations
EEEE EE EE
[email protected] 1400 Fashion Island Blvd
EASPORTSEASPORTS (415) 513-7168 San Mateo, CA 94404
From
[email protected] Thu Jan 25 07:09:29 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfTIg-0000oEC; Thu, 25 Jan 96 07:09 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA12393; Thu, 25 Jan 1996 09:01:55 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA27696 for <
[email protected]>; Thu, 25 Jan 1996 01:49:59 -0600
Received: from mailhost.onramp.net by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Thu, 25 Jan 1996 01:32:24 -0500 (CDT)
Received: from 199.184.212.220 (stockyard57.onramp.net [199.184.212.220])
by mailhost.onramp.net (8.7.3/8.6.5) with SMTP id BAA15811 for
<
[email protected]>; Thu, 25 Jan 1996 01:49:54 -0600 (CST)
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 01:51:26 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: Shane Trammel <
[email protected]>
To:
[email protected]
Subject: Compiled Version of WU-FTPD
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7bit
X-Mailer: Mozilla 2.0b6a (Macintosh; I; PPC)
X-URL:
http://freeway.oact.hq.nasa.gov/wuftp/mar/msg00019.html
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Is there already a compiled version of wu-ftpd that will run on the
HP 9000/800 class of machines.
Thanks You,
Shane Trammel
Please reply via email if possible.
From
[email protected] Thu Jan 25 07:40:41 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfTmi-000DaXC; Thu, 25 Jan 96 07:40 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA15676; Thu, 25 Jan 1996 09:28:45 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id IAA11309 for <
[email protected]>; Thu, 25 Jan 1996 08:51:11 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id PAA12022; Thu, 25 Jan 1996 15:50:54 +0100
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 15:50:54 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: help with guestgroups
In-Reply-To: <v02130507ad2bf396fd2b@[132.203.154.5]> from "Carlos Reed" at Jan 24, 96 03:57:53 pm
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Carlos Reed, who wrote :
> I'm trying to do a login group without succes so far.
>
> here it is what I did:
>
> on my /etc/group guests::21:guest
> on my /etc/passwd guest:*:21:21:Guest FTP:/export/ftp/FSE/./fse:/bin/false
> class guests guest *
> guestgroup guests
A perfect guestgroup-howto has been written by someone already, explaining all
the gory details..
'guestgroup howto'
A document describing the set up of guestgroups in the
wu-ftpd server. At this moment a seperate document from this
document.
<URL:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto>
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Thu Jan 25 07:41:56 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfTma-00079yC; Thu, 25 Jan 96 07:40 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA16138; Thu, 25 Jan 1996 09:32:18 -0600
Received: from garbanzo.SSESCO.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA12147 for <
[email protected]>; Thu, 25 Jan 1996 08:59:19 -0600
Received: from ribs.ssesco.com by garbanzo.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.srv.92.07.22)
id AA20931; Thu, 25 Jan 1996 08:59:31 -0600
Received: by ribs.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.cli.92.10.15)
id AA16222; Thu, 25 Jan 1996 08:59:19 -0600
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 08:59:17 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected] (wuftp)
Subject: Links in the anonymous FTP on RS6000 (AIX 3.2.5)
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Ya all did such a great job on my last problem, I've got another
one for ya.
If I setup a link in /u/ftp to somewhere outside of /u/ftp, it
doesn't seem to work. Let's try an example.
Suppose I'm in /u/ftp and do the following:
ln -fs /u/nau/CoolStuff CoolStuff
One would hope that /u/ftp/CoolStuff would point to
/u/nau/CoolStuff. It doesn't to the anonymous user.
Instead it points to /u/ftp/u/nau/CoolStuff. Kinda
useless.
After reading the docs, I'm pretty sure it's not supposed
to work that way. They use links in the docs that extend
outside of the /u/ftp structure.
Any ideas?
Oh yea, I'm running this on an RS6000 (AIX 3.2.5). Also,
I believe the same problem existed before we switched to
wu-ftpd.
Thanks.
--
William R. Nau
Supercomputer Systems Engineering and Services Company (SSESCO)
511 11th Avenue South, Suite 216
Minneapolis, Minnesota 55415-1536
Phone: 612-342-0003, Email:
[email protected], WWW:
http://www.SSESCO.com
From
[email protected] Thu Jan 25 07:56:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfU1s-000DalC; Thu, 25 Jan 96 07:56 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA17788; Thu, 25 Jan 1996 09:46:46 -0600
Received: from rescol by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA16729 for <
[email protected]>; Thu, 25 Jan 1996 09:37:08 -0600
Received: from [132.203.154.5] by rescol (SMI-8.6/SMI-SVR4)
id KAA00809; Thu, 25 Jan 1996 10:32:46 -0500
Message-Id: <v02130501ad2cfe334004@[132.203.154.5]>
Date: Thu, 25 Jan 1996 10:37:49 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Carlos Reed)
To:
[email protected]
Subject: I need some help in seting up guestgroup
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi gang!
I 'm running wu-ftp2.4 on solaris 2.5.
I did follow the "guestgroup how to" guide.
when I try to ftp as guest I get the following message:
Connected to rescol.fse.ulaval.ca.
220 rescol FTP server (Version wu-2.4(1) Thu Jan 25 08:32:43 EST 1996) ready.
Name (ftp.fse.ulaval.ca:creed): guest
530 User guest access denied...
Login failed.
Which files, shoul I start looking at?
Is this suposed to work with solaris 2.5 ?
thanks and have a nice warmy day
-----------------------------------
Laval University
Carlos Reed
[email protected]
http://www.fse.ulaval.ca/~creed
tel (418) 656-3245
From
[email protected] Thu Jan 25 08:56:00 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfUxN-0006rlC; Thu, 25 Jan 96 08:55 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA22305; Thu, 25 Jan 1996 10:42:28 -0600
Received: from mv3100.bsr.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA22014 for <
[email protected]>; Thu, 25 Jan 1996 10:38:55 -0600
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 11:38:23 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Jonathan F. Carpenter" <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: RS/6000 : wu-ftpd error in syslog
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi,
I'm trying to install wu-ftpd 2.4 on an RS/6000.
I found out that I needed the file /etc/shells, so now I can log on as
a non-anonymous user. Now, whenever I connect using ftp, after logging
on, whenever I issue a command such as ls or get or put, wu-ftpd will
put the message
Jan 23 19:21:05 batman ftpd[22543]: setsockopt (IP_TOS): Not owner
in the syslog file. The command seems to work, but I don't know if this
indicates some sort of problem.
I was able to find the line of source code where the error is happening;
it is in ftpd.c at the lines:
#ifdef IPTOS_THROUGHPUT
on = IPTOS_THROUGHPUT;
if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *) &on, sizeof(int)) < 0)
syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
#endif
But I've used up my limited knowledge of C and TCP sockets so I'm stumped
as to where to go from here. Can anyone offer any help/hints/suggestions?
One thing I did was change the wu ftpd executable to owner/group
root/system, so it was like IBM's ftpd, and I also used chmod to
give ftpd set-user-id mode, also just like IBM's ftpd but that
didn't make any difference.
Also, would I be better off going to a newer version of wu-ftd? The
version I'm trying to install I got from the wustl archive. I understand
that there is a newer one somewhere else. Can someone point me in the right
direction?
Thanks,
Jon Carpenter
[email protected]
From
[email protected] Thu Jan 25 11:09:51 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfX34-000DV5C; Thu, 25 Jan 96 11:09 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA03876; Thu, 25 Jan 1996 12:56:07 -0600
Received: from shell1.eznet.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA03380 for <
[email protected]>; Thu, 25 Jan 1996 12:51:16 -0600
Received: (from dfoster@localhost) by shell1.eznet.net (8.6.9/8.6.9) id NAA25681; Thu, 25 Jan 1996 13:51:14 -0500
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 13:51:13 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Dan Foster <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Problem with ftpd needing inetd restart and other things
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Howdy!
My second post to the list in months. :) Been following for a while
now. I may have missed something, but I don't think I've seen the particular
item of interest to date, so...
I'm running a site that has Linux 1.2.13 on a Pentium 90 with 64
megs of RAM, and is the primary DNS server for the domain, as well as the
ftp server for all users (real and anonymous). So it sure does get a good
workout, esp. when people make available files of questionable taste. ;-)
I was running 2.4.2 beta 8 for a while...now beta 9. The last few
days before I upgraded to beta 9, I noticed that the ftp server doesn't
seem to be responding to ftp connects "ftp: connection refused" (or something
along those lines), but kill -HUP'ing inetd clears up the problem. The same
is also true if I ftpshut the server, then delete the /etc/shutmsg file...
I have to kill -HUP inetd to get ftp restarted. The problem is still around
even though I have upgraded to beta 9.
Is this normal, a known feature, or a bug?
Also... I made sure my configuration was correct through the check
program supplied with the distribution, looks good. Double-checked all
config and makefiles. I know that it is tracking number of users ok, etc.
However it's not disconnecting idle users (i.e. users that has been
idle for 10, 12 hours) which is problematic because it's preventing the
corresponding number of users from connecting due to the limits imposed.
I could up the limits...but the problem would still re-occur, although after
a longer period of time. Is this normal? What could cause this kind of thing?
Last thing. :) Virtual domains... I had enabled VD's in beta 7 and
onward, but noticed that it seemed to break the 'upload' keyword, which
I need at my site, so I disabled virtual domains. Does anybody know if this
has since been fixed or where I could find a decent VD patch that doesn't
break anything?
Now, if there is any areas where more specific information is
required, please let me know and I'd be glad to supply it (strace output,
ldd, ls -l, whatever...). Many thanks! :)
-Dan Foster
E-Znet, Inc.
Internet:
[email protected]
From
[email protected] Thu Jan 25 11:45:06 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfXaZ-000FJ9C; Thu, 25 Jan 96 11:44 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA07336; Thu, 25 Jan 1996 13:35:51 -0600
Received: from cowdog.prowillen.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA06846 for <
[email protected]>; Thu, 25 Jan 1996 13:29:17 -0600
Received: from [204.118.169.70] by cowdog.prowillen.com
(Netscape Mail Server v1.1) with SMTP id AAA14259;
Thu, 25 Jan 1996 11:30:13 -0700
Message-Id: <v02140a05ad2d899d012b@[204.118.169.70]>
Date: Thu, 25 Jan 1996 11:30:12 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Uwe Willenbacher)
To:
[email protected]
Cc:
[email protected]
Subject: Re: Help. problem with Mac Netscape client & wu-ftpd wu-2.4(18)
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
You wrote:
> Greetings,
>
> I am experiencing problems using a Netscape versions 1.1* & 2.0b* on
> a Macintosh as ftp client talking to wu-ftpd Version wu-2.4(18)
> (Sun Jan 29 00:58:05 PST 1995) The client is not able to
> read even the top level directory listing. The version 1.1* client
> says that "Netscape is unable to find the file / Check the filename
> and try again." With Netscape 2.0b*, I get the banner message and
> the client sits there for a very long time and prints "226" where you
> will normally see the list of filenames. The "226" appears to be
> the message identifier for "Transfer completed" or "Abort Completed"
> There was no change made to the wu-ftp setup except for the
> addition of users for accessing ~ftp/private/user_name and
> ~ftp/incoming/user_name
>
> The same thing done with Netscape browsers running on Solaris, Win 95
> didn't have any problem. Also I could use fetch 2.1.2 on the Mac, ws_ftp
> on win_95, commandline ftp client on Solaris without any problems.
> Our ftp server is quite busy all the time as it is also our web server
> & campus nntp-server also receiving newsfeed from the net. So there could
> be some delay in connecting to the ftp server, but never did lose any
> connections for me. The only other significant thing that I do note
> is that there are these messages in the syslog for a very long time:
> "syslog: getpeername (in.ftpd): Broken pipe"
I do experience the same problem, and yes, I did try changeing the GroupID
and UserID's of the tcp and zero files within the /dev directory - I think
I tried just about everything there is to try...
I would also greatly appreatiate *any* pointers to make this work.
The funny thing, I might add is that when I login via Netscape Mac as a
*real* user, and not a guest, everything works fine and dandy...
-go figure
Cheers, Uwe
BTW: This is wu-ftp 2.4 running on SunSparc Solaris 2.4
\\|//
(o o)
==================================w===U===w================================
|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|
Uwe Willenbacher |___|___|___|___|___|___| Fax: 415.333.5485
Webmaster/SysAdmin |___|___|___|___|___| WWW: www.prowillen.com
Proctor-Willenbacher |___|___|___|___|___|___| eMail:
[email protected]
|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|
From
[email protected] Thu Jan 25 17:00:32 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfcVn-000D3PC; Thu, 25 Jan 96 16:59 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA01617; Thu, 25 Jan 1996 18:52:08 -0600
Received: from nd.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id SAA01247 for <
[email protected]>; Thu, 25 Jan 1996 18:45:43 -0600
Received: from darwin.cc.nd.edu by nd.edu with ND-SMTP (PP); Thu, 25 Jan 1996 19:42:00 -0500
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 19:41:56 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Desney Tan <
[email protected]>
To:
[email protected]
Subject: Ques: Real users can't log in...
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
When a real user tries to log in, we get:
530 Login Incorrect.
Login Failed.
Could anyone tell me what the problem is... Anonymous users get in just
fine... Is it the shadowed passwords??? If so, how exactly do I recompile
the stuff to deal with this???
Any help would be greatly appreciated....
+---------------------------+ __MMM__
| Desney Swee-Leong Tan / (o o)
| University of Notre Dame \ +---oOO--(_)--OOo--------+
| Computer Engineering / / |
| \ \ 328 Keenan Hall |
|
[email protected] / / Notre Dame, IN 46556 |
+---------------------------+ \ (219) 634-3332 |
+------------------------+
From
[email protected] Thu Jan 25 19:41:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tff27-0000oIC; Thu, 25 Jan 96 19:41 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id VAA10042; Thu, 25 Jan 1996 21:31:50 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id VAA09707 for <
[email protected]>; Thu, 25 Jan 1996 21:25:02 -0600
Received: from mailhost.onramp.net by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Thu, 25 Jan 1996 21:07:25 -0500 (CDT)
Received: from 199.184.212.219 (stockyard56.onramp.net [199.184.212.219])
by mailhost.onramp.net (8.7.3/8.6.5) with SMTP id VAA09149 for
<
[email protected]>; Thu, 25 Jan 1996 21:24:49 -0600 (CST)
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 21:26:24 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: Shane Trammel <
[email protected]>
To:
[email protected]
Subject: Compiled version of wu-ftpd 2.4 for HP/UX
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7bit
X-Mailer: Mozilla 2.0b6a (Macintosh; I; PPC)
X-URL:
http://freeway.oact.hq.nasa.gov/wuftp/jan/msg00030.html
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Can someone tell me where I can find a compiled version of WU-FTPD
2.4 for HP 9000/800 system. The System has HP/UX 9.04
Please send any responses to my email address:
[email protected]
Thanks,
Shane Trammel
From
[email protected] Thu Jan 25 20:05:17 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tffPH-000FBdC; Thu, 25 Jan 96 20:04 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id VAA11133; Thu, 25 Jan 1996 21:57:35 -0600
Received: from xx.acs.appstate.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id VAA10914 for <
[email protected]>; Thu, 25 Jan 1996 21:51:12 -0600
Received: (from jmm@localhost) by xx.acs.appstate.edu (8.6.12/8.6.12) id WAA28215 for
[email protected]; Thu, 25 Jan 1996 22:51:13 -0500
Message-Id: <
[email protected]>
Date: Thu, 25 Jan 1996 22:51:13 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Martin Moore <
[email protected]>
To:
[email protected]
Subject: Re: Ques: Real users can't log in...
In-Reply-To: <
[email protected]> from "Desney Tan" at Jan 25, 96 07:41:56 pm
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I just ran into this on one of my Ultrix machines. I had to changed the
config.OSTYPE file and define the ULTRIX_AUTH variable. I bet depending on
your OS you could define the SHADOW_PASSWORD variable...
You may also have to change the makefile.OSTYPE to add needed libraries...
I hope that this helps...
>
>
> When a real user tries to log in, we get:
>
> 530 Login Incorrect.
> Login Failed.
>
> Could anyone tell me what the problem is... Anonymous users get in just
> fine... Is it the shadowed passwords??? If so, how exactly do I recompile
> the stuff to deal with this???
>
> Any help would be greatly appreciated....
>
> +---------------------------+ __MMM__
> | Desney Swee-Leong Tan / (o o)
> | University of Notre Dame \ +---oOO--(_)--OOo--------+
> | Computer Engineering / / |
> | \ \ 328 Keenan Hall |
> |
[email protected] / / Notre Dame, IN 46556 |
> +---------------------------+ \ (219) 634-3332 |
> +------------------------+
>
>
>
--
J Martin Moore (704) 262-6274
Appalachian State University
Academic Computing Services
Room 2067 New COB
Boone, NC 28608
[email protected]
[email protected]
From
[email protected] Thu Jan 25 20:44:15 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfg0b-000CqtC; Thu, 25 Jan 96 20:43 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id WAA12911; Thu, 25 Jan 1996 22:33:02 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id WAA12573 for <
[email protected]>; Thu, 25 Jan 1996 22:26:23 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id WAA21686; Thu, 25 Jan 1996 22:26:21 -0600 (CST)
Message-Id: <
[email protected]>
Date: 26 Jan 1996 04:26:20 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: Problem with ftpd needing inetd restart and other things
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]> Dan Foster <
[email protected]> writes:
> I was running 2.4.2 beta 8 for a while...now beta 9. The last few
>days before I upgraded to beta 9, I noticed that the ftp server doesn't
>seem to be responding to ftp connects "ftp: connection refused" (or something
>along those lines), but kill -HUP'ing inetd clears up the problem. The same
>is also true if I ftpshut the server, then delete the /etc/shutmsg file...
>I have to kill -HUP inetd to get ftp restarted. The problem is still around
>even though I have upgraded to beta 9.
>
> Is this normal, a known feature, or a bug?
Folks tell me it is a bug, but I can't reproduce it on my test systems. I
am waiting for someone to provide me with a specific senario so I can
reproduce it on one of my test systems (BSDI, Linux, NetBSD, FreeBSD, SunOS
or Solaris). If you can provide that, I can work on a fix. Unless I can
see the bug, I can't fix it.
> Last thing. :) Virtual domains... I had enabled VD's in beta 7 and
>onward, but noticed that it seemed to break the 'upload' keyword, which
>I need at my site, so I disabled virtual domains. Does anybody know if this
>has since been fixed or where I could find a decent VD patch that doesn't
>break anything?
This is the first I have heard about this. Have you retested it in beta-9 to
see if it is still there? If you do find it, please let me know at
the
[email protected] address.
[I monitor this mailing list, but I can't promise I'll catch every bug report
posted here. Sending it to the
[email protected] address will get it
into the right queue for me to work on it.]
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Thu Jan 25 22:45:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfhuE-0000veC; Thu, 25 Jan 96 22:45 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id AAA18795; Fri, 26 Jan 1996 00:38:03 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id AAA18356 for <
[email protected]>; Fri, 26 Jan 1996 00:28:05 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id IAA06100; Fri, 26 Jan 1996 08:28:13 -0200
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 08:28:13 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: Ques: Real users can't log in...
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Desney Tan wrote:
>
> When a real user tries to log in, we get:
>
> 530 Login Incorrect.
> Login Failed.
>
> Could anyone tell me what the problem is... Anonymous users get in just
> fine... Is it the shadowed passwords??? If so, how exactly do I recompile
> the stuff to deal with this???
>
> Any help would be greatly appreciated....
>
> +---------------------------+ __MMM__
> | Desney Swee-Leong Tan / (o o)
> | University of Notre Dame \ +---oOO--(_)--OOo--------+
> | Computer Engineering / / |
> | \ \ 328 Keenan Hall |
> |
[email protected] / / Notre Dame, IN 46556 |
> +---------------------------+ \ (219) 634-3332 |
> +------------------------+
Hi
Do you have an /etc/shells file? If so does it identify by full path
name all of the shells that are in use?
Regards
Nathan
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Fri Jan 26 00:17:54 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfjLr-000BBYC; Fri, 26 Jan 96 00:17 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA21899; Fri, 26 Jan 1996 02:10:17 -0600
Received: from taz.hyperreal.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id CAA21603 for <
[email protected]>; Fri, 26 Jan 1996 02:03:20 -0600
Received: by taz.hyperreal.com (8.6.12/8.6.5) id AAA10308; Fri, 26 Jan 1996 00:03:20 -0800
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 00:03:20 -0800 (PST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Bennett <
[email protected]>
To:
[email protected]
Subject: Re: Problem with ftpd needing inetd restart and other things
In-Reply-To: <
[email protected]> from "Stan Barber" at Jan 26, 96 04:26:20 am
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL24]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Stan Barber said ::
>
> > I was running 2.4.2 beta 8 for a while...now beta 9. The last few
> >days before I upgraded to beta 9, I noticed that the ftp server doesn't
> >seem to be responding to ftp connects "ftp: connection refused" (or something
> >along those lines), but kill -HUP'ing inetd clears up the problem. The same
> >is also true if I ftpshut the server, then delete the /etc/shutmsg file...
> >I have to kill -HUP inetd to get ftp restarted. The problem is still around
> >even though I have upgraded to beta 9.
> >
> > Is this normal, a known feature, or a bug?
>
> Folks tell me it is a bug, but I can't reproduce it on my test systems. I
> am waiting for someone to provide me with a specific senario so I can
> reproduce it on one of my test systems (BSDI, Linux, NetBSD, FreeBSD, SunOS
> or Solaris). If you can provide that, I can work on a fix. Unless I can
> see the bug, I can't fix it.
Whew. I thought this was me. Dan, I'm seeing sessions that should've idled
out hanging around on my machine (BSDI 2.0 with a few patches) as well.
I just installed beta-9, but I fear that won't fix the problem. (I had
beta-8 previously, and previous to that the stock wu-ftpd on the bsdi cd
rom, which didn't allow files to be put in a directory with rights of
rwx-wx-wx!)
Stan : Tomorrow at work I'll try and run some tests to see if I can
get the situation to happen under BSDI. Wish me luck!
Andrew
--
Andrew Bennett
[email protected],
[email protected]
http://taz.hyperreal.com/~abennett/
From
[email protected] Fri Jan 26 04:00:16 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfmp9-000FlXC; Fri, 26 Jan 96 04:00 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id FAA28184; Fri, 26 Jan 1996 05:53:47 -0600
Received: from mail1.eznet.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id FAA28095 for <
[email protected]>; Fri, 26 Jan 1996 05:52:05 -0600
Received: from [198.70.51.86] (grover.eznet.net [198.70.51.86]) by mail1.eznet.net (8.6.12/8.6.9) with SMTP id HAA04438; Fri, 26 Jan 1996 07:01:42 -0500
Message-Id: <v01530500ad2e6078985a@[198.70.51.86]>
Date: Fri, 26 Jan 1996 06:50:45 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Dan Foster)
To:
[email protected]
Cc:
[email protected],
[email protected]
Subject: Re: Problem with ftpd needing inetd restart and other things
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>>In article <
[email protected]> Dan Foster
>><
[email protected]> writes:
>> I was running 2.4.2 beta 8 for a while...now beta 9. The last few
>>days before I upgraded to beta 9, I noticed that the ftp server doesn't
>>seem to be responding to ftp connects "ftp: connection refused" (or something
>>along those lines), but kill -HUP'ing inetd clears up the problem. The same
>>is also true if I ftpshut the server, then delete the /etc/shutmsg file...
>>I have to kill -HUP inetd to get ftp restarted. The problem is still around
>>even though I have upgraded to beta 9.
>Stan O. Barber writes:
>Folks tell me it is a bug, but I can't reproduce it on my test systems. I
>am waiting for someone to provide me with a specific senario so I can
>reproduce it on one of my test systems (BSDI, Linux, NetBSD, FreeBSD, SunOS
>or Solaris). If you can provide that, I can work on a fix. Unless I can
>see the bug, I can't fix it.
Understood. I want to produce a *lot* more specific information (specific to
Linux, at least) before I'll do so. My co-worker and I were discussing this...
it sounds as if with a sudden flood of simultaneous connections for ftp,
inetd may have panicked and disabled the ftp service, thinking it was looping
or respawning too quickly for a misconfigured ftp service. Does this sound
anywhere reasonable or a left-field idea? :) I'll still need to look at
ftpshut.c to see exactly how everything works exactly, and so on. We're
considering debugging inetd to see if this is indeed the case...and if we do
go that route, we'd be considering ways to debug inetd effectively without
adding sufficient delays to it to break things.
>> Last thing. :) Virtual domains... I had enabled VD's in beta 7 and
>>onward, but noticed that it seemed to break the 'upload' keyword, which
>>I need at my site, so I disabled virtual domains. Does anybody know if this
>>has since been fixed or where I could find a decent VD patch that doesn't
>>break anything?
>This is the first I have heard about this. Have you retested it in beta-9 to
>see if it is still there? If you do find it, please let me know at
>the
[email protected] address.
By golly...the same config (I had commented out the 'virtual' keyword and
the -DVIRTUAL in appropriate files when it didn't work for beta 7 and 8) works
with beta 9 now. Looks mondo cool! :) In the future, I'll re-test each beta or
release version to see if it eliminates a bug or introduces a new one. Sorry for
adding unnecessary traffic to the list.
-Dan
Internet:
[email protected]
From
[email protected] Fri Jan 26 04:14:03 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfn1H-000Fm2C; Fri, 26 Jan 96 04:12 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id GAA28703; Fri, 26 Jan 1996 06:06:18 -0600
Received: from gwosi.telesc.gov.br by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id FAA28408 for <
[email protected]>; Fri, 26 Jan 1996 05:59:50 -0600
Received: by gwosi.telesc.gov.br (AIX 3.2/UCB 5.64/4.03)
id AA18437; Fri, 26 Jan 1996 10:03:17 -0600
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 09:57:40 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Jane Ferreira Cunha <
[email protected]>
To:
[email protected]
Subject: ls doesn't work
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hello, everybody!
As I am new to this list, I'd like to know if there is a FAQ or
something like that. I don't know if this was already discussed here, but
my problem is that when I log in as anonymous, I can't list the files in
the directory. I followed all the instructions cointained in the INSTALL
file.
I have a RS/6000 360, with AIX 3.2.5.
TIA,
Jane
From
[email protected] Fri Jan 26 04:29:37 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfnHX-000DYrC; Fri, 26 Jan 96 04:29 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id GAA29409; Fri, 26 Jan 1996 06:22:20 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id GAA29106 for <
[email protected]>; Fri, 26 Jan 1996 06:15:59 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id NAA21978; Fri, 26 Jan 1996 13:16:25 +0100
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 13:16:25 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: ls doesn't work
In-Reply-To: <
[email protected]> from "Jane Ferreira Cunha" at Jan 26, 96 09:57:40 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Jane Ferreira Cunha, who wrote :
> As I am new to this list, I'd like to know if there is a FAQ or
> something like that.
Yes, there is...
http://www.hvu.nl/~koos/wu-ftpd-faq.html
> I don't know if this was already discussed here,
Uhm.. well.. sort of.
Anyway, the FAQ contains some pointers to general and specific solutions
for this problem.
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is useless. Clickety Click
From
[email protected] Fri Jan 26 05:15:11 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfnzd-000FmCC; Fri, 26 Jan 96 05:15 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA01317; Fri, 26 Jan 1996 07:07:37 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id HAA01226 for <
[email protected]>; Fri, 26 Jan 1996 07:06:08 -0600
Received: from parrott.nortel.net by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Fri, 26 Jan 1996 06:48:29 -0500 (CDT)
Received: by parrott.nortel.net (1.38.193.4/16.2) id AA27148; Fri,
26 Jan 1996 08:09:51 -0500
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 08:09:50 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Jeffrey Smith <
[email protected]>
To:
[email protected]
Subject: Chown and chrgp not working
Content-transfer-encoding: 7BIT
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
--
upload /users/ftp * no
upload /users/ftp /pub yes root anon 0600 dirs
upload /users/ftp /pub/* yes root anon 0600 dirs
Here's my ftpaccess stuff. The dirs and nodirs command works
fine. However, the chmod and the chown don't work at
all.
I was hopeing that someone out there may have an idea for
me. I'm stumped.
Thanks,
Jeffrey
From
[email protected] Fri Jan 26 05:39:14 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfoMv-000FmjC; Fri, 26 Jan 96 05:39 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA02194; Fri, 26 Jan 1996 07:31:32 -0600
Received: from garbanzo.SSESCO.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA01986 for <
[email protected]>; Fri, 26 Jan 1996 07:27:16 -0600
Received: from ribs.ssesco.com by garbanzo.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.srv.92.07.22)
id AA24835; Fri, 26 Jan 1996 07:27:28 -0600
Received: by ribs.SSESCO.com (AIX 3.2/UCB 5.64/4.03.SSESCO.cli.92.10.15)
id AA15047; Fri, 26 Jan 1996 07:27:15 -0600
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 07:27:13 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: ls doesn't work
In-Reply-To: <
[email protected]> from "Jane Ferreira Cunha" at Jan 26, 96 09:57:40 am
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Jane Ferreira Cunha writes:
> Hello, everybody!
>
> As I am new to this list, I'd like to know if there is a FAQ or
> something like that. I don't know if this was already discussed here, but
> my problem is that when I log in as anonymous, I can't list the files in
> the directory. I followed all the instructions cointained in the INSTALL
> file.
> I have a RS/6000 360, with AIX 3.2.5.
I just went through this on AIX 3.2.5 and the folks on the list helped
quite a bit. My problem turned out to be the need for the libraries
libc.a and libcurses.a in /u/ftp/lib.
One person also included the following suggestion:
"======================================================================
"SOLUTION:
"
" YOU NEED TO HAVE /ETC/GROUP!!!!!! This is not optional. The ls
"command does not do the right thing if it does not have an
"/etc/group it can read.
"
"======================================================================
"ANALYSIS:
"
" So, here's my final analysis of the "dir/ls -l" problem. I now
"understand the differences between /bin/ls and /usr/ucb/ls more than
"I care to, and also know more about the internal code of ftpd than I
"care to. I also know why some sites have this problem right away,
"while others never experience it.
"
" I followed the FAQ, and ran truss on ~ftp/bin/ls. Yes, all the
"libraries are in fact there. I then ran 'chroot ~ftp /bin/ls', and
"that worked too. That's not surprising, considering that tar and
"compress have always done the right thing. While hacking about, I
"remembered/discovered that there is a /bin/ls and a /usr/ucb/ls on
"the system. When I copied /usr/ucb/ls to ~ftp/bin/ls, everything
"appeared to work properly.
"
" I ran 'chroot ~ftp /bin/ls ' and 'chroot ~ftp /bin/ls.ucb'.
"Both of these worked. So now the task was to find out why ftpd didn't
"like the /bin/ls. After running multiple options through both
"versions of ls, the only real difference I could find was that the
"/bin/ls always showed group information, but /usr/ucb/ls did not. I
"then tried 'chroot ~ftp /bin/ls -l' and 'chroot ~ftp /bin/ls.ucb -l'.
"Both of these core dumped. Running truss with these binaries showed
"that they were both opening up the /etc/group file.
"
" When I copied /etc/group to ~ftp/etc/group, everything worked fine.
"
"
"======================================================================
"SO WHY DO SOME SITES HAVE THIS PROBLEM AND OTHER SITES DON'T?
"
" A) Some sites don't forget to copy /etc/group. (BTW: This was
"buried in the Solaris ftpd man page. Their discussion of the
"contents of directories lists each file needed by name on it's own
"line, while the section on /etc is pushed together into a single
"paragraph. My fault for missing it because I didn't read the man
"page with a fine-tooth comb.)
"
" B) Some sites run a version of ls that does not show groups by
"default. The test here is to do a 'ls -g' (show groups) and see if
"that works. If it fails, then you don't have a ~ftp/etc/group file.
"
" C) Some sites (Non-Solaris-2.4) have a copy of ls that does the
"right thing when there is not a group file. (ie, it shows that
"group number instead of core dumping.)
"
"
"======================================================================
"SUGGESTIONS FOR CHANGES:
"
" ftpd.c: This should really log an error message when something
" core dumps.
"
" ftpd/INSTALL: This mentions several problems with assorted
" machines. There should probably be a warning about
" this issue as well.
"
" ftpd/INSTALL: This mentions the mailing list. It should
" reference the FAQ and any patch sites as well.
"
" FAQ: The FAQ should mention this problem/solution. This really
" is a "Frequently Asked Question", and this fix is much
" easier than trying to get the GNU fileutils package to
" compile and statically link. (Yes, I know static is
" better, but some people will take that chance anyways.)
--
William R. Nau
Supercomputer Systems Engineering and Services Company (SSESCO)
511 11th Avenue South, Suite 216
Minneapolis, Minnesota 55415-1536
Phone: 612-342-0003, Email:
[email protected], WWW:
http://www.SSESCO.com
From
[email protected] Fri Jan 26 07:49:48 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfqPG-000FpVC; Fri, 26 Jan 96 07:49 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA10891; Fri, 26 Jan 1996 09:42:11 -0600
Received: from nd.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA10703 for <
[email protected]>; Fri, 26 Jan 1996 09:41:01 -0600
Received: from scandium.helios.nd.edu by nd.edu with ND-SMTP (PP); Fri, 26 Jan 1996 10:33:38 -0500
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 10:33:39 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Desney Tan <
[email protected]>
To:
[email protected]
Subject: Ques: AFS authentication????
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Fri, 26 Jan 1996, Nathan Sowatskey x4758 wrote:
> When a real user tries to log in, we get:
>
> 530 Login Incorrect.
> Login Failed.
>
> Could anyone tell me what the problem is... Anonymous users get in just
> fine... Is it the shadowed passwords??? If so, how exactly do I recompile
> the stuff to deal with this???
Think we've isolated the problem to the fact that we need to authenticate
our passwords with AFS... For example, a passwd entry would look like:
afsid:X:30417:40:user fullname:/home/user/whatever:/whatever/shell
Any suggestions on how to do this?
+---------------------------+ __MMM__
| Desney Swee-Leong Tan / (o o)
| University of Notre Dame \ +---oOO--(_)--OOo--------+
| Computer Engineering / / |
| \ \ 328 Keenan Hall |
|
[email protected] / / Notre Dame, IN 46556 |
+---------------------------+ \ (219) 634-3332 |
+------------------------+
From
[email protected] Fri Jan 26 09:04:50 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfrZa-000FqUC; Fri, 26 Jan 96 09:04 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA16592; Fri, 26 Jan 1996 10:54:21 -0600
Received: from academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id KAA15601 for <
[email protected]>; Fri, 26 Jan 1996 10:43:23 -0600
Received: (from sob@localhost) by academ.com (8.7.3/8.7.1) id KAA29633; Fri, 26 Jan 1996 10:42:52 -0600 (CST)
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 10:42:52 CST
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected] (Dan Foster),
[email protected]
Subject: Re: Problem with ftpd needing inetd restart and other things
X-Mailer: Mail User's Shell (7.2.5 10/14/92)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I am glad that one of your bugs has been fixed in beta-9. I look forward to
hearing from you about the other one.
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Fri Jan 26 09:33:35 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfs1U-00077mC; Fri, 26 Jan 96 09:33 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA18716; Fri, 26 Jan 1996 11:22:02 -0600
Received: from ns by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id LAA18351 for <
[email protected]>; Fri, 26 Jan 1996 11:17:14 -0600
Received: from pluto.kset.com by ns (5.x/SMI-SVR4)
id AA03068; Fri, 26 Jan 1996 09:17:11 -0800
Received: by pluto.kset.com (5.0/SMI-SVR4)
id AA01300; Fri, 26 Jan 1996 09:12:54 +0800
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 09:12:54 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: ftpd and Firewalls (I hate PASV)
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
So what are people doing about FTP-PASV and filtering firewalls/routers?
It appears that the PASV request tells the ftpd to open a random
bignum ( > 1023) port on the client side.
My understanding was that you should block incoming connections > 1023.
In particular, 1025, 2000, 2049, 2766, 6000-6xxx. Are people that are
running ftp servers just allowing any old site to connect to any old
bignum port they want? Or are they denying the use of the PASV command?
(Can this be done on the ftpd side of things?)
This is a BIG problem for me, as my director wants people that use Netscape
(Which does the PASV, and is apparently the only browser to do so) to be
able to ftp to our site.
>>>Ericw
(And no, this message was not crossposted to the Firewalls/FTPD/firewall-1
mailing lists, but was sent separately to each list. If there is any
conclusion to this discussion, it will be summarized, and mailed to each
list.)
From
[email protected] Fri Jan 26 11:23:27 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tftk0-000D8pC; Fri, 26 Jan 96 11:23 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA27456; Fri, 26 Jan 1996 13:14:33 -0600
Received: from relay5.UU.NET by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA26539 for <
[email protected]>; Fri, 26 Jan 1996 13:02:22 -0600
Received: from ipxpress.aws.waii.com by relay5.UU.NET with SMTP
id QQaafk07735; Fri, 26 Jan 1996 14:02:13 -0500 (EST)
Received: from sfwwf1.aws.waii.com by ipxpress.aws.waii.com with SMTP id AA10160
(5.65c/IDA-1.4.4 for <@ipxpress.aws.waii.com:
[email protected]>); Fri, 26 Jan 1996 13:01:59 -0600
Received: by sfwwf1.aws.waii.com (940816.SGI.8.6.9/940406.SGI)
for
[email protected] id LAA00545; Fri, 26 Jan 1996 11:41:01 -0800
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 1996 11:41:00 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: "Jeff Middleton" <
[email protected]>
To:
[email protected]
Subject: Re: ftpd and Firewalls (I hate PASV)
In-Reply-To:
[email protected]
"ftpd and Firewalls (I hate PASV)" (Jan 26, 9:12am)
References: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Z-Mail (3.2.2 10apr95 MediaMail)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Jan 26, 9:12am,
[email protected] wrote:
> Subject: ftpd and Firewalls (I hate PASV)
> So what are people doing about FTP-PASV and filtering firewalls/routers?
> It appears that the PASV request tells the ftpd to open a random
> bignum ( > 1023) port on the client side.
>
> My understanding was that you should block incoming connections > 1023.
> In particular, 1025, 2000, 2049, 2766, 6000-6xxx. Are people that are
> running ftp servers just allowing any old site to connect to any old
> bignum port they want? Or are they denying the use of the PASV command?
> (Can this be done on the ftpd side of things?)
Some firewalls (eg. Firewall-1) can allow >1023 only to specific hosts
using a packet-filter technique. You can set a rule to allow only ftp
and >1023 tcp packets to communicate with your ftp server. This may
still provide an opportunity for problems though.
--
________________________________________________________________
__ __________________________________________________________
____ N _______________
_____ | _______________ JEFF MIDDLETON / Staff Systems Analyst II
_____ ^ ______________
[email protected]
_____ / \ _____________
_ / | \ ________ Western Atlas International, Inc.
_ W -< -+- >- E ________ Logging Services Division
_____ \ | / _____________ P.O. Box 1407, Houston, TX 77251-1407
_____ \ / ______________ (713) 972 4748 - Voice
_____ v _______________ (713) 972 5524 - FAX
____ | _______________
__ S __________________O_n__T_a_r_g_e_t___O_n__T_i_m_e_!_______
_________________________________________________________________
From
[email protected] Fri Jan 26 12:26:36 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfuj3-0000cfC; Fri, 26 Jan 96 12:26 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA02679; Fri, 26 Jan 1996 14:17:49 -0600
Received: from parrott.nortel.net by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA02093 for <
[email protected]>; Fri, 26 Jan 1996 14:10:34 -0600
Received: by parrott.nortel.net
(1.38.193.4/16.2) id AA27559; Fri, 26 Jan 1996 15:14:21 -0500
Message-Id: <
[email protected]>
Date: Fri, 26 Jan 96 15:14:21 EST
Reply-To:
[email protected]
Sender:
[email protected]
From: Jeffrey Smith <
[email protected]>
To:
[email protected]
Subject: Here's one for the PRO's
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Ok this one is over my head. And for the guru's of wu-ftpd.
I want local to my domain read & write.
I want remote to my domain read only.
------------------------------------------------------------------
ftpaccess:
class local anonymous 137.118.*.*
class remote anonymous *
autogroup anon local
upload /users/ftp /pub yes admin anon 0664 dirs
upload /users/ftp /pub/* yes admin anon 0664 dirs
upload /users/ftp /bin no
upload /users/ftp /etc no
-------------------------------------------------------------------
Dir listing:
rwxrwxr_x admin anon /users/ftp/pub
Ok, so as it is set up, it works for the root (/users/ftp) directory.
But.... When a local user makes a directory, the new dir gets
a 775 (ftp.anon) permissions. ( rwxrwxr_x ftp anon /users/ftp/pub/newdir )
This means the the remote user (ftp.other) can write to this
new directory (/users/ftp/pub/newdir).
What I need is for the directory to be created with a 575 chmod.
So that ONLY members of the anon group (local ftp users) can write
to it. ( r_xrwxr_x ftp anon /users/ftp/pub/newdir )
There must be an easier way. Or something that I am missing altogether.
I would have thought that the upload section of ftpaccess would also
affect new directories, but NOOOOOOOOO.
Any advice would be greatly appreciated.
Thanks,
Jeffrey
[email protected]
From
[email protected] Fri Jan 26 12:49:57 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tfv4T-000CtQC; Fri, 26 Jan 96 12:48 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA04293; Fri, 26 Jan 1996 14:40:14 -0600
Received: from puma.jf.intel.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA03853 for <
[email protected]>; Fri, 26 Jan 1996 14:33:17 -0600
Received: from puma.jf.intel.com by puma.jf.intel.com (NTMail 3.00.06) id aa000976 Fri, 26 Jan 96 12:33:03 -0800 (PST)
Message-Id: <2.2.32.19960126123303.002e4988@puma>
Date: Fri, 26 Jan 1996 12:33:03 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From: Darci Chapman <
[email protected]>
To:
[email protected]
Subject: Re: Here's one for the PRO's
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender: dchapmax@puma
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Info: Evaluation version at puma.jf.intel.com
X-Info: NTMail v3.00.06 installed 1/6/96
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
The below is a bug with wu-ftpd 2.4 -- I reported it to the list about
three months ago. We hacked the source code to do the right thing, where the
'right thing' was defined as used the same kind of permissions for creating
directories that are specified for creating files (ie group write or not, etc).
Cheers,
..dlc...
At 03:14 PM 1/26/96 EST, Jeffrey Smith <
[email protected]> wrote:
>Ok this one is over my head. And for the guru's of wu-ftpd.
>
>I want local to my domain read & write.
>
>I want remote to my domain read only.
>
>------------------------------------------------------------------
>ftpaccess:
>
>class local anonymous 137.118.*.*
>class remote anonymous *
>
>
>autogroup anon local
>
>upload /users/ftp /pub yes admin anon 0664 dirs
>upload /users/ftp /pub/* yes admin anon 0664 dirs
>upload /users/ftp /bin no
>upload /users/ftp /etc no
>
>-------------------------------------------------------------------
>
>Dir listing:
>
>rwxrwxr_x admin anon /users/ftp/pub
>
>
>
>Ok, so as it is set up, it works for the root (/users/ftp) directory.
>
>But.... When a local user makes a directory, the new dir gets
>a 775 (ftp.anon) permissions. ( rwxrwxr_x ftp anon /users/ftp/pub/newdir )
>
>This means the the remote user (ftp.other) can write to this
>new directory (/users/ftp/pub/newdir).
>
>What I need is for the directory to be created with a 575 chmod.
>So that ONLY members of the anon group (local ftp users) can write
>to it. ( r_xrwxr_x ftp anon /users/ftp/pub/newdir )
>
>
>There must be an easier way. Or something that I am missing altogether.
>I would have thought that the upload section of ftpaccess would also
>affect new directories, but NOOOOOOOOO.
>
>Any advice would be greatly appreciated.
>
>Thanks,
>
>Jeffrey
>
[email protected]
>
From
[email protected] Sat Jan 27 01:01:12 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tg6VQ-000DS8C; Sat, 27 Jan 96 01:01 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA13234; Sat, 27 Jan 1996 02:53:54 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id CAA13037 for <
[email protected]>; Sat, 27 Jan 1996 02:46:15 -0600
Received: from ftp.unina.it (192.132.34.17)
by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Sat, 27 Jan 1996 02:28:33 -0500 (CDT)
Received: by ftp.unina.it; id AA07362; Sat, 27 Jan 1996 09:47:10 +0100
Message-Id: <
[email protected]>
Date: Sat, 27 Jan 1996 09:47:10 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From: FTP Administrator <
[email protected]>
To:
[email protected]
Subject: passwd-check opinions
MIME-version: 1.0
Content-type: TEXT/PLAIN; charset=US-ASCII
Content-transfer-encoding: 7BIT
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hello everybody,
I would like to know how did you set the passwd-check field in the ftpaccess
file, and possibly the reason of that choice. Mostly I would like to know
if do you use the "enforce" option.
Thank you.
Massimo Gais
----
FTP Administrator <
[email protected]>
C.D.S. - University "Federico II" of Naples (Italy)
From
[email protected] Sat Jan 27 02:11:50 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tg7bn-0006g2C; Sat, 27 Jan 96 02:11 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id EAA14788; Sat, 27 Jan 1996 04:05:17 -0600
Received: from po9.andrew.cmu.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id DAA14624 for <
[email protected]>; Sat, 27 Jan 1996 03:59:04 -0600
Received: (from postman@localhost) by po9.andrew.cmu.edu (8.7.1/8.7.1) id EAA25361 for
[email protected]; Sat, 27 Jan 1996 04:59:00 -0500
Received: via switchmail; Sat, 27 Jan 1996 04:58:59 -0500 (EST)
Received: from fjord.weh.andrew.cmu.edu via qmail
ID </afs/andrew.cmu.edu/service/mailqs/q001/QF.El2TQYa00bkH00YE5Z>;
Sat, 27 Jan 1996 04:57:56 -0500 (EST)
Received: from fjord.weh.andrew.cmu.edu via qmail
ID </afs/andrew.cmu.edu/usr16/shadow/.Outgoing/QF.kl2TQRq00bkHE=6XoQ>;
Sat, 27 Jan 1996 04:57:49 -0500 (EST)
Received: from mms.4.60.Jan.26.1995.18.43.47.sun4c.411.EzMail.2.0.CUILIB.3.45.SNAP.NOT.LINKED.fjord.weh.andrew.cmu.edu.sun4c.411
via MS.5.6.fjord.weh.andrew.cmu.edu.sun4c_411;
Sat, 27 Jan 1996 04:57:49 -0500 (EST)
Message-Id: <
[email protected]>
Date: Sat, 27 Jan 1996 04:57:49 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Derrick J. Brashear" <
[email protected]>
To:
[email protected]
Subject: Re: Ques: AFS authentication????
In-Reply-To: <
[email protected]>
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Excerpts from internet.listserv.wu-ftpd: 26-Jan-96 Ques: AFS
authentication???? by Desney
[email protected]
> Think we've isolated the problem to the fact that we need to authenticate
> our passwords with AFS... For example, a passwd entry would look like:
>
> afsid:X:30417:40:user fullname:/home/user/whatever:/whatever/shell
>
> Any suggestions on how to do this?
http://andrew2.andrew.cmu.edu/dist has a pointer to a wu-ftpd modified
to allow AFS authentication.
-D
From
[email protected] Sun Jan 28 23:47:55 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tgoJc-0000DfC; Sun, 28 Jan 96 23:47 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id BAA12121; Mon, 29 Jan 1996 01:39:31 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA11936 for <
[email protected]>; Mon, 29 Jan 1996 01:31:53 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id JAA01984; Mon, 29 Jan 1996 09:32:09 -0200
Message-Id: <
[email protected]>
Date: Mon, 29 Jan 1996 09:32:09 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: passwd-check opinions
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
FTP Administrator wrote:
>
> Hello everybody,
> I would like to know how did you set the passwd-check field in the ftpaccess
> file, and possibly the reason of that choice. Mostly I would like to know
> if do you use the "enforce" option.
>
> Thank you.
> Massimo Gais
> ----
> FTP Administrator <
[email protected]>
> C.D.S. - University "Federico II" of Naples (Italy)
You should use rfc822 and enforce if you want complete email type
addresses for your anon passwords.
Regards
Nathan
--
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Mon Jan 29 06:35:18 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tgufV-0006ltC; Mon, 29 Jan 96 06:34 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA23156; Mon, 29 Jan 1996 08:25:29 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id IAA22742 for <
[email protected]>; Mon, 29 Jan 1996 08:20:03 -0600
Received: from mail-d.bcc.ac.uk by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Mon, 29 Jan 1996 08:02:13 -0500 (CDT)
Received: from mssls3.mssl.ucl.ac.uk by mail-d.bcc.ac.uk with SMTP (PP); Mon,
29 Jan 1996 14:06:08 +0000
Received: by mssls3.mssl.ucl.ac.uk (5.x/SMI-SVR4) id AA10927; Mon,
29 Jan 1996 14:03:20 GMT
Message-Id: <
[email protected]>
Date: Mon, 29 Jan 1996 14:03:20 +0000 (GMT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Colin Johnson)
To:
[email protected]
Subject: netin: Connection reset by peer
Content-transfer-encoding: 7BIT
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi
I would have used the help search page, but since it seems to be dead, can
anyone suggest why this is happening:
>netin: Connection reset by peer
>421 Service not available, remote server has closed connection
when a user is getting files from my server (2.4 on a Sparc Station 20
running SunOS 4.1.4).
The user is coming from a remote site which from exprience is very busy,
I'm hinting there that my server may have decided that the remote sence has
timedout and closed the connection. Would playing with the -T option on
ftpd or having the user ;-) use the -t option help us here? If anyone has
worked around this sort of problem, what have you used?
Thanks
Colin
------------------------------------------------------------------
Colin Johnson Direct +44 1483 204164
Systems Administrator Operator +44 1483 274111
Climate Physics Group Fax +44 1483 278312
Mullard Space Science Laboratory
University College London
http://msslsp.mssl.ucl.ac.uk
United Kingdom
[email protected]
From
[email protected] Mon Jan 29 07:13:25 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tgvFy-0002MrC; Mon, 29 Jan 96 07:12 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA25719; Mon, 29 Jan 1996 09:04:38 -0600
Received: from parrott.nortel.net by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA25491 for <
[email protected]>; Mon, 29 Jan 1996 09:01:27 -0600
Received: by parrott.nortel.net
(1.38.193.4/16.2) id AA28242; Mon, 29 Jan 1996 10:05:13 -0500
Message-Id: <
[email protected]>
Date: Mon, 29 Jan 96 10:05:13 EST
Reply-To:
[email protected]
Sender:
[email protected]
From: Jeffrey Smith <
[email protected]>
To:
[email protected]
Subject: Re: Here's one for the PRO's
In-Reply-To: <2.2.32.19960126123303.002e4988@puma>; from "Darci Chapman" at Jan 26, 96 12:33 (noon)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Would you be so kind as to mail the ftpd.c code you
hacked?
Thanks,
Jeffrey
>
>
> The below is a bug with wu-ftpd 2.4 -- I reported it to the list about
> three months ago. We hacked the source code to do the right thing, where the
> 'right thing' was defined as used the same kind of permissions for creating
> directories that are specified for creating files (ie group write or not, etc).
>
> Cheers,
> ...dlc...
>
> At 03:14 PM 1/26/96 EST, Jeffrey Smith <
[email protected]> wrote:
>
> >Ok this one is over my head. And for the guru's of wu-ftpd.
> >
> >I want local to my domain read & write.
> >
> >I want remote to my domain read only.
> >
> >------------------------------------------------------------------
> >ftpaccess:
> >
> >class local anonymous 137.118.*.*
> >class remote anonymous *
> >
> >
> >autogroup anon local
> >
> >upload /users/ftp /pub yes admin anon 0664 dirs
> >upload /users/ftp /pub/* yes admin anon 0664 dirs
> >upload /users/ftp /bin no
> >upload /users/ftp /etc no
> >
> >-------------------------------------------------------------------
> >
> >Dir listing:
> >
> >rwxrwxr_x admin anon /users/ftp/pub
> >
> >
> >
> >Ok, so as it is set up, it works for the root (/users/ftp) directory.
> >
> >But.... When a local user makes a directory, the new dir gets
> >a 775 (ftp.anon) permissions. ( rwxrwxr_x ftp anon /users/ftp/pub/newdir )
> >
> >This means the the remote user (ftp.other) can write to this
> >new directory (/users/ftp/pub/newdir).
> >
> >What I need is for the directory to be created with a 575 chmod.
> >So that ONLY members of the anon group (local ftp users) can write
> >to it. ( r_xrwxr_x ftp anon /users/ftp/pub/newdir )
> >
> >
> >There must be an easier way. Or something that I am missing altogether.
> >I would have thought that the upload section of ftpaccess would also
> >affect new directories, but NOOOOOOOOO.
> >
> >Any advice would be greatly appreciated.
> >
> >Thanks,
> >
> >Jeffrey
> >
[email protected]
> >
>
>
--
From
[email protected] Mon Jan 29 07:59:19 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tgvxx-000D8ZC; Mon, 29 Jan 96 07:58 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA29195; Mon, 29 Jan 1996 09:47:14 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA28903 for <
[email protected]>; Mon, 29 Jan 1996 09:44:21 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id QAA17891; Mon, 29 Jan 1996 16:44:39 +0100
Message-Id: <
[email protected]>
Date: Mon, 29 Jan 1996 16:44:39 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Here's one for the PRO's
In-Reply-To: <
[email protected]> from "Jeffrey Smith" at Jan 29, 96 10:05:13 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Jeffrey Smith, who wrote :
> Would you be so kind as to mail the ftpd.c code you
> hacked?
> > The below is a bug with wu-ftpd 2.4 -- I reported it to the list about
> > three months ago. We hacked the source code to do the right thing, where the
> > 'right thing' was defined as used the same kind of permissions for creating
> > directories that are specified for creating files (ie group write or not, etc).
Even better, mail it to
[email protected] so the current maintainer
of the patches can incorporate it into the next version so everybody can
have the improved version (share and enjoy principle).
[ If this hasn't been done already ]
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is futile. Clickety Click
From
[email protected] Mon Jan 29 10:24:39 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tgyCs-0000H5C; Mon, 29 Jan 96 10:21 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA12091; Mon, 29 Jan 1996 12:06:56 -0600
Received: from wunet.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA11635 for <
[email protected]>; Mon, 29 Jan 1996 12:00:20 -0600
Received: from elixir.e.kth.se by wunet.wustl.edu (PMDF V4.3-10 #14148)
id <
[email protected]>; Mon, 29 Jan 1996 11:42:30 -0500 (CDT)
Received: from gjallar.e.kth.se (gjallar.e.kth.se [130.237.48.13])
by elixir.e.kth.se (8.6.8.1/8.6.6) with ESMTP id TAA14786 for
<
[email protected]>; Mon, 29 Jan 1996 19:00:10 +0100
Received: (mikan@localhost) by gjallar.e.kth.se (8.6.12/8.6.6)
id TAA18004; Mon, 29 Jan 1996 19:00:09 +0100
Message-Id: <
[email protected]>
Date: Mon, 29 Jan 1996 19:00:08 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Mikael Andersson <
[email protected]>
To:
[email protected]
Subject: Join
Content-transfer-encoding: 7BIT
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I wan't to join this mailing list. How do I do it?
CU / Mikael
From
[email protected] Mon Jan 29 12:03:40 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0tgzmN-000D31C; Mon, 29 Jan 96 12:02 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA21184; Mon, 29 Jan 1996 13:49:57 -0600
Received: from wasp.cec.wustl.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA19920 for <
[email protected]>; Mon, 29 Jan 1996 13:35:04 -0600
Received: by wasp.cec.wustl.edu (5.x/ECL-A1.27)
id AA13903; Mon, 29 Jan 1996 13:34:55 -0600
Message-Id: <
[email protected]>
Date: Mon, 29 Jan 1996 13:34:55 -0600 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Robert Ellsworth <
[email protected]>
To: Mikael Andersson <
[email protected]>
Cc:
[email protected]
Subject: Re: Joining the wu-ftpd mailing list
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
On Mon, 29 Jan 1996, Mikael Andersson wrote:
> I want to join this mailing list. How do I do it?
Send a message to
[email protected] with no subject, and
subscribe wu-ftpd <your name>
in the body.
Andy Ellsworth | "...The wind was not the beginning. There are
[email protected] | neither beginnings nor endings to the turning of
Assistant Admin, wuarchive | the Wheel of Time. But it was _a_ beginning..."
http://cec.wustl.edu/~are1 | --The Wheel of Time saga, Robert Jordan
From
[email protected] Mon Jan 29 13:22:59 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0th12C-000CnaC; Mon, 29 Jan 96 13:22 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA28496; Mon, 29 Jan 1996 15:10:38 -0600
Received: from ollie.uwec.edu by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA27809 for <
[email protected]>; Mon, 29 Jan 1996 15:03:44 -0600
Received: from [137.28.84.80] by ollie.uwec.edu (AIX 3.2/UCB 5.64/4.03)
id AA16010; Mon, 29 Jan 1996 15:11:55 -0600
Message-Id: <v0213050bad32dda5ea32@[137.28.84.80]>
Date: Mon, 29 Jan 1996 15:08:33 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Greg A. Lato)
To:
[email protected]
Subject: [Q] Problem with datestamps and ftpwho util
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I am running wu-ftpd v2.4 on an IBM RS/6000 running AIX v3.2. I am now
experiencing the following problems (neither of these were occuring when I
first installed the ftpd but started about 4 months ago):
1. Problem with wu-ftpd's datestamps.
When the ftpd writes a error entry out to the syslogd, it includes a
date/time stamp with the error. The ftpd also date/time stamps transfers
to the xferlog, and can place the date automatically in the logon message
(using the %T specifier). My problem is that the time that is being
reported in the error log file, the xferlog, and the login message is six
hours (exactly) ahead of what the system time really is (as reported from
date run from the command line).
Does someone know what the reson for this time difference is? More
importantly, how to fix this problem?
2. Problem with ftpwho utility.
Ftpd comes with a utility (ftpwho) that tells you how many users from each
service class are logged on at the time of execution. When I run this
utility as a standard user, it reports that no one is currently logged in.
However, when I run this utility as the user root, it correctly reports how
many people are logged in.
Where does this utility get the information that it uses to tell how many
people are logged in? I figure that all I should need to do is make this
file (I assume it is a file) readable by everyone. It must have
acidentally gotten it's protection changed in the past.
3. Strage behavior from error reporting through syslogd.
I have also notice some strange behavior that has peaked my curiosity. It
seems that ftpd is writing a large (what seems like an unusual number) of
error messages to syslogd. When I log onto the ftp server (as user
anonymous or as a registered user) and do an "ls", the following message is
written to syslogd:
Jan 29 21:00:02 ollie ftpd[18944]: setsockopt (IP_TOS): Not owner
Jan 29 21:00:40 ollie ftpd[15131]: setsockopt (IP_TOS): Not owner
This message doesn't seem to be written to the log file when a user does a
file transfer or a directory change, only on an "ls".
The following is the configuration for syslogd:
# "all facilities, at the warning level and higher, go to Log file."
*.warning /var/adm/syslog
Any ideas as to why this is happening?
4. Processes not dying correctly.
While doing some testing for the last two questions, I noticed that ftpwho
(run as root) reported two users logged in (one anonymous and one service
class). When I did a ps ax, I got two processes for these two users.
However, when I took a look at the wtmp file (using last), it reported that
both of the users had logged off.
I am not sure if this is strange behavior or not (is would appear as such
to me). I am also not sure if this behavior has to do with a
misconfiguration of the ftpd or of the machine itself (not getting around
to killing the processes correctly).
Does anyone have any ideas on what is causing this and why?
--- (end of questions) ---
Thanks to everyone for their help and time in advance. Sorry about all the
questions (found the last two as I wrote up the first two).
Greg
+--------------------------------------------------------------------------+
Greg A. Lato
CWIS Administrator WWW:
http://www.uwec.edu/~latoga/
Computing and Networking Services email:
[email protected]
University of Wisconsin-Eau Claire
[email protected] (personal)
Eau Claire, WI USA 54702-4004 Phone: (715) 836-3058
-----
"Graduating May 1996, But Looking for a Job Now."
From
[email protected] Mon Jan 29 14:02:33 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0th1eX-0000JJC; Mon, 29 Jan 96 14:02 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id PAA02049; Mon, 29 Jan 1996 15:47:21 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id PAA01684 for <
[email protected]>; Mon, 29 Jan 1996 15:43:54 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id PAA02819; Mon, 29 Jan 1996 15:43:48 -0600 (CST)
Message-Id: <
[email protected]>
Date: 29 Jan 1996 21:43:48 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: [Q] Problem with datestamps and ftpwho util
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]>
[email protected] (Greg A. Lato) writes:
>I am running wu-ftpd v2.4 on an IBM RS/6000 running AIX v3.2. I am now
>experiencing the following problems (neither of these were occuring when I
>first installed the ftpd but started about 4 months ago):
>
>1. Problem with wu-ftpd's datestamps.
>
>When the ftpd writes a error entry out to the syslogd, it includes a
>date/time stamp with the error. The ftpd also date/time stamps transfers
>to the xferlog, and can place the date automatically in the logon message
>(using the %T specifier). My problem is that the time that is being
>reported in the error log file, the xferlog, and the login message is six
>hours (exactly) ahead of what the system time really is (as reported from
>date run from the command line).
>
>Does someone know what the reson for this time difference is? More
>importantly, how to fix this problem?
The most frequent cause on most systems is that the information used by
the OS to determine the timezone it is in is not duplicated in the
chroot-ed file system from the regular file system. On BSD/OS, this means
copying /etc/localtime to the same location in the chrooted file system(s)
(e.g. ~ftp/etc/localtime). This is not a bug in ftpd, per se. Perhaps in
a future release of ftpd, we can carry around such inforamtion internally
in such a fashion that the time/date stamps won't have to depend on these
external files.
>2. Problem with ftpwho utility.
>
>Ftpd comes with a utility (ftpwho) that tells you how many users from each
>service class are logged on at the time of execution. When I run this
>utility as a standard user, it reports that no one is currently logged in.
>However, when I run this utility as the user root, it correctly reports how
>many people are logged in.
>
>Where does this utility get the information that it uses to tell how many
>people are logged in? I figure that all I should need to do is make this
>file (I assume it is a file) readable by everyone. It must have
>acidentally gotten it's protection changed in the past.
The file/directory that keeps this information may be protected from being
read by normal users. On BSD/OS, this file is usually in /var/run. I don't
remember where it is on AIX, since I don't have one of those readily available
to me to work with.
>3. Strage behavior from error reporting through syslogd.
>
>I have also notice some strange behavior that has peaked my curiosity. It
>seems that ftpd is writing a large (what seems like an unusual number) of
>error messages to syslogd. When I log onto the ftp server (as user
>anonymous or as a registered user) and do an "ls", the following message is
>written to syslogd:
>
> Jan 29 21:00:02 ollie ftpd[18944]: setsockopt (IP_TOS): Not owner
> Jan 29 21:00:40 ollie ftpd[15131]: setsockopt (IP_TOS): Not owner
>
>This message doesn't seem to be written to the log file when a user does a
>file transfer or a directory change, only on an "ls".
>
>The following is the configuration for syslogd:
>
># "all facilities, at the warning level and higher, go to Log file."
>*.warning /var/adm/syslog
>
>Any ideas as to why this is happening?
These errors indicate that AIX does not allow an unpriviledged process to
set these options. The errors are benign.
>
>4. Processes not dying correctly.
>
>While doing some testing for the last two questions, I noticed that ftpwho
>(run as root) reported two users logged in (one anonymous and one service
>class). When I did a ps ax, I got two processes for these two users.
>However, when I took a look at the wtmp file (using last), it reported that
>both of the users had logged off.
>
>I am not sure if this is strange behavior or not (is would appear as such
>to me). I am also not sure if this behavior has to do with a
>misconfiguration of the ftpd or of the machine itself (not getting around
>to killing the processes correctly).
>
>Does anyone have any ideas on what is causing this and why?
This has been reported as a bug in some versions of wu-ftpd. I am told
that it may still be present in the current beta, but I am still trying to
gather adequate information to reproduce it and kill it.
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Mon Jan 29 14:26:40 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0th21t-0006lZC; Mon, 29 Jan 96 14:26 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA04730; Mon, 29 Jan 1996 16:17:08 -0600
Received: from tft.nacs.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id QAA04235 for <
[email protected]>; Mon, 29 Jan 1996 16:11:54 -0600
Received: (from cerveza@localhost) by tft.nacs.net (8.7.1/8.7.1) id RAA31475; Mon, 29 Jan 1996 17:15:22 GMT
Message-Id: <
[email protected]>
Date: Mon, 29 Jan 1996 17:15:22 +0000 ( )
Reply-To:
[email protected]
Sender:
[email protected]
From: Chris Yannella <
[email protected]>
To:
[email protected]
Subject: Faq
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I'm looking for a faq file or docs on the setup and configuration for
wu-ftpd. I'm starting from ground zero. If someone could tell me a site
that these materials live on, it would be appreciated.
Thanks!
Chris Yannella
[email protected]
From
[email protected] Mon Jan 29 19:26:26 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0th6hk-000CotC; Mon, 29 Jan 96 19:26 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id VAA27415; Mon, 29 Jan 1996 21:15:29 -0600
Received: from Loekie.City.UniSA.edu.au by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id TAA21368 for <
[email protected]>; Mon, 29 Jan 1996 19:58:52 -0600
Received: (from deraad@localhost) by Loekie.City.UniSA.edu.au (8.6.12/8.6.12) id LAA03962 for
[email protected]; Tue, 30 Jan 1996 11:53:39 +1030
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 11:53:38 +1030 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Mark W. de Raad)
To:
[email protected]
Subject: Urgent: Multihomed patches for wuftpd....
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi all! greetings from Oz.
Can someone PLEASE send me a reference as to where I can get
the multihomed patches for Wuftpd? I had some information about this
a while ago, but I cannot find it now :( Searches are also proving
fruitless.
Any help is greatly appreciated..
Thanks,
Mark
--
Mark W. de Raad o
_ /-_
University of South Australia ......(_)>(_)
Australia
Telephone: (+6115) 717 472
In Australia: 015 717 472
For Quick response, please mail:
[email protected]
_\\|//_
( O-O )
---------------------------o00--(_)--00o------------------------------
"What, Me Worry?" - Alfred E. Neuman
From
[email protected] Mon Jan 29 22:25:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0th9Uv-0000DfC; Mon, 29 Jan 96 22:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id AAA05887; Tue, 30 Jan 1996 00:15:03 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id AAA05527 for <
[email protected]>; Tue, 30 Jan 1996 00:05:13 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id IAA00304; Tue, 30 Jan 1996 08:05:31 -0200
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 08:05:31 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Subject: Re: Faq
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Chris Yannella wrote:
>
> I'm looking for a faq file or docs on the setup and configuration for
> wu-ftpd. I'm starting from ground zero. If someone could tell me a site
> that these materials live on, it would be appreciated.
>
> Thanks!
>
> Chris Yannella
>
[email protected]
just for future reference, you may find all faqs at :
http://www.lib.ox.ac.uk/internet/news/faq/by_group.index.html
Regards
Nathan
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Tue Jan 30 00:01:15 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thAzx-0000D7C; Tue, 30 Jan 96 00:01 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id BAA09718; Tue, 30 Jan 1996 01:51:21 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id BAA09548 for <
[email protected]>; Tue, 30 Jan 1996 01:45:42 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id IAA22816; Tue, 30 Jan 1996 08:46:08 +0100
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 08:46:08 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: Faq
In-Reply-To: <
[email protected]> from "Nathan Sowatskey x4758" at Jan 30, 96 08:05:31 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Nathan Sowatskey x4758, who wrote :
> > I'm looking for a faq file or docs on the setup and configuration for
> > wu-ftpd. I'm starting from ground zero. If someone could tell me a site
> > that these materials live on, it would be appreciated.
> just for future reference, you may find all faqs at :
>
>
http://www.lib.ox.ac.uk/internet/news/faq/by_group.index.html
Well, the 'all faqs' seems to be relative. The faq for wu-ftpd isn't mentioned
there.
(I have this thing for misinformation..)
The wu-ftpd faq, containing pointers to other documents including setup
information, is still at
http://www.hvu.nl/~koos/wu-ftpd-faq.html
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is futile. Clickety Click
From
[email protected] Tue Jan 30 01:20:11 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thCD1-000Cp7C; Tue, 30 Jan 96 01:18 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id DAA11643; Tue, 30 Jan 1996 03:10:43 -0600
Received: from bwana. by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id DAA11526 for <
[email protected]>; Tue, 30 Jan 1996 03:07:39 -0600
Received: from bwana by bwana. (SMI-8.6/SMI-SVR4)
id LAA00371; Tue, 30 Jan 1996 11:07:43 -0200
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 11:07:43 -0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Nathan Sowatskey x4758 <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: Faq
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 2.0b5 (X11; I; SunOS 5.4 sun4m)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Koos van den Hout _U nix and we all_ wrote:
>
> Quoting Nathan Sowatskey x4758, who wrote :
>
> > > I'm looking for a faq file or docs on the setup and configuration for
> > > wu-ftpd. I'm starting from ground zero. If someone could tell me a site
> > > that these materials live on, it would be appreciated.
>
> > just for future reference, you may find all faqs at :
> >
> >
http://www.lib.ox.ac.uk/internet/news/faq/by_group.index.html
>
> Well, the 'all faqs' seems to be relative. The faq for wu-ftpd isn't mentioned
> there.
>
> (I have this thing for misinformation..)
>
> The wu-ftpd faq, containing pointers to other documents including setup
> information, is still at
>
>
http://www.hvu.nl/~koos/wu-ftpd-faq.html
>
> Grtx. KH
>
Yes, fair enough, you wil see that I have cc'ed this message to the
responsible person at that sight in the hope that they will rectift the
situation (please and thank you :-)). Sorry to mislead people, I have
managed to find every other faq I looked for there and I didn't have
Koos's faq's URL to pointer.
Regards
Nathan
--
---------------------------------------------------------------------
Nathan Sowatskey - Software Systems -
[email protected]
(27)(21)-414-4758
ATE Building, Jetty Street, Roggebaai, Cape Town 8001, RSA
SAIX - The South African Internet Exchange from Telkom
http://www.saix.net
From
[email protected] Tue Jan 30 06:12:16 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thGn7-0004MtC; Tue, 30 Jan 96 06:12 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA20593; Tue, 30 Jan 1996 08:04:24 -0600
Received: from opus.orgaplus.de by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA20385 for <
[email protected]>; Tue, 30 Jan 1996 08:00:18 -0600
Received: from opus.orgaplus.de by opus.orgaplus.de with smtp
(Smail3.1.28.1 #6) id m0thHXg-0002FgC; Tue, 30 Jan 96 16:00 MET
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 16:00:19 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From: Frank Neumann <
[email protected]>
To:
[email protected]
Subject: Errors with wu-ftpd under LINUX
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hello,
some times before I asked the following question, I didn't get an answer
and I didn't care for as I got a compiled version of wu-ftpd 2.4 for Linux.
Now it seems to me that this isn't the right solution to solve the problem.
I want to compile my own ftpd. I got all the files for the
wu-ftpd-2.4.2-beta-8.tar.Z and I did all the things mentioned in the
readme file. After that I started 'build lnx' and I got the following
message:
Making ftpd.
cc -O2 -fomit-frame-pointer -I.. -I../support -I/usr/include/bsd
-L../support -static -s -o ftpd ftpd.o ftpcmd.o glob.o logwtmp.o popen.o
vers.o access.o extensions.o realpath.o acl.o private.o authenticate.o
conversions.o hostacc.o -lsupport -lbsd
ftpd.o: Undefined symbol _vsnprintf referenced from text segment
make: *** [ftpd] Error 1
Can anyone help me to solve the problem?
I am using a kernel version 1.2.8 or 1.2.13 and it doesn't work with
both. My gcc is version 2.5.8
Thanks
Frank
email:
[email protected]
www.orgaplus.de
From
[email protected] Tue Jan 30 06:29:04 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thH3K-0004J5C; Tue, 30 Jan 96 06:28 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA21786; Tue, 30 Jan 1996 08:20:58 -0600
Received: from parrott.nortel.net by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id IAA21550 for <
[email protected]>; Tue, 30 Jan 1996 08:18:00 -0600
Received: by parrott.nortel.net
(1.38.193.4/16.2) id AA28916; Tue, 30 Jan 1996 09:21:46 -0500
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 96 9:21:45 EST
Reply-To:
[email protected]
Sender:
[email protected]
From: Jeffrey Smith <
[email protected]>
To:
[email protected]
Subject: Mkdir hack fix
In-Reply-To: <
[email protected]>; from "Frank Neumann" at Jan 30, 96 4:00 pm
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hey all.
I was attempting to use my ftp so that local users are read/write
and remote (outside my domain) are read only.
There is a 'bug' in the way wu-ftp makes directories. One would
think that it would use the rules as defined in the 'upload' section
of the ftpaccess file. However, it does not.
So I hard coded the chown into the ftpd.c, and recompiled.
2263 /*
2264 * check the filename, is it legal?
2265 */
2266 if ( (fn_check(name)) <= 0 )
2267 return;
2268
2269 if (mkdir(name, 0777) < 0) {
2270 perror_reply(550, name);
2271 return;
2272 }
2273
2274 chown(name, 501, 99);
^^^^^^^^^^^^^^^^^^^^^
2275 reply(257, "HACKD MKD command successful.");
--
Of course you would want to use the user id and group id that corresponds
to the users you want.
Well, this is a hack and not a fix, but I hope it helps someone.
--Jeffrey
From
[email protected] Tue Jan 30 07:11:46 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thHie-000CngC; Tue, 30 Jan 96 07:11 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id JAA25017; Tue, 30 Jan 1996 09:03:33 -0600
Received: from bnl.gov by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id JAA24860 for <
[email protected]>; Tue, 30 Jan 1996 09:01:47 -0600
Received: from necs01.dne.bnl.gov (necs01.dne.bnl.gov [130.199.112.137]) by bnl.gov (8.7.3/8.7.1) with SMTP id KAA24962 for <
[email protected]>; Tue, 30 Jan 1996 10:01:45 -0500 (EST)
Received: by necs01.dne.bnl.gov (AIX 3.2/UCB 5.64/4.03)
id AA69089; Tue, 30 Jan 1996 10:01:45 -0500
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 10:01:45 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Karina Diaco)
To:
[email protected]
Subject: wu ftp and tcp Wrapper
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I am installing wuftp 2.4 version, and it works fine.
I had TCPwrapper running like Anonymous Ftp before.
I have my /etc/syslog.conf like this:
local0.info /usr/spool/mqueue/tcpdlog
local0.warning /dev/console
local0.info @secadm1.ccd.bnl.gov
And I have my /etc/inetd.conf
#ftp stream tcp nowait root /etc/tcpd ftpd
ftp stream tcp nowait root /usr/local/etc/ftpd
-a -d -L -i -o -l
telnet stream tcp nowait root /etc/tcpd telnetd
shell stream tcp nowait root /etc/tcpd rshd
Before the installation I got a lot of information
in my /usr/spool/mqueue/tcpdlog, like this:
Jan 12 09:09:34 necs02 telnetd[19663]: connect from admc01.dne.bnl.gov
Jan 12 09:41:45 necs02 ftpd[21540]: connect from necs01.dne.bnl.gov
Jan 12 10:17:07 necs02 ftpd[21595]: connect from mail.yankee.com
Jan 12 16:48:38 necs02 rshd[20051]: connect from necs01.dne.bnl.gov
But now I have only this:
Jan 30 08:54:37 necs02 telnetd[25874]: connect from necs01.dne.bnl.gov
Jan 30 08:54:43 necs02 rshd[27411]: connect from necs01.dne.bnl.gov
Jan 30 09:08:59 necs02 telnetd[25909]: connect from necs01.dne.bnl.gov
Jan 30 09:15:08 necs02 telnetd[19791]: connect from admc01.dne.bnl.gov
Jan 30 09:22:50 necs02 rshd[26214]: connect from necs01.dne.bnl.gov
There is no ftpd right here. Any ideas??
How ftpd can write in this file or another file??
Thanks Karina Diaco
[email protected]
From
[email protected] Tue Jan 30 08:24:09 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thIqj-000D53C; Tue, 30 Jan 96 08:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA01455; Tue, 30 Jan 1996 10:12:03 -0600
Received: from opus.orgaplus.de by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA00987 for <
[email protected]>; Tue, 30 Jan 1996 10:05:56 -0600
Received: from opus.orgaplus.de by opus.orgaplus.de with smtp
(Smail3.1.28.1 #6) id m0thJV6-0002FgC; Tue, 30 Jan 96 18:05 MET
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 18:05:44 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From: Frank Neumann <
[email protected]>
To:
[email protected]
Subject: Beta 9, error with vsnprintf under LINUX
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hello,
in the file ' FIXES-2.4.2-BETA-9' is mentioned that the error with
vsnprintf is fixed.
That may be right, they changed some Makefiles but they forgot to change
Makefile.lnx
How to change the file could be copied from one other Makefile.
This should be a small hint to which Pat Wilson
(
[email protected]) lead me this day.
Thanks
Frank Neumann
orgaplus Software GmbH * Stedingerstr. 11 * 74080 Heilbronn * Germany
Tel:+49-7131-38830 * Fax:+49-7131-388329 * E-Mail:
[email protected]
Homepage: www.orgaplus.de
From
[email protected] Tue Jan 30 08:35:59 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thJ24-000D6gC; Tue, 30 Jan 96 08:35 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id KAA02465; Tue, 30 Jan 1996 10:24:33 -0600
Received: from pizza.hvu.nl by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id KAA02339 for <
[email protected]>; Tue, 30 Jan 1996 10:22:56 -0600
Received: by pizza.hvu.nl (SMI-8.6/KH19950725)
id RAA05113; Tue, 30 Jan 1996 17:23:19 +0100
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 17:23:18 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Re: wu ftp and tcp Wrapper
In-Reply-To: <
[email protected]> from "Karina Diaco" at Jan 30, 96 10:01:45 am
Content-Type: text
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Quoting Karina Diaco, who wrote :
> I am installing wuftp 2.4 version, and it works fine.
> I had TCPwrapper running like Anonymous Ftp before.
> I have my /etc/syslog.conf like this:
>
> local0.info /usr/spool/mqueue/tcpdlog
> local0.warning /dev/console
> local0.info @secadm1.ccd.bnl.gov
>
>
> And I have my /etc/inetd.conf
>
> #ftp stream tcp nowait root /etc/tcpd ftpd
> ftp stream tcp nowait root /usr/local/etc/ftpd
> -a -d -L -i -o -l
This is the difference. /usr/local/etc/ftpd is started by itself, instead
of the route via /etc/tcpd. Change the last part to :
/etc/tcpd /usr/local/etc/ftpd -a -d -L -i -o -l
/etc/tcpd is the TCP-wrapper, and therefore needs to be called in order to
operate correctly.
Grtx. KH
--
** FAQ on current wu-ftpd at
http://www.hvu.nl/~koos/wu-ftpd-faq.html **
Koos van den Hout, Internetter, Unix freak and BBS SysOp at large
[email protected] (Home) BBS Koos z'n Doos (+31-30-6036637 28k8)
[email protected] (Work) <-- finger -l for PGPkey (+31-30-6056619 14k4)
http://www.hvu.nl/~koos (WWW) Looking for a license plate with "RFC 822"
We are root. You will be assimilated. Resistance is futile. Clickety Click
From
[email protected] Tue Jan 30 10:18:25 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thKdH-000CpGC; Tue, 30 Jan 96 10:18 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA11272; Tue, 30 Jan 1996 12:09:12 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA10702 for <
[email protected]>; Tue, 30 Jan 1996 12:02:35 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id MAA27609; Tue, 30 Jan 1996 12:02:24 -0600 (CST)
Message-Id: <
[email protected]>
Date: 30 Jan 1996 18:02:23 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: Errors with wu-ftpd under LINUX
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]> Frank Neumann <
[email protected]> writes:
> Can anyone help me to solve the problem?
> I am using a kernel version 1.2.8 or 1.2.13 and it doesn't work with
> both. My gcc is version 2.5.8
Hmmm. Try beta-9. Your gcc may be to old. I compiled this on gcc 2.7.0.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-9.tar.Z
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Tue Jan 30 10:25:38 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thKkF-000FFpC; Tue, 30 Jan 96 10:25 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA11832; Tue, 30 Jan 1996 12:15:34 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA10780 for <
[email protected]>; Tue, 30 Jan 1996 12:03:16 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id MAA27614; Tue, 30 Jan 1996 12:03:15 -0600 (CST)
Message-Id: <
[email protected]>
Date: 30 Jan 1996 18:03:15 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: Mkdir hack fix
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]> Jeffrey Smith <
[email protected]> writes:
>There is a 'bug' in the way wu-ftp makes directories. One would
>think that it would use the rules as defined in the 'upload' section
>of the ftpaccess file. However, it does not.
Which version of wu-ftpd is this? BETA-9 should do this just fine.
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Tue Jan 30 10:30:21 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thKoa-0002a4C; Tue, 30 Jan 96 10:30 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA12116; Tue, 30 Jan 1996 12:19:07 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA10858 for <
[email protected]>; Tue, 30 Jan 1996 12:04:28 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id MAA27619; Tue, 30 Jan 1996 12:04:28 -0600 (CST)
Message-Id: <
[email protected]>
Date: 30 Jan 1996 18:04:27 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: Beta 9, error with vsnprintf under LINUX
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]> Frank Neumann <
[email protected]> writes:
>Hello,
>
>in the file ' FIXES-2.4.2-BETA-9' is mentioned that the error with
>vsnprintf is fixed.
>That may be right, they changed some Makefiles but they forgot to change
>Makefile.lnx
>How to change the file could be copied from one other Makefile.
You don't say what version of linux you have. I have compiled the beta-9
version on Linux 1.2.13 with gcc 2.7.0 just fine as it sits.
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Tue Jan 30 11:51:19 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thM54-000FCHC; Tue, 30 Jan 96 11:51 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA19138; Tue, 30 Jan 1996 13:40:06 -0600
Received: from puma.jf.intel.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA18826 for <
[email protected]>; Tue, 30 Jan 1996 13:36:31 -0600
Received: from puma.jf.intel.com by puma.jf.intel.com (NTMail 3.00.06) id aa001139 Tue, 30 Jan 96 11:36:13 -0800 (PST)
Message-Id: <2.2.32.19960130113612.0030dda4@puma>
Date: Tue, 30 Jan 1996 11:36:12 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From: Darci Chapman <
[email protected]>
To:
[email protected]
Subject: Re: Mkdir hack fix
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender: dchapmax@puma
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Info: Evaluation version at puma.jf.intel.com
X-Info: NTMail v3.00.06 installed 1/6/96
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I wrote:
>>There is a 'bug' in the way wu-ftp makes directories. One would
>>think that it would use the rules as defined in the 'upload' section
>>of the ftpaccess file. However, it does not.
At 06:03 PM 1/30/96 GMT
[email protected] (Stan Barber) asked:
>
>Which version of wu-ftpd is this? BETA-9 should do this just fine.
I reply:
Version 2.4 (non-beta)
Cheers,
..dlc...
From
[email protected] Tue Jan 30 20:04:31 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thTmV-000CqOC; Tue, 30 Jan 96 20:04 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id VAA24729; Tue, 30 Jan 1996 21:59:57 -0600
Received: from hp.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id VAA24468 for <
[email protected]>; Tue, 30 Jan 1996 21:53:59 -0600
Received: from hpias.cup.hp.com (hpindfrn.cup.hp.com) by hp.com with SMTP
(1.37.109.16/15.5+ECS 3.3) id AA279440436; Tue, 30 Jan 1996 19:53:56 -0800
Received: by hpias.cup.hp.com
(1.38.193.4/15.5+IOS 3.20+cup+OMrelay) id AA07182; Tue, 30 Jan 1996 19:53:55 -0800
Message-Id: <
[email protected]>
Date: Tue, 30 Jan 1996 19:53:53 -0800
Reply-To:
[email protected]
Sender:
[email protected]
From: "Michael Anthony Peredo" <
[email protected]>
To:
[email protected]
Subject: ISO wu-ftpd with GSSAPI+Kerberos5 support
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Z-Mail (3.2.1 10oct95)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Does a version of wu-ftpd 2.4.X (including beta releases) exist
somewhere that's been modified to support GSSAPI and, preferably,
Kerberos 5, or is anyone working on this now? I'm doing explora-
tory work dealing with internet futures, specifically ftp, and
I'm curious about any extant versions of wu-ftpd with support for
GSSAPI and/or Kerberos 5 built in. Why reinvent the wheel?
--
______________________________________________________________________
Michael Anthony Artero Peredo Senior Software Engineer
Hewlett-Packard Company - ,__o Oxford & Assoc Contractor
Network Computing Division - _-\_<, Email:
[email protected]
19420 Homestead Rd, MS 43LN - (*)/~(*) Vmail: (408) 447-2591
Cupertino, CA 95014-9807 CA-PA-NJ-NY-VT Fax #: (408) 447-3660
WWW Home Page (behind HP firewall)
http://hpias.cup.hp.com:443/~peredo
From
[email protected] Tue Jan 30 21:18:36 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thUvV-000D9lC; Tue, 30 Jan 96 21:17 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id XAA27733; Tue, 30 Jan 1996 23:13:22 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id XAA27592 for <
[email protected]>; Tue, 30 Jan 1996 23:11:16 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id XAA13735; Tue, 30 Jan 1996 23:11:11 -0600 (CST)
Message-Id: <
[email protected]>
Date: 31 Jan 1996 05:11:11 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: ISO wu-ftpd with GSSAPI+Kerberos5 support
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]> "Michael Anthony Peredo" <
[email protected]> writes:
>Does a version of wu-ftpd 2.4.X (including beta releases) exist
>somewhere that's been modified to support GSSAPI and, preferably,
>Kerberos 5, or is anyone working on this now? I'm doing explora-
>tory work dealing with internet futures, specifically ftp, and
>I'm curious about any extant versions of wu-ftpd with support for
>GSSAPI and/or Kerberos 5 built in. Why reinvent the wheel?
It is not my intent to add any more features to 2.4 before it is released.
It is my intent to develop a 2.5 release that will have additional
feature beyond those in the 2.4 release.
That means that GSSAPI and Kerberos 5 will be considered for 2.5, but not
for 2.4.
I am hopeful that 2.4 will reach final release before Spring, but it should
certainly reach release by summer of this year.
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Wed Jan 31 00:47:30 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thYCJ-000CpGC; Wed, 31 Jan 96 00:47 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id CAA06093; Wed, 31 Jan 1996 02:40:58 -0600
Received: from asterix.tele.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id CAA05862 for <
[email protected]>; Wed, 31 Jan 1996 02:30:31 -0600
Received: from peter.tele.net (45.ws.tele.net [194.183.128.45]) by asterix.tele.net (8.7.3/8.7.3) with SMTP id JAA04568 for <
[email protected]>; Wed, 31 Jan 1996 09:30:18 +0100 (MET)
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 09:30:15 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Mazinger Peter <
[email protected]>
To:
[email protected]
Subject: Netscape Mac / wu-ftpd-2.4 problem
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-NCC-RegID: at.teleport
X-Sender:
[email protected]
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hello!
I'm new on this list. Maybe it's not the proper place to ask(if so, excuse me)
Problem description:
Platform: SUN Sparcstation 5 / Solaris 2.4/2.5
build sol CC=gcc / OK
build install / OK
edit inetd.conf / kill -1 / OK
clients: PC/Mac/Unix / OK
If I use a www browser for PC/win3.1x/win95 with URL:
ftp://ftp.tele.net /OK
the same with Mac/Netscape 1.1N/1.12N/2.0b5 ends in no list of files/dirs,
the login message is working although.
I think, that the client is sending "ls -l" and waiting for short listing,
or "ls" and waiting long one.
Any idea?
Best regards,
Mazinger Peter-Sandor email:
[email protected]
backup:
[email protected]
Tel: +43 5574 53200
http://www.tele.net
Fax: +43 5574 53200 730
http://www.VOL.at
http://www.LOL.li
http://www.WOL.at
http://www.Vienna.at soon
ftp://ftp.tele.net
----------------------------------------------------------------
From
[email protected] Wed Jan 31 04:28:19 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thbe2-0002dxC; Wed, 31 Jan 96 04:28 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id GAA11933; Wed, 31 Jan 1996 06:23:43 -0600
Received: from sun4nl.NL.net by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id GAA11774 for <
[email protected]>; Wed, 31 Jan 1996 06:20:10 -0600
Received: from tpsnl by sun4nl.NL.net via EUnet
id AA05624 (5.65b/CWI-3.3); Wed, 31 Jan 1996 13:20:08 +0100
Received: from saga.tps.nl by tpsnl.tps.nl (4.1/SMI-4.1)
id AA01590; Wed, 31 Jan 96 13:16:56 GMT
Received: by saga.tps.nl (5.x/SMI-SVR4)
id AA18599; Wed, 31 Jan 1996 13:23:03 GMT
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 13:23:03 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Rene Klever)
To:
[email protected]
Subject: Compiling wu-ftpd under Solaris 2.4
Content-Type: text
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
I have problems compiling the wu-ftpd under solaris 2.4 using a gcc compiler.
Has anyone did this before and succeeded ?
If there are special tips or hints, let me know.
Thanks,
Rene
-----------------------------------------------------------------------
| | | |
| Rene Klever | Triple P Services B.V.| e-mail:
[email protected] |
| | | |
| | Ir.D.S. Tuynmanweg 10 | |
| Consultant | Postbus 245 | |
| | 4130 EE Vianen | Tel: +31(0)347 366555 |
| Professional Services | The Netherlands | Fax: +31(0)347 366481 |
| | | |
-----------------------------------------------------------------------
| t r i p l e . P |
-----------------------------------------------------------------------
From
[email protected] Wed Jan 31 05:26:40 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thcYM-000FCnC; Wed, 31 Jan 96 05:26 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA14443; Wed, 31 Jan 1996 07:21:54 -0600
Received: from asterix.tele.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id HAA14323 for <
[email protected]>; Wed, 31 Jan 1996 07:18:23 -0600
Received: from peter.tele.net (45.ws.tele.net [194.183.128.45]) by asterix.tele.net (8.7.3/8.7.3) with SMTP id OAA04743 for <
[email protected]>; Wed, 31 Jan 1996 14:18:11 +0100 (MET)
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 14:18:08 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Mazinger Peter <
[email protected]>
To:
[email protected]
Subject: Re: Compiling wu-ftpd under Solaris 2.4
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-NCC-RegID: at.teleport
X-Sender:
[email protected]
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
At 13:23 31.01.96 GMT, you wrote:
>I have problems compiling the wu-ftpd under solaris 2.4 using a gcc compiler.
>Has anyone did this before and succeeded ?
>If there are special tips or hints, let me know.
I have it done (see my problem with netscape).
Solaris 2.4/2.5 gcc2.7.2
1. adapt pathnames
2. build sol CC=gcc
3. ./bin/ckconfig (if you already put your config.files into the right place)
4. install
What is your problem?
Best regards,
Mazinger Peter-Sandor email:
[email protected]
backup:
[email protected]
Tel: +43 5574 53200
http://www.tele.net
Fax: +43 5574 53200 730
http://www.VOL.at
http://www.LOL.li
http://www.WOL.at
http://www.Vienna.at soon
ftp://ftp.tele.net
----------------------------------------------------------------
From
[email protected] Wed Jan 31 05:52:50 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thcxg-0000DLC; Wed, 31 Jan 96 05:52 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA15440; Wed, 31 Jan 1996 07:47:56 -0600
Received: from mail.umu.se by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id HAA15318 for <
[email protected]>; Wed, 31 Jan 1996 07:45:30 -0600
Received: from glenda.umdc.umu.se by mail.umu.se with SMTP id AA24579
(5.67a-Emil1.0/IDA-1.5 for
[email protected]); Wed, 31 Jan 1996 14:45:09 +0100
Received: (from mmn@localhost) by glenda.umdc.umu.se (8.6.10/8.6.10) id OAA05632; Wed, 31 Jan 1996 14:45:05 +0100
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 14:45:01 +0100 (MET)
Reply-To:
[email protected]
Sender:
[email protected]
From: Maria Gronberg <
[email protected]>
To: Wu-ftpd Lista <
[email protected]>
Cc: SkeyUsers Lista <
[email protected]>
Subject: S/Key and wu-ftpd
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Have found a site where S/Key support (v 1.1) is already built in with
wu-ftpd-2.1 (at
ftp://ftp.et.byu.edu/skey/)
Is there any way I can find the same sort of release for the latest
versions of S/Key (2.2?) and wu-ftpd (2.4?) ?
Grateful for any hints... The solutions suggested on the manual pages
doesn't seem to work on my Ultrix machine....
//Maria
Maria Gronberg
UMDAC, Umea University, SWEDEN
[email protected]
http://www.umdc.umu.se/~mmn
From
[email protected] Wed Jan 31 11:07:40 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thhsG-000CnOC; Wed, 31 Jan 96 11:07 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA09430; Wed, 31 Jan 1996 13:01:27 -0600
Received: from universal-woman.academ.com by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id MAA08895 for <
[email protected]>; Wed, 31 Jan 1996 12:53:00 -0600
Received: (from news@localhost) by universal-woman.academ.com (8.7.1/8.7.1) id MAA11441; Wed, 31 Jan 1996 12:52:53 -0600 (CST)
Message-Id: <
[email protected]>
Date: 31 Jan 1996 18:52:53 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Re: S/Key and wu-ftpd
References: <
[email protected]>
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]> Maria Gronberg <
[email protected]> writes:
>Is there any way I can find the same sort of release for the latest
>versions of S/Key (2.2?) and wu-ftpd (2.4?) ?
The academ-beta-9 release has s/key in it. That means that 2.4.2 when it is
released with have s/key in it.
--
Stan | Academ Consulting Services |internet:
[email protected]
Olan | For more info on academ, see this |uucp: {mcsun|amdahl}!academ!sob
Barber | URL-
http://www.academ.com/academ |Opinions expressed are only mine.
From
[email protected] Wed Jan 31 11:25:10 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thi9K-000FJeC; Wed, 31 Jan 96 11:24 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA10937; Wed, 31 Jan 1996 13:20:27 -0600
Received: from mv3100.bsr.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id MAA09116 for <
[email protected]>; Wed, 31 Jan 1996 12:56:35 -0600
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 13:56:03 -0500 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Jonathan F. Carpenter" <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: [Q] Problem with datestamps and ftpwho util
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
In article <
[email protected]>
[email protected] (Stan Barber) writes:
In article <
[email protected]>
[email protected] (Greg A. Lato) writes:
>>3. Strage behavior from error reporting through syslogd.
>>
>>I have also notice some strange behavior that has peaked my curiosity. It
>>seems that ftpd is writing a large (what seems like an unusual number) of
>>error messages to syslogd. When I log onto the ftp server (as user
>>anonymous or as a registered user) and do an "ls", the following message is
>>written to syslogd:
>>
>> Jan 29 21:00:02 ollie ftpd[18944]: setsockopt (IP_TOS): Not owner
>> Jan 29 21:00:40 ollie ftpd[15131]: setsockopt (IP_TOS): Not owner
>>
>>This message doesn't seem to be written to the log file when a user does a
>>file transfer or a directory change, only on an "ls".
>>
>>The following is the configuration for syslogd:
>>
>># "all facilities, at the warning level and higher, go to Log file."
>>*.warning /var/adm/syslog
>>
>>Any ideas as to why this is happening?
>
>These errors indicate that AIX does not allow an unpriviledged process to
>set these options. The errors are benign.
>
I'm having the same problem on our RS-6000, running wu-ftpd 2.4.
Is there anyway I can prevent these errors from occurring? Not only
does the message show up in the syslog, but it also will appear on any
terminal logged on as root, which can be a little annoying.
Where the error is being generated is here (in ftpd.c):
#ifdef IPTOS_THROUGHPUT
on = IPTOS_THROUGHPUT;
if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *) &on, sizeof(int)) < 0)
syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
#endif
Can I just comment it out (since the function seems to be not working
anyway, but does not seem to cause any problems) to prevent the error?
Or, how can I make the process privileged?
Are other people running RS/6000s having this same problem?
Thanks,
Jon Carpenter
[email protected]
From
[email protected] Wed Jan 31 11:44:32 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thiRq-0005CZC; Wed, 31 Jan 96 11:44 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id NAA12672; Wed, 31 Jan 1996 13:39:28 -0600
Received: from mail1.eznet.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id NAA12270 for <
[email protected]>; Wed, 31 Jan 1996 13:34:38 -0600
Received: from [198.70.51.86] (grover.eznet.net [198.70.51.86]) by mail1.eznet.net (8.6.12/8.6.9) with SMTP id OAA20636; Wed, 31 Jan 1996 14:46:08 -0500
Message-Id: <v01530500ad3565557992@[198.70.51.86]>
Date: Wed, 31 Jan 1996 14:34:51 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Dan Foster)
To: Yanming PENG <
[email protected]>
Cc:
[email protected]
Subject: Re: Problem with ftpd needing inetd restart and other things
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>> I was running 2.4.2 beta 8 for a while...now beta 9. The last few
>> days before I upgraded to beta 9, I noticed that the ftp server doesn't
>> seem to be responding to ftp connects "ftp: connection refused" (or something
>> along those lines), but kill -HUP'ing inetd clears up the problem. The same
>> is also true if I ftpshut the server, then delete the /etc/shutmsg file...
>> I have to kill -HUP inetd to get ftp restarted. The problem is still around
>> even though I have upgraded to beta 9.
>> Is this normal, a known feature, or a bug?
As I mentioned in a later mail and now is confirmed, my co-worker and I finally
saw a few messages in the syslog about inetd disabling ftp because it thought
it was respawning too fast. So this does sound related to some sort of limit
on concurrent connection attempts to the FTP service and inetd subsequently
panicking. Anybody know what this number would be or any tricks to circumvent
this? I find this rather disturbing because we are a small site and get this
relatively often enough (temp fix: a cron job that runs every minute and kill
-HUPs inetd) on busy days, and can't imagine how larger sites handle this kind
of problem.
Any general tuning machines for large FTP access tips, out of curiosity?
-Dan
System Manager
E-Znet, Inc.
Internet:
[email protected]
From
[email protected] Wed Jan 31 12:29:07 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thj8Q-0004NBC; Wed, 31 Jan 96 12:28 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA16835; Wed, 31 Jan 1996 14:23:36 -0600
Received: from isil.lloke.dna.fi by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA16487 for <
[email protected]>; Wed, 31 Jan 1996 14:19:34 -0600
Received: (from rjs@localhost) by isil.lloke.dna.fi (8.6.12/8.6.12) id WAA30869 for
[email protected]; Wed, 31 Jan 1996 22:19:28 +0200
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 22:19:28 +0200 (EET)
Reply-To:
[email protected]
Sender:
[email protected]
From: Riku Saikkonen <
[email protected]>
To:
[email protected]
Subject: Re: Problem with ftpd needing inetd restart and other things
In-Reply-To: <v01530500ad3565557992@[198.70.51.86]> from "Dan Foster" at Jan 31, 96 02:34:51 pm
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Mailer: ELM [version 2.4 PL24]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>saw a few messages in the syslog about inetd disabling ftp because it thought
>it was respawning too fast. So this does sound related to some sort of limit
An excerpt from the man page of the inetd in my (old) Linux distribution:
"
to spawn new servers. The optional ``max'' suffix (separated from
``wait'' or ``nowait'' by a dot) specifies the maximum number of server
instances that may be spawned from iinneettdd within an interval of 60 sec-
onds. When omitted, ``max'' defaults to 40.
"
It's probably similar in other inetds... So, change `nowait' to `nowait.200'
or something in your inetd.conf's ftp entry.
--
-=- Rjs -=-
[email protected] -
http://isil.lloke.dna.fi/rjs/
From
[email protected] Wed Jan 31 12:46:18 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thjPk-0002aGC; Wed, 31 Jan 96 12:46 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id OAA18533; Wed, 31 Jan 1996 14:41:22 -0600
Received: from mail1.eznet.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id OAA18178 for <
[email protected]>; Wed, 31 Jan 1996 14:37:55 -0600
Received: from [198.70.51.86] (grover.eznet.net [198.70.51.86]) by mail1.eznet.net (8.6.12/8.6.9) with SMTP id PAA22086; Wed, 31 Jan 1996 15:50:33 -0500
Message-Id: <v01530501ad3575964ae3@[198.70.51.86]>
Date: Wed, 31 Jan 1996 15:39:08 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Dan Foster)
To:
[email protected]
Cc:
[email protected]
Subject: Re: Problem with ftpd needing inetd restart and other things
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
>>saw a few messages in the syslog about inetd disabling ftp because it thought
>>it was respawning too fast. So this does sound related to some sort of limit
>An excerpt from the man page of the inetd in my (old) Linux distribution:
[good advice]
Sorry about wasting list bandwidth for a systems-related problem. Thanks for the
great tip!
-Dan
System Manager
E-ZNet, Inc.
Internet:
[email protected]
From
[email protected] Wed Jan 31 14:56:36 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thlRt-0006k3C; Wed, 31 Jan 96 14:56 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA03581; Wed, 31 Jan 1996 16:51:36 -0600
Received: from handy.gr.com by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id QAA03206 for <
[email protected]>; Wed, 31 Jan 1996 16:47:36 -0600
Received: from steveb.gr.com by handy.gr.com with SMTP
(1.38.193.5/16.2) id AA18876; Wed, 31 Jan 1996 16:45:37 -0600
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 16:45:37 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Steve Brothers)
To:
[email protected]
Subject: Windows clients failing on ftpd on HP-UX 9.04
Mime-Version: 1.0
Content-Type: Text/Plain; charset=ISO-8859-1
X-Newsreader: WinVN 0.99.5
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Howdy!
I have an intermittent failure when some remote sites with Windows (PC)
clients attempt to access my anonymous ftp site. The get an "Unable to find
the file /" or a 421 error, or a service not available or a timeout on
connection, etc. (netscape, air mosaic through compuserve, prodigy)
Any help, or clues would be appreciated. I have ruled out the service
provider, the DNS is fine.
ftp://ftp.gr.com/
TIA
-S
---------------------------------------------
Steve Brothers |"Extraordinary Problems
Greenbrier & Russel | Require Extraordinary
Development Services | Solutions!"
http://www.gr.com/ |
[email protected]
From
[email protected] Wed Jan 31 15:10:05 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thlf0-0002e9C; Wed, 31 Jan 96 15:09 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA04811; Wed, 31 Jan 1996 17:05:20 -0600
Received: from gator.xl.CA by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id RAA04520 for <
[email protected]>; Wed, 31 Jan 1996 17:02:17 -0600
Message-Id: <
[email protected]>
Date: Wed, 31 Jan 1996 15:00:04 -0800 (PST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Albert So" <
[email protected]>
To:
[email protected]
Subject: Problems with Guest FTP sessions
Content-Type: text/plain
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hi there.
We have a copy of wu-ftpd-2.4 running on UnixWare 2.03. We've set up
accounts for both real and guest user types. Transferring files with
the real user class presents no problem - files are sent and received
without any difficulty. However, when one tries to do even an 'ls'
as a user of class guest, one gets the following error on a consistent
basis:
230 User ludwig logged in. User access restrictions apply.
ftp> dir
200 Port command successful.
425 Can't create data socket (0.0.0.0,20): bad file number
The exact same error message comes up every single time. Has anyone
seen this before, and if so, what needs to be done to remedy this?
Thanks
Albert So.
[email protected]
From
[email protected] Wed Jan 31 18:12:42 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thoVq-000DEWC; Wed, 31 Jan 96 18:12 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id UAA15902; Wed, 31 Jan 1996 20:07:47 -0600
Received: from Loekie.City.UniSA.edu.au by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id TAA15249 for <
[email protected]>; Wed, 31 Jan 1996 19:56:51 -0600
Received: (from deraad@localhost) by Loekie.City.UniSA.edu.au (8.6.12/8.6.12) id LAA27428 for
[email protected]; Thu, 1 Feb 1996 11:54:53 +1030
Message-Id: <
[email protected]>
Date: Thu, 1 Feb 1996 11:54:53 +1030 (CST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Mark W. de Raad)
To:
[email protected]
Subject: Virtual Hosting and 'ftp' login...
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL23]
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
Hello all. Many thanks to all who helped me find the answers to my
earlier question re Virtual hosting and WuFtpd.
I am running wu-ftpd-2.4.2-beta-9 from the academic site.
Now that I have compiled the daemon, I run into the following problem:
if the user connects to a virtual site, and logs in as 'ftp' the
ftpd dies with a signal 11, yet if they log in with
'anonymous' it works. Note that ftp still works fine for the
actual site.
The details of the sites are:
'real' site: netspot.city.unisa.edu.au (136.169.21.243)
'virtual' site: ftp.acte.unisa.edu.au (136.169.21.13)
Does anybody have any experience with this at all? I would appreciate
some further help as my tinkering over the last few days has
amounted to nothing.
Cheers!
Mark
--
Mark W. de Raad o
_ /-_
University of South Australia ......(_)>(_)
Australia
Telephone: (+6115) 717 472
In Australia: 015 717 472
For Quick response, please mail:
[email protected]
_\\|//_
( O-O )
---------------------------o00--(_)--00o------------------------------
"What, Me Worry?" - Alfred E. Neuman
From
[email protected] Wed Jan 31 21:52:04 1996
X-Delivered: at request of bill on camco
Return-Path: <
[email protected]>
Received: from wugate.wustl.edu by camco.celestial.com with smtp
(Smail3.1.29.1 #1) id m0thrvo-000FGIC; Wed, 31 Jan 96 21:51 PST
Received: from host by wugate.wustl.edu (8.6.12/8.6.11) with SMTP id XAA28391; Wed, 31 Jan 1996 23:47:07 -0600
Received: from asterix.tele.net by wugate.wustl.edu (8.6.12/8.6.11) with ESMTP id XAA28288 for <
[email protected]>; Wed, 31 Jan 1996 23:45:27 -0600
Received: from peter.tele.net (45.ws.tele.net [194.183.128.45]) by asterix.tele.net (8.7.3/8.7.3) with SMTP id GAA06135 for <
[email protected]>; Thu, 1 Feb 1996 06:45:21 +0100 (MET)
Message-Id: <
[email protected]>
Date: Thu, 01 Feb 1996 06:45:17 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Mazinger Peter <
[email protected]>
To:
[email protected]
Subject: Re: Problems with Guest FTP sessions
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-NCC-RegID: at.teleport
X-Sender:
[email protected]
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Listprocessor-Version: 7.1 -- ListProcessor by CREN
At 15:00 31.01.96 -0800, you wrote:
>
>Hi there.
>
>We have a copy of wu-ftpd-2.4 running on UnixWare 2.03. We've set up
>accounts for both real and guest user types. Transferring files with
>the real user class presents no problem - files are sent and received
>without any difficulty. However, when one tries to do even an 'ls'
>as a user of class guest, one gets the following error on a consistent
>basis:
>
> 230 User ludwig logged in. User access restrictions apply.
> ftp> dir
> 200 Port command successful.
> 425 Can't create data socket (0.0.0.0,20): bad file number
The guest-accounts home-dir has to be set up like that of ftp-user, with
/dev;/bin;/etc;/usr/lib; copying the ls command (gzip,tar, compress if needed)
shared libraries if needed. See README/INSTALL on Solaris.
Best regards,
Mazinger Peter-Sandor email:
[email protected]
backup:
[email protected]
Tel: +43 5574 53200
http://www.tele.net
Fax: +43 5574 53200 730
http://www.VOL.at
http://www.LOL.li
http://www.WOL.at
http://www.Vienna.at soon
ftp://ftp.tele.net
----------------------------------------------------------------