From
[email protected] Tue Jul 1 00:33:23 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id AAA15788;
Tue, 1 Jul 1997 00:29:39 -0500 (CDT)
Received: from kmitnb05.kmitnb.ac.th (
[email protected] [202.44.32.20])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id AAA15688
for <
[email protected]>; Tue, 1 Jul 1997 00:26:55 -0500 (CDT)
Received: by kmitnb05.kmitnb.ac.th (5.65v3.2/1.1.10.5/24Feb97-0554PM)
id AA22080; Tue, 1 Jul 1997 12:24:08 +0700
Message-Id: <
[email protected]>
Date: Tue, 1 Jul 1997 12:24:08 +0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Surasak Sukhsawas <
[email protected]>
To:
[email protected]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
[email protected]
[email protected]
SUBSCRIBE WU-FTPD Surasak Sukhsawas
------------------------------------------------------------------------------
I've tried to compile wu-ftpd-2.4.2-beta-13 on Alpha Server 2100a
running Digital unix 4.0b with Enhanced Security (C2) mode. The following is
what I got,
------------------------------------------------------------------------------
$ ./build dec
make args are :
make opts are :
Linking Makefiles.
Making support library.
cc -O -c getusershell.c
cc -O -c fnmatch.c
cc -O -c strcasestr.c
cc -O -c strerror.c
cc -O -c strsep.c
cc -O -c authuser.c
cc -O -c snprintf.c
rm -f libsupport.a
ar cq libsupport.a getusershell.o fnmatch.o strcasestr.o strerror.o strsep.o authuser.o snprintf.o
ranlib libsupport.a
Making ftpd.
cc -O -I.. -I../support -Olimit 1000 -L../support -s -x -c ftpd.c
cc: Severe: /usr/include/prot.h, line 71: Cannot find file <acl.h> specified in #include directive.
#include <acl.h>
-^
cc: Error: /usr/include/prot.h, line 71: Object file deleted.
#include <acl.h>
-^
*** Exit 1
Stop.
Making ftpcount.
cc -O -I.. -I../support -Olimit 1000 -L../support -s -x -o ftpcount ftpcount.c vers.o -lsupport -lsecurity
ld:
Can't open: vers.o (No such file or directory)
*** Exit 1
Stop.
Making ftpshut.
cc -O -I.. -I../support -Olimit 1000 -L../support -s -x -o ftpshut ftpshut.c vers.o -lsupport -lsecurity
ld:
Can't open: vers.o (No such file or directory)
*** Exit 1
Stop.
Making ckconfig.
cc -O -I.. -I../support -Olimit 1000 -L../support -s -x -o ckconfig ckconfig.c
Links to executables are in bin directory:
size: Cannot open bin/ftpd
size: Cannot open bin/ftpcount
size: Cannot open bin/ftpshut
size: Cannot open bin/ftpwho
text data bss dec hex
8192 8192 0 16384 4000 bin/ckconfig
Done
$
------------------------------------------------------------------------------
Then I inserted -I/usr/sys/include/sys to the line IFLAGS of src/makefiles/Makefile.dec as follow,
IFLAGS = -I/usr/sys/include/sys -I.. -I../support -Olimit 1000
and did do ./build clean then ./build dec again. The following is what I got,
------------------------------------------------------------------------------
$ ./build dec
make args are :
make opts are :
Linking Makefiles.
Making support library.
cc -O -c getusershell.c
cc -O -c fnmatch.c
cc -O -c strcasestr.c
cc -O -c strerror.c
cc -O -c strsep.c
cc -O -c authuser.c
cc -O -c snprintf.c
rm -f libsupport.a
ar cq libsupport.a getusershell.o fnmatch.o strcasestr.o strerror.o strsep.o authuser.o snprintf.o
ranlib libsupport.a
Making ftpd.
cc -O -I/usr/sys/include/sys -I.. -I../support -Olimit 1000 -L../support -s -x -c ftpd.c
yacc ftpcmd.y
mv y.tab.c ftpcmd.c
cc -O -I/usr/sys/include/sys -I.. -I../support -Olimit 1000 -L../support -s -x -c ftpcmd.c
cc: Error: ftpcmd.y, line 681: In this statement, "tm_year" is not a member of "t".
t->tm_year, t->tm_mon+1, t->tm_mday,
------------------------^
cc: Error: ftpcmd.y, line 681: In this statement, "tm_mon" is not a member of "t".
t->tm_year, t->tm_mon+1, t->tm_mday,
------------------------------------^
cc: Error: ftpcmd.y, line 681: In this statement, "tm_mday" is not a member of "t".
t->tm_year, t->tm_mon+1, t->tm_mday,
-------------------------------------------------^
cc: Error: ftpcmd.y, line 682: In this statement, "tm_hour" is not a member of "t".
t->tm_hour, t->tm_min, t->tm_sec);
------------------------^
cc: Error: ftpcmd.y, line 682: In this statement, "tm_min" is not a member of "t".
t->tm_hour, t->tm_min, t->tm_sec);
------------------------------------^
cc: Error: ftpcmd.y, line 682: In this statement, "tm_sec" is not a member of "t".
t->tm_hour, t->tm_min, t->tm_sec);
-----------------------------------------------^
*** Exit 1
Stop.
Making ftpcount.
cc -O -I/usr/sys/include/sys -I.. -I../support -Olimit 1000 -L../support -s -x -o ftpcount ftpcount.c vers.o -lsupport -lsecurity
cc: Warning: ftpcount.c, line 96: In this statement, "localtime(...)" of type "int", is being converted to "pointer to struct tm".
curtime = localtime(&clock);
----^
cc: Error: ftpcount.c, line 97: In this statement, "tm_wday" is not a member of "curtime".
wday = curtime->tm_wday;
-----------^
cc: Error: ftpcount.c, line 121: In this statement, "tm_min" is not a member of "curtime".
ltime = curtime->tm_min + 100 * curtime->tm_hour;
----------------^
cc: Error: ftpcount.c, line 121: In this statement, "tm_hour" is not a member of "curtime".
ltime = curtime->tm_min + 100 * curtime->tm_hour;
----------------------------------------^
*** Exit 1
Stop.
Making ftpshut.
cc -O -I/usr/sys/include/sys -I.. -I../support -Olimit 1000 -L../support -s -x -o ftpshut ftpshut.c vers.o -lsupport -lsecurity
cc: Warning: ftpshut.c, line 222: In this statement, "localtime(...)" of type "int", is being converted to "pointer to struct tm".
tp = localtime(&c_time);
------------^
cc: Warning: ftpshut.c, line 226: In this statement, "localtime(...)" of type "int", is being converted to "pointer to struct tm".
tp = localtime(&c_time);
------------^
cc: Warning: ftpshut.c, line 229: In this statement, "localtime(...)" of type "int", is being converted to "pointer to struct tm".
tp = localtime(&c_time);
------------^
cc: Error: ftpshut.c, line 230: In this statement, "tm_hour" is not a member of "tp".
tp->tm_hour = c / 100;
------------^
cc: Error: ftpshut.c, line 231: In this statement, "tm_min" is not a member of "tp".
tp->tm_min = c % 100;
------------^
cc: Error: ftpshut.c, line 233: In this statement, "tm_hour" is not a member of "tp".
if ((tp->tm_hour > 23) || (tp->tm_min > 59)) {
-----------------^
cc: Error: ftpshut.c, line 233: In this statement, "tm_min" is not a member of "tp".
if ((tp->tm_hour > 23) || (tp->tm_min > 59)) {
---------------------------------------^
cc: Error: ftpshut.c, line 268: In this statement, "tm_year" is not a member of "tp".
(tp->tm_year) + 1900,
-------------^
cc: Error: ftpshut.c, line 269: In this statement, "tm_mon" is not a member of "tp".
tp->tm_mon,
------------^
cc: Error: ftpshut.c, line 270: In this statement, "tm_mday" is not a member of "tp".
tp->tm_mday,
------------^
cc: Error: ftpshut.c, line 271: In this statement, "tm_hour" is not a member of "tp".
tp->tm_hour,
------------^
cc: Error: ftpshut.c, line 272: In this statement, "tm_min" is not a member of "tp".
tp->tm_min,
------------^
*** Exit 1
Stop.
Making ckconfig.
cc -O -I/usr/sys/include/sys -I.. -I../support -Olimit 1000 -L../support -s -x -o ckconfig ckconfig.c
Links to executables are in bin directory:
size: Cannot open bin/ftpd
size: Cannot open bin/ftpcount
size: Cannot open bin/ftpshut
size: Cannot open bin/ftpwho
text data bss dec hex
8192 8192 0 16384 4000 bin/ckconfig
Done
$
------------------------------------------------------------------------------
Could anyone help me out?
Thanks in advance,
[email protected]
------------------------------------------------------------------------------
Surasak Sukhsawas
Institute of Computer and Information Technology
King Mongkut's Institute of Technology North Bangkok
1518 Piboolsongkram Rd. Bangsue Bangkok 10800 Thailand
Tel. +662-9132586
Fax. +662-5857945
------------------------------------------------------------------------------
From
[email protected] Tue Jul 1 02:31:01 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id CAA19565;
Tue, 1 Jul 1997 02:26:12 -0500 (CDT)
Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id CAA19450
for <
[email protected]>; Tue, 1 Jul 1997 02:23:10 -0500 (CDT)
Received: from lynx.parc.xerox.com ([13.2.12.13]) by alpha.xerox.com with SMTP id <14568(4)>; Tue, 1 Jul 1997 00:22:39 PDT
Received: from kuma-home.parc.xerox.com ([13.0.208.13])
by lynx.parc.xerox.com (Netscape Mail Server v2.02) with ESMTP
id AAA23392; Tue, 1 Jul 1997 00:23:00 -0700
Message-Id: <
[email protected]>
Date: Tue, 1 Jul 1997 00:22:35 PDT
Reply-To:
[email protected]
Sender:
[email protected]
From: "Michael Ryan" <
[email protected]>
To: Jim Davis <
[email protected]>
Cc: wu-ftpd mailing list <
[email protected]>
Subject: Re: lamer question: how to get user listing for anonymous users
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.0 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
luckily, the machine is an ultra (E150) and, so, both libraries exist.
placing them into ~ftp/usr/lib created the desired effect.
i agree that it's unfortunate that libmp is not mentioned in the SUN
in.ftpd page. the page claims to be complete and even has an embedded
script -- which i ran.
perhaps, libmp would be a good add to the Solaris section of the FAQ.
personally, will just put this into my UNIX Admin locker under 'lessons
learned' and remember it fondly.
thanks for the info.
//michael
Jim Davis wrote:
>
> On Mon, 30 Jun 1997, Michael Ryan wrote:
>
> > i ran truss
> > > open("/usr/platform/SUNW,Ultra-1/lib/libc_psr.so.1", O_RDONLY) Err#2
> > ...
> > > 20483: open("/usr/lib/libmp.so.1", O_RDONLY) Err#2 ENOENT
> > and created the missing files.
>
> While you do need libmp.so.1 under 2.5.1 in your ~ftp/usr/lib tree -- and
> unfortunately that isn't mentioned in Sun's in.ftpd man page -- anyone
> without an Ultra won't have a libc_psr shared library, even though when
> you run truss you may still see calls to it. That library contains
> tweaked versions of libc routines but AFAIK there's only been a version
> released for Ultras. It's not strictly necessary in ~ftp/usr/lib on
> Ultras either, though if you have it you might as well put it in there.
--
:: michael ryan,
[email protected] or, at play,
[email protected]
:: xerox office of the net, 3400 hillview avenue , palo alto , 94304
:: 415 813 7620 , *923 7620
From
[email protected] Tue Jul 1 08:11:13 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA30588;
Tue, 1 Jul 1997 08:04:41 -0500 (CDT)
Received: from pizza.hvu.nl (
[email protected] [145.89.234.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id IAA30336
for <
[email protected]>; Tue, 1 Jul 1997 08:03:09 -0500 (CDT)
Received: (from koos@localhost) by pizza.hvu.nl (8.8.3/KH19961213 [Fight Spam]) id PAA14692 for
[email protected]; Tue, 1 Jul 1997 15:03:02 +0200 (MET DST)
Message-Id: <
[email protected]>
Date: Tue, 1 Jul 1997 15:03:02 +0200 (MET DST)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Koos van den Hout _U nix and we all_)
To:
[email protected]
Subject: Contents of wu-ftpd FAQ
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
* Contents of the FAQ file for wu-ftpd. The complete file can be found at
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
Or, send mail to
[email protected] with as subject "send faq"
(without the quotes, body ignored).
THE_URL:file://localhost/home/staff/koos/wu-ftpd-faq/wu-ftpd-faq.contents.html
1. Contents of this FAQ
1. Contents of this FAQ
2. What is this document
3. What is wu-ftpd itself and this mailing list in particular ?
1. How do I subscribe/unsubscribe ?
2. Is this list archived anywhere ?
3. What are related documents ?
4. Where do I get the wu-ftpd ?
1. Where do I get the updated version ?
5. Compiling the wu-ftpd
1. cc complains about strunames, typenames, modenames, ..
being undeclared.
2. wu-ftpd doesn't 'see' that users are in multiple groups.
3. wu-ftpd doesn't use the shadow passwords on my Linux
machine.
4. It doesn't compile at all on newer Linux installs. The
error is :
5. I need to use S/KEY authorisation
6. I need to authenticate real users via AFS
7. The timezone in the xferlog is wrong
8. The timezone in the ls output is wrong
9. Digital Unix doesn't log commands after an anonymous
user logs in
10. install fails with 'install: ..'
11. Digital Unix (The Unix Formerly Known As OSF/1) and
Enhanced C2 security,
12. It doesn't compile at all on Digital Unix, errors about
struct timeval
13. What should I do to be able to use wu-ftpd in a HP-UX
10.01
6. Installing the wu-ftpd
1. Command-line options for wu-ftpd
2. Testing on a different port number then ftp
7. The ftpaccess file
1. Some files (banners, etc) don't get shown to anonymous
users.
2. What is the exact format of the <times> parameter in the
"limit"
8. Programs (ls, gzip, tar) work for real users, not for
anonymous users, giving errors like 425 Can't create data
socket (0.0.0.0,20): Bad file number or simply no output.
1. Solaris
2. Building a statically linked ls for Solaris fails
3. Linux
4. Dec OSF
5. SunOS4.1.x
6. AIX
7. IRIX (6.2)
8. It worked, until I upgraded the operating system.
9. Running wu-ftpd
1. ftpd allways says "221 Server shutting down. Goodbye."
2. Anonymous ftp works fine, but real users are denied
access
3. ftpconversions doesn't work
4. On-the-fly compression works, on-the-fly tarring, but
not both.
5. I want to use zip compression (InfoZip)
6. I want a real user to be able to access the host only
via ftp, not via telnet
7. Somebody uploaded a file with a weird name
8. I want anonymous users to be able to upload files, but
in the most secure manner possible
9. The default umask used when a real user uploads a file
is wrong
10. I heard something about 'SITE EXEC' having a security
hole
11. How do I make reports more readable ?
12. Incoming file transfers fail with SunOS and an NFS
mounted incoming
13. Normal ftp clients work, Netscape ftp's fail. So,
passive mode doesn't work.
14. I want to redirect anonymous users to another machine
10. Other things
1. Where is the FTP protocol documented ?
2. How can I make my ftp-archive accessible by E-mail
(ftpmail) ?
11. Credits
---------------------------------------------------------------------------
From
[email protected] Tue Jul 1 09:49:00 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA04220;
Tue, 1 Jul 1997 09:43:04 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id JAA03970
for <
[email protected]>; Tue, 1 Jul 1997 09:38:35 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Tue, 1 Jul 1997 09:39:14 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Re: So...
In-Reply-To: <
[email protected]> from "
[email protected]" at Jun 30, 97 10:05:54 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: 8.0 -- ListProcessor(tm) by CREN
# : If we are talking about replacing all directives of the same type on first
# : encounter in a virtual domain's specific ftpaccess file then wouldn't it be
# : easier to simply have a complete copy of what we want and then simply edit
# : that ?
# No, because separate configfiles makes it clear that they really belong to a
# different site and I hate extra typing. One might argue that merging is
# easier then, but I just thought of another reason why merging in additional
# stuff can be confusing. I'd hate to run into an ftpusers file for some site
# with just 'ftp' in it. Somehow I wouldn't quite trust it. I'd prefer a
# 'complete' list for that and for the other files except ftpaccess.
I was not considering merging the other files at this time. What I meant to
say was a complete ftpaccess config file for each domain. That way then there
is no problem with having to look in two different files to see what a domain
has permission-wise, worrying about a new syntax or rules for dealing with
merging/overriding, etc. Clean and simple, what you see is what you've
got for that domain.
The more I think about it the more I don't see the benefit of merging. The
only time it would be useful would be when you need to make massive changes
to your message files disk configuration. I see too many negatives and not
enough value other than saving a few K of disk space and initially a minute
or two of admin time, even for large sites (and that's questionable). Admin
maintenance will probably be less with a single file than two separate files
and balancing directives between them. Personally I'd much rather deal with
a complete copy of a virtual domains files rather having to deal with multiple
sets. It also makes the code simpler, quicker and cleaner as well.
# : Maybe I'm making this too complicated...
# Yes ;-)
I thought so. Thanks.
# [snip marketingspeak]
#
# : :) Perry, are you in marketing ? Can I use that ? ;-) A visual cookiejar
# No but I took some courses in it in a past life. :) Sure.
#
# : metaphor could be useful for FTP archive sites. ;) :)
# I think I'm going to get a ruler to hit the warez folks with
# "Been grabbing in the cookiejar again have you!!??"
#
# Oh, I propose to make the default for the shutdown parameter
# the_lid_is_shut and logging erroneous login attempts with
# LOG_FAIL, "Slamming down lid. The jar is closed!"
#
# Ah, I can just hear our helpdesk:
# "Ehm.. we have a customer complaining that he can't access the cookiejar?"
;)
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Tue Jul 1 11:44:17 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA12368;
Tue, 1 Jul 1997 11:39:12 -0500 (CDT)
Received: from dragon.ti.com (news.ti.com [192.94.94.33])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id LAA11801
for <
[email protected]>; Tue, 1 Jul 1997 11:33:31 -0500 (CDT)
Received: from dadd.ti.com. ([156.117.118.83]) by dragon.ti.com (8.8.5) with ESMTP id LAA10293 for <
[email protected]>; Tue, 1 Jul 1997 11:32:53 -0500 (CDT)
Received: from pavis.dadd.ti.com by dadd.ti.com. (8.8.4/)
id LAA26006; Tue, 1 Jul 1997 11:32:45 -0500 (CDT)
Received: by pavis.dadd.ti.com id <
[email protected]>; Tue, 1 Jul 1997 11:32:41 -0500
Message-Id: <
[email protected]>
Date: Tue, 1 Jul 97 11:32:41 CDT
Reply-To:
[email protected]
Sender:
[email protected]
From: Bob Luckin <
[email protected]>
To:
[email protected]
Subject: Re: So...
In-Reply-To: <
[email protected]>; from "Kent Landfield" at Jul 1, 97 9:39 am
X-Mimi-Options: HEADERS TI2
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I agree with Kent that the best solution at the moment is to maintain a
complete ftpaccess file for a virtual server, if you want to override anything
at all in the default ftpaccess file. (As I understand it, you don't need a
separate ftpaccess file if you don't want to change anything, as the default
will then be used.)
This is not exacly a lot of hassle for the sys-admin - just copy the default
and change the bits you want.
It doesn't seem worth the design and programming effort to try to merge a
partial ftpaccess file into the default one, when just maintaining a complete
alternative file is so easy.
Just my tuppence worth...
Cheers, Bob
--
Bob Luckin
[email protected] "Able was I ere I saw Waterloo"
From
[email protected] Tue Jul 1 22:43:56 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA10842;
Tue, 1 Jul 1997 22:38:33 -0500 (CDT)
Received: from news.IAEhv.nl (
[email protected] [194.151.64.4])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA10588
for <
[email protected]>; Tue, 1 Jul 1997 22:31:31 -0500 (CDT)
Received: from LOCAL (uucp@localhost)
by news.IAEhv.nl (8.6.13/1.63) with IAEhv.nl; pid 5481
on Wed, 2 Jul 1997 03:31:27 GMT; id DAA05481
efrom:
[email protected]; eto:
[email protected]
Received: (from news@localhost)
by Garfield.IAEhv.nl (8.8.6/8.8.5) id XAA26082;
Tue, 1 Jul 1997 23:37:46 +0200
Message-Id: <
[email protected]>
Date: 1 Jul 1997 21:37:46 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: So...
References: <
[email protected]>
X-Sender: Perry Rovers <
[email protected]>
X-no-archive: yes
X-bofh-archive: yes
X-Newsreader: TIN [UNIX 1.3 unoff BETA 970324; i586 Linux 2.0.28]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Pink elephants with an attitude inspired Kent Landfield <
[email protected]> to tell garfield.mail.wu-ftpd:
: The more I think about it the more I don't see the benefit of merging. The
: only time it would be useful would be when you need to make massive changes
: to your message files disk configuration. I see too many negatives and not
: enough value other than saving a few K of disk space and initially a minute
: or two of admin time, even for large sites (and that's questionable). Admin
: maintenance will probably be less with a single file than two separate files
: and balancing directives between them. Personally I'd much rather deal with
: a complete copy of a virtual domains files rather having to deal with multiple
: sets. It also makes the code simpler, quicker and cleaner as well.
I'd be against merging of other files except ftpaccess for the reason
mentioned earlier. For ftpaccess, it saves you some time, a couple of K
perhaps, but if having complete files makes it 100% easier to code.. soit.
It's just that I prefer to have some defaults. Then again, I don't want to
have those defaults if it means I have to change lots of extra files or have
files with just one entry where I'd suspect more.
Back to stupid buffering problems in the newsfeed for the moment.
--
Perry Rovers (
[email protected])
From
[email protected] Wed Jul 2 13:06:23 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA19973;
Wed, 2 Jul 1997 12:55:24 -0500 (CDT)
Received: from lms03.us1.ibm.com (lms03.ny.us.ibm.com [198.133.29.77])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA21622
for <
[email protected]>; Wed, 2 Jul 1997 12:53:50 -0500 (CDT)
Received: from d03lms01.boulder.ibm.com by lms03.us1.ibm.com (AIX 4.1/UCB 5.64/4.03)
id AA08274; Wed, 2 Jul 1997 16:47:49 GMT
Received: by US.IBM.COM (Soft-Switch LMS 2.0) with snapi via D03AU007
id 5030100004286916; Wed, 2 Jul 1997 13:55:12 -0400
Message-Id: <5030100004286916000002L062*@MHS>
Date: Wed, 2 Jul 1997 13:55:12 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Steven Hein <
[email protected]>
To: wu-ftpd <
[email protected]>
Subject: xferlog identifying failed transfers
Mime-Version: 1.0
Content-Type: text/plain
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I would like to log transfers that dropped their internet connection in the
middle or from a browser user that hit stop in the middle of a transfer.
Currently, they are not included in the xferlog. I read an FAQ from the
archive where someone logs at the beginning and end of each transfer and post
processes the log to find the incomplete transmissions. Is there a way to
force a log entry at the end of all transfers regardless of how they are
terminated? How does the browser communicate with the ftpd to indicate a
successfully completed transfer or how does the browser signal ftpd to
terminate a transfer prior to completion?
For accurate internet traffic analysis, I need to log the number of bytes
transferred for a transmission that does not complete normally, and flag that
transfer in the log as incomplete. Any ideas?
Thanks in advance, Steve Hein
From
[email protected] Wed Jul 2 13:29:48 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA23709;
Wed, 2 Jul 1997 13:18:56 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id NAA23209
for <
[email protected]>; Wed, 2 Jul 1997 13:13:21 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.5/8.8.5) with SMTP id NAA14973;
Wed, 2 Jul 1997 13:13:10 -0500
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 13:13:10 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Steven Hein <
[email protected]>
Cc:
[email protected]
Subject: Re: xferlog identifying failed transfers
In-Reply-To: <5030100004286916000002L062*@MHS>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
wu-ftpd should log partial transfers. Check the file; I certainly see a
few short ones, just happen to be working on that issue right now.
-- Michael
On Wed, 2 Jul 1997, Steven Hein wrote:
> For accurate internet traffic analysis, I need to log the number of bytes
> transferred for a transmission that does not complete normally, and flag that
> transfer in the log as incomplete. Any ideas?
>
> Thanks in advance, Steve Hein
>
From
[email protected] Wed Jul 2 14:25:55 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA28364;
Wed, 2 Jul 1997 14:15:47 -0500 (CDT)
Received: from lucinda.digigami.com (
[email protected] [199.106.62.125])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA28030
for <
[email protected]>; Wed, 2 Jul 1997 14:09:59 -0500 (CDT)
Received: from arrakis (
[email protected] [199.106.62.11]) by lucinda.digigami.com (8.8.5/8.8.2) with SMTP id MAA12199 for <
[email protected]>; Wed, 2 Jul 1997 12:09:57 -0700 (PDT)
Message-Id: <
[email protected]>
Date: Wed, 02 Jul 1997 12:09:12 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Scott Callaway <
[email protected]>
To:
[email protected]
Subject: For anonymous logins, is ftp user the same as anonymous
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.2 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I am just curious if this is correct behavior for wu_ftp. Should
either 'anonymous' or 'ftp' work for ftp logins without a password?
All behavior seems to be identical for 'ftp' or 'anonymous'. Either
one gets listed as below in the 'ftp.log'
ANONYMOUS FTP LOGIN FROM localhost [127.0.0.1].
I know that telnet and other logins fail for the 'ftp' user.
thanks in advance,
-- Scott C.
______________________________________________________________________
Scott Callaway
[email protected] 619-231-2600
Digigami Inc., 624 Broadway Suite 200, San Diego, CA. 92101
1:1000 <
http://www.digigami.com>
______________________________________________________________________
From
[email protected] Wed Jul 2 14:51:00 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA30663;
Wed, 2 Jul 1997 14:40:14 -0500 (CDT)
Received: from patty.loop.net (patty-inet.loop.net [207.211.60.69])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA26421
for <
[email protected]>; Wed, 2 Jul 1997 14:37:11 -0500 (CDT)
Received: (from cassy@localhost) by patty.loop.net (8.6.12/8.6.12) id MAA22934; Wed, 2 Jul 1997 12:36:52 -0700
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 12:36:51 -0700 (PDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Cassandra Perkins <
[email protected]>
To: WU-FTP MAILING LIST <
[email protected]>
Subject: Stale FTP Processes
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Sender:
[email protected]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I'm using version 2.4 and I have noticed that real ftp users old
processes are not always terminated. Have anyone experienced this
problems?
----------------------------------------------------------------------------
| Cassandra M. Perkins | People usually get what's coming to |
| Network Operations | them... unless it's been mailed. |
| The Loop Internet Switch Co., LLC | -fortune |
----------------------------------------------------------------------------
From
[email protected] Wed Jul 2 14:53:37 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA31426;
Wed, 2 Jul 1997 14:46:30 -0500 (CDT)
Received: from hudsucker.gamespot.com (hudsucker.gamespot.com [206.169.18.74])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA30704
for <
[email protected]>; Wed, 2 Jul 1997 14:39:17 -0500 (CDT)
Received: (from jsd@localhost)
by hudsucker.gamespot.com (8.8.5/8.8.5) id MAA17070;
Wed, 2 Jul 1997 12:39:18 -0700 (PDT)
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 12:39:18 -0700 (PDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Random Junk <
[email protected]>
To:
[email protected]
Subject: ftpd dumps core during put
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: VM 6.26 under 19.15 XEmacs Lucid
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
i'm running ftpd (wu-2.4 academ) on freebsd 2.1.5. it dumps core
every time i upload a file, no matter whether i'm anonymous, real
user, whatever. i managed to grab a stack trace:
Program received signal SIGSEGV, Segmentation fault.
0x80750da in vfprintf.so.L227 ()
(gdb) bt
#0 0x80750da in vfprintf.so.L227 ()
#1 0x8089060 in _GLOBAL_OFFSET_TABLE_ ()
#2 0x806af80 in sprintf ()
#3 0x4bd0 in store (name=0x37020 "postgres.patch", mode=0x93c0 "w", unique=0)
at ftpd.c:1613
#4 0xa4c0 in yyparse () at ftpcmd.y:270
#5 0x2072 in main (argc=0, argv=0xefbfde8c, envp=0xefbfde9c) at ftpd.c:555
i don't really know how to interpret that (other than i was trying to
upload "postgres.patch"). anybody got any ideas?
--
Jon Drukman
[email protected] SpotMedia Communications
...I was an infinitely hot and dense dot...
From
[email protected] Wed Jul 2 15:27:00 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA01334;
Wed, 2 Jul 1997 15:17:13 -0500 (CDT)
Received: from smtp.usit.net (
[email protected] [199.1.48.16])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA01153
for <
[email protected]>; Wed, 2 Jul 1997 15:13:01 -0500 (CDT)
Received: from use.usit.net (use.usit.net [199.1.48.3]) by smtp.usit.net (8.8.5/8.8.5) with SMTP id QAA18881; Wed, 2 Jul 1997 16:12:47 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 16:12:45 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Jason Spears <
[email protected]>
To: Cassandra Perkins <
[email protected]>
Cc: WU-FTP MAILING LIST <
[email protected]>
Subject: Re: Stale FTP Processes
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Wed, 2 Jul 1997, Cassandra Perkins wrote:
> I'm using version 2.4 and I have noticed that real ftp users old
> processes are not always terminated. Have anyone experienced this
> problems?
Yes, but not so much (if at all) since upgrading to 2.4.2-b13.
Jason Spears
From
[email protected] Wed Jul 2 15:42:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA03075;
Wed, 2 Jul 1997 15:35:20 -0500 (CDT)
Received: from patty.loop.net (patty-inet.loop.net [207.211.60.69])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA02437
for <
[email protected]>; Wed, 2 Jul 1997 15:29:38 -0500 (CDT)
Received: (from cassy@localhost) by patty.loop.net (8.6.12/8.6.12) id NAA28387; Wed, 2 Jul 1997 13:28:56 -0700
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 13:28:56 -0700 (PDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Cassandra Perkins <
[email protected]>
To: Jason Spears <
[email protected]>
Cc: WU-FTP MAILING LIST <
[email protected]>
Subject: Re: Stale FTP Processes
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Sender:
[email protected]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Thanks for suggestion. I'll force myself to try the beta version.
----------------------------------------------------------------------------
| Cassandra M. Perkins | People usually get what's coming to |
| Network Operations | them... unless it's been mailed. |
| The Loop Internet Switch Co., LLC | -fortune |
----------------------------------------------------------------------------
On Wed, 2 Jul 1997, Jason Spears wrote:
> On Wed, 2 Jul 1997, Cassandra Perkins wrote:
>
> > I'm using version 2.4 and I have noticed that real ftp users old
> > processes are not always terminated. Have anyone experienced this
> > problems?
>
> Yes, but not so much (if at all) since upgrading to 2.4.2-b13.
>
> Jason Spears
>
>
From
[email protected] Wed Jul 2 16:08:50 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA05298;
Wed, 2 Jul 1997 15:59:45 -0500 (CDT)
Received: from dragon.ti.com (news.ti.com [192.94.94.33])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA04818
for <
[email protected]>; Wed, 2 Jul 1997 15:54:18 -0500 (CDT)
Received: from dadd.ti.com. ([156.117.119.90]) by dragon.ti.com (8.8.5) with ESMTP id PAA23364 for <
[email protected]>; Wed, 2 Jul 1997 15:53:46 -0500 (CDT)
Received: from pavis.dadd.ti.com by dadd.ti.com. (8.8.4/)
id PAA08467; Wed, 2 Jul 1997 15:53:42 -0500 (CDT)
Received: by pavis.dadd.ti.com id <
[email protected]>; Wed, 2 Jul 1997 15:53:38 -0500
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 97 15:53:38 CDT
Reply-To:
[email protected]
Sender:
[email protected]
From: Bob Luckin <
[email protected]>
To:
[email protected]
Subject: Re: For anonymous logins, is ftp user the same as anonymous
In-Reply-To: <
[email protected]>; from "Scott Callaway" at Jul 02, 97 12:09 (noon)
X-Mimi-Options: HEADERS TI2
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> I am just curious if this is correct behavior for wu_ftp. Should
> either 'anonymous' or 'ftp' work for ftp logins without a password?
>
> All behavior seems to be identical for 'ftp' or 'anonymous'. Either
> one gets listed as below in the 'ftp.log'
> ANONYMOUS FTP LOGIN FROM localhost [127.0.0.1].
>
> I know that telnet and other logins fail for the 'ftp' user.
Yes, this is the correct behaviour. "ftp" is usually the name of the user
account which is set up for the anonymous server, so it works as well as
"anonymous". (Of course, it is also shorter to type, which is convenient...)
If set up properly, the account should have no valid password (typically "*"
under UNIX), and therefore reject telnet attempts.
Cheers, Bob
--
Bob Luckin
[email protected] "Sex aware era wanes"
From
[email protected] Wed Jul 2 17:16:07 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA11486;
Wed, 2 Jul 1997 17:05:56 -0500 (CDT)
Received: from home.comhelp.com (comhelp.com [206.13.45.66])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA09920
for <
[email protected]>; Wed, 2 Jul 1997 17:00:19 -0500 (CDT)
Received: (from maillist@localhost)
by home.comhelp.com (8.8.4/8.8.4)
id OAA03979; Wed, 2 Jul 1997 14:48:41 -0700 (PDT)
Message-Id: <Pine.SOL.3.91.970702144707.3975A-100000@home>
Date: Wed, 2 Jul 1997 14:48:40 -0700 (PDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Mail Lists <
[email protected]>
To:
[email protected]
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi...I'm trying to figure out how, when a normal user logs in, to make
their root directory their home directory, like an anonymous log in
does....can anyone help me with this? My email is
[email protected] or
this addresses...thanks....Adam
From
[email protected] Wed Jul 2 17:40:18 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA13586;
Wed, 2 Jul 1997 17:30:17 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA13449
for <
[email protected]>; Wed, 2 Jul 1997 17:27:07 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.5/8.8.5) with SMTP id RAA20468;
Wed, 2 Jul 1997 17:27:08 -0500
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 17:27:08 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Mail Lists <
[email protected]>
Cc:
[email protected]
Subject: Re: your mail
In-Reply-To: <Pine.SOL.3.91.970702144707.3975A-100000@home>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
The guest ftp howto should get you going.
-- Michael
On Wed, 2 Jul 1997, Mail Lists wrote:
> Hi...I'm trying to figure out how, when a normal user logs in, to make
> their root directory their home directory, like an anonymous log in
> does....can anyone help me with this? My email is
[email protected] or
> this addresses...thanks....Adam
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Wed Jul 2 17:54:45 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA14575;
Wed, 2 Jul 1997 17:42:47 -0500 (CDT)
Received: from cicese.cicese.mx (cicese.cicese.mx [158.97.1.33])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA13974
for <
[email protected]>; Wed, 2 Jul 1997 17:35:34 -0500 (CDT)
Received: from neumann.cicese.mx by cicese.cicese.mx (4.1/SMI-4.1)
id AA09867; Wed, 2 Jul 97 15:35:33 PDT
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 97 15:35:33 PDT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Fernando Arturo Salaices Orozco)
To:
[email protected]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi. I just installed the wu-ftp server on a Solaris 4.x server and I'm having trouble with the anonymous login. I think I have to create an anonymous account but I'm not sure. When I try to login as anonymous it gives the message
"unknown account" or something like that. My address is
[email protected]
Thanks!
From
[email protected] Wed Jul 2 17:58:04 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA15022;
Wed, 2 Jul 1997 17:48:56 -0500 (CDT)
Received: from orator.netus.com (
[email protected] [206.171.208.41])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA14910
for <
[email protected]>; Wed, 2 Jul 1997 17:45:34 -0500 (CDT)
Received: from 208-76.netus.com (208-76.netus.com [206.171.208.76])
by orator.netus.com (8.8.5/8.8.5) with SMTP id PAA17548
for <
[email protected]>; Wed, 2 Jul 1997 15:45:48 -0700
Received: by 208-76.netus.com with Microsoft Mail
id <
[email protected]>; Wed, 2 Jul 1997 15:46:55 -0700
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 15:46:53 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Chris McCrory <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Subject: Footer in list messages
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by wugate.wustl.edu id RAA14904
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello...
Can the administrator put a footer in the mail messages with a pointer to the FAQ? That might increase the signal to noise ratio of the messages on the list.
<snip>
> Hi...I'm trying to figure out how, when a normal user logs in, to make
> their root directory their home directory, like an anonymous log in
> does....can anyone help me with this? My email is
[email protected] or
> this addresses...thanks....Adam
The message below would be a good place to start.
<snip>
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
<snip>
Christopher McCrory
Lead Bithead, Netus Inc.
[email protected]
[email protected]
QUAKE Capture the Flag server @ quake.netus.com
"Some can do things others cannot" R.J.
From
[email protected] Wed Jul 2 18:09:11 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id SAA15812;
Wed, 2 Jul 1997 18:01:18 -0500 (CDT)
Received: from dragon.ti.com (news.ti.com [192.94.94.33])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA15444
for <
[email protected]>; Wed, 2 Jul 1997 17:55:01 -0500 (CDT)
Received: from dadd.ti.com. ([156.117.119.90]) by dragon.ti.com (8.8.5) with ESMTP id RAA12255 for <
[email protected]>; Wed, 2 Jul 1997 17:54:27 -0500 (CDT)
Received: from pavis.dadd.ti.com by dadd.ti.com. (8.8.4/)
id RAA13351; Wed, 2 Jul 1997 17:54:16 -0500 (CDT)
Received: by pavis.dadd.ti.com id <
[email protected]>; Wed, 2 Jul 1997 17:54:12 -0500
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 97 17:54:12 CDT
Reply-To:
[email protected]
Sender:
[email protected]
From: Bob Luckin <
[email protected]>
To:
[email protected]
Subject: Re: Footer in list messages
In-Reply-To: <
[email protected]>; from "Chris McCrory" at Jul 2, 97 3:46 pm
X-Mimi-Options: HEADERS TI2
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Chris,
> Can the administrator put a footer in the mail messages with a pointer to the FAQ? That might increase the signal to noise ratio of the messages on the list.
I've suggested this on the list a couple of times in the last few months
(not sure how to contact the list maintainer, so I hoped they'd spot the
post), but with no success. I'm glad you've also requested this - perhaps
another voice will help.
:-)
Cheers, Bob
--
Bob Luckin
[email protected] "Rats live on no evil planet"
From
[email protected] Wed Jul 2 19:04:23 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id SAA19133;
Wed, 2 Jul 1997 18:57:18 -0500 (CDT)
Received: from csf.com.br (gama.csf.com.br [200.246.175.4])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id SAA16805
for <
[email protected]>; Wed, 2 Jul 1997 18:53:57 -0500 (CDT)
Received: from alfa.csf.com.br (alfa [200.246.175.3]) by csf.com.br (8.7.5/8.7.1) with SMTP id UAA15899 for <
[email protected]>; Wed, 2 Jul 1997 20:55:19 -0300 (EST)
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 20:56:53 -0300
Reply-To:
[email protected]
Sender:
[email protected]
From: "Carol S. de Figueiredo Junior" <
[email protected]>
To: <
[email protected]>
Subject: Re: your mail
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-MSMail-Priority: Normal
X-Priority: 3
X-Mailer: Microsoft Internet Mail 4.70.1080
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
----------
> From: Michael Brennen <
[email protected]>
> To: Mail Lists <
[email protected]>
> Cc:
[email protected]
> Subject: Re: your mail
> Date: Quarta-feira, 2 de Julho de 1997 19:27
>
>
> The guest ftp howto should get you going.
>
> -- Michael
>
> On Wed, 2 Jul 1997, Mail Lists wrote:
>
> > Hi...I'm trying to figure out how, when a normal user logs in, to
make
> > their root directory their home directory, like an anonymous log in
> > does....can anyone help me with this? My email is
[email protected]
or
> > this addresses...thanks....Adam
>
>
> This is the location for the latest wu-ftpd. You can't see the
> directory contents, but get the file anyway. It's there.
>
>
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
>
> wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
> OR
> send mail to
[email protected]
> with a subject line: send faq
>
> guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
> OR
> send mail to "
[email protected]"
> (immediate autoresponder; subject does not matter)
>
> wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
> wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
>
> There are additional security references in the above docs.
I'm trying the same thing... and i did just like the "guest ftp howto"
says, but i'm still getting an error...
I'm able to logon as my user.. and i know that i'm in my home directory.
I can pwd and i get the /
i can change types...
but when i try to ls or get or put ...
i get
200 PORT command successful.
425 Can't create data socket (0.0.0.0,20): Bad file number.
Can anyone help me ?
Thanks
--
----------------------------------------------------------------
Carol Simoes de Figueiredo Junior
CSF Informatica
[email protected]
http://www.csf.com.br
55-11-31590904
----------------------------------------------------------------
From
[email protected] Wed Jul 2 19:55:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA20037;
Wed, 2 Jul 1997 19:46:07 -0500 (CDT)
Received: from mail.intercon.com (mail.intercon.com [149.52.1.88])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id TAA20222
for <
[email protected]>; Wed, 2 Jul 1997 19:43:46 -0500 (CDT)
Received: from saloon.eng.intercon.com (saloon.eng.intercon.com [149.52.12.108])
by mail.intercon.com (8.8.5/8.8.5) with SMTP id UAA22978;
Wed, 2 Jul 1997 20:43:40 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 20:43:38 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: "Philip Kearney III" <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Cc:
[email protected]
Subject: Re: Footer in list messages
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: Text/Plain; charset=US-ASCII
Content-Disposition: Inline
X-Mailer: InterCon tcpCONNECT4 4.0.4b12 (Macintosh)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Wed, Jul 2, 1997 at 6:46:53 PM, Chris McCrory <
[email protected]> wrote:
> Can the administrator put a footer in the mail messages with a
> pointer to the FAQ? That might increase the signal to noise ratio of the
> messages on the list.
I don't think they can. This list server uses ListProc as its list managment
system and the only thing I think they can possibly do is put the FAQ URLs in
the "welcome" and "info" messages that subscribers get. Right now, the
welcome file only contains:
>>
Welcome to WU-FTPD!
The purpose of this list is to discuss configuration of, enhancements
to, or problems with the wuarchive ftpd.
There is also an wuarchive ftpd announcement list. You may subscribe
to this list by sending a mail message with a body of
SUBSCRIBE WU-FTPD-ANNOUNCE <your full name>
to the list server (
[email protected]).
<<
It really should contain URLs for the FAQ, the guest how to, etc.
Other than that, at least as far as I know, in ListProc 7.2, there was no
option to set to tell ListProc to add a header or footer to the body of all
incoming messages before mailing them out to the list subscribers. Someone
could check with CREN at
http://www.cren.net/ and ask them if ListProc can do
that now. If it can't, then perhaps someone needs to send CREN a ListProc
feature request. But then again, what do I know, I haven't looked at ListProc
in a while and I could be wrong and you can now add footers to incoming
messages in ListProc. :)
I do know, however, that Majordomo does allow the list owner to add a header
or footer to the body or even extra header lines in the RFC822 header of all
incoming messages before it redirects them to all subscribers. It's one of
the reasons I've always used Majordomo for setting up mailing lists for my
current and previous employers. The other is the cost of ListProc. :)
I would imagine it would be too much of a pain to have someone sponsor a
Majordomo mailing list server, move everyone over to that server, and change
everyone's web pages to point to the new location just to get a footer in all
postings from the mailing list.
For now at least, I think the list owner should just put the relevant URLs in
ListProc's welcome and info files for the wu-ftpd and wu-ftpd-announce lists.
-phil
----------------------------------------------------------------------------
Philip Kearney III mailto:
[email protected]
Sr. Software Engineer mailto:
[email protected]
System Administrator finger
[email protected] for my PGP key
Ascend Communications, Inc.
Client Software Engineering Group
----------------------------------------------------------------------------
From
[email protected] Wed Jul 2 22:20:33 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA29572;
Wed, 2 Jul 1997 22:13:46 -0500 (CDT)
Received: from ali.com.tw (root@[210.67.80.34])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA29948
for <
[email protected]>; Wed, 2 Jul 1997 22:08:15 -0500 (CDT)
Received: (from aliuucp@localhost) by ali.com.tw (8.7.3/8.7.3) with UUCP id LAA09222 for mail.wustl.edu!wu-ftpd; Thu, 3 Jul 1997 11:09:46 +0800
Received: from xi. ali.com.tw by ali.com.tw (4.1/SMI-4.1)
id AA13836; Thu, 3 Jul 97 11:00:49 CST
Received: from king.acercad by xi. ali.com.tw (4.1/SMI-4.1)
id AA01046; Thu, 3 Jul 97 11:00:49 CST
Message-Id: <9707030300.AA01046@xi. ali.com.tw>
Date: Thu, 3 Jul 97 11:00:49 CST
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (CHEN Shan-Ta)
To:
[email protected]
Subject: problem about wu-ftpd(?)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
dear sir:
i've just setuped a ftp server for d/l shareware, and i have limited
the max. anonymous users for network bandwidth issue.
but i found under heavy loading( much over my limit ), the
ftp would just refuse the connection request - no ligin title,
just "..connection refused..."
(the log file has nothing about that response)
i've tried the wu-ftpd 2.4.2b12 and b13, the same happened...
but i did find that if i re-run the inetd(kill -1 PID), it would
go back, and then after sometimes, it went dead again...
my linux is official redhat 4.1(kernel 2.0.27), without any upgrade
yet, i suspect this is not due to the ftpd but the inetd, can anyone
give me some ideas?
should i update the kernel? or try anything else to solve the problem?
my netwrok card is i82557 using eepro100 driver via module, does this
"unofficial" driver matter?
i really needs some help, please feel free to send me any words, I'll
be very appriciated about that... :)
thanks agian!
--
Sincerely yours
Silver CHEN
07/03/1997
(if possible, please reply via mailto://
[email protected])
From
[email protected] Wed Jul 2 22:32:17 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA28867;
Wed, 2 Jul 1997 22:25:52 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA31073
for <
[email protected]>; Wed, 2 Jul 1997 22:25:32 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 22:26:09 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Re: Footer in list messages
In-Reply-To: <
[email protected]> from "Philip Kearney III" at Jul 2, 97 08:43:38 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: 8.0 -- ListProcessor(tm) by CREN
# It really should contain URLs for the FAQ, the guest how to, etc.
#
# I would imagine it would be too much of a pain to have someone sponsor a
# Majordomo mailing list server, move everyone over to that server, and change
# everyone's web pages to point to the new location just to get a footer in all
# postings from the mailing list.
For a footer ? Yes. ;-) I'd be happy to have it run from the Resource Center
but that seems alot of trouble everyone to go to for what we'd get. I'll
contact Naeem and see if he can add a blurb to the intro message that resembles
what Michael Brennen <
[email protected]> sends around. That would point new
members at the places to start looking before asking questions on the list.
(Maybe we can talk Michael into posting his quick reference list weekly...)
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Wed Jul 2 22:38:16 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA31765;
Wed, 2 Jul 1997 22:32:00 -0500 (CDT)
Received: from news.IAEhv.nl (
[email protected] [194.151.64.4])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA31693
for <
[email protected]>; Wed, 2 Jul 1997 22:31:39 -0500 (CDT)
Received: from LOCAL (uucp@localhost)
by news.IAEhv.nl (8.6.13/1.63) with IAEhv.nl; pid 22296
on Thu, 3 Jul 1997 03:31:37 GMT; id DAA22296
efrom:
[email protected]; eto:
[email protected]
Received: (from news@localhost)
by Garfield.IAEhv.nl (8.8.6/8.8.5) id BAA03300;
Thu, 3 Jul 1997 01:42:28 +0200
Message-Id: <
[email protected]>
Date: 2 Jul 1997 23:42:28 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: Footer in list messages
References: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 8bit
X-Sender: Perry Rovers <
[email protected]>
X-no-archive: yes
X-bofh-archive: yes
X-Newsreader: TIN [UNIX 1.3 unoff BETA 970324; i586 Linux 2.0.28]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Pink elephants with an attitude inspired Bob Luckin <
[email protected]> to tell garfield.mail.wu-ftpd:
: > Can the administrator put a footer in the mail messages with a pointer to the FAQ? That might increase the signal to noise ratio of the messages on the list.
Hear hear.. and a note to first-time submitters where to find the faq and
all that.. better yet, to have it in the info when subscribing (or is it
already in there.. been awhile).
: I've suggested this on the list a couple of times in the last few months
: (not sure how to contact the list maintainer, so I hoped they'd spot the
[email protected]?
: Bob Luckin
[email protected] "Rats live on no evil planet"
Do you have proof for that statement?
--
Perry Rovers (
[email protected])
From
[email protected] Wed Jul 2 23:00:05 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA31948;
Wed, 2 Jul 1997 22:51:21 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA32043
for <
[email protected]>; Wed, 2 Jul 1997 22:44:06 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.5/8.8.5) with SMTP id WAA26099;
Wed, 2 Jul 1997 22:43:58 -0500
Message-Id: <
[email protected]>
Date: Wed, 2 Jul 1997 22:43:58 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: CHEN Shan-Ta <
[email protected]>
Cc:
[email protected]
Subject: Re: problem about wu-ftpd(?)
In-Reply-To: <9707030300.AA01046@xi. ali.com.tw>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
This is an inetd problem. 'man inetd' to see how to increase the maximum
number of connections per minute. Another alternative is xinetd.
-- Michael
On Thu, 3 Jul 1997, CHEN Shan-Ta wrote:
> i've just setuped a ftp server for d/l shareware, and i have limited
> the max. anonymous users for network bandwidth issue.
>
> but i found under heavy loading( much over my limit ), the
> ftp would just refuse the connection request - no ligin title,
> just "..connection refused..."
> (the log file has nothing about that response)
>
> i've tried the wu-ftpd 2.4.2b12 and b13, the same happened...
>
> but i did find that if i re-run the inetd(kill -1 PID), it would
> go back, and then after sometimes, it went dead again...
From
[email protected] Thu Jul 3 02:22:22 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id CAA16925;
Thu, 3 Jul 1997 02:06:19 -0500 (CDT)
Received: from count-zero.codenet.be (ns.trasys.be [195.16.0.26])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id CAA16399
for <
[email protected]>; Thu, 3 Jul 1997 02:00:01 -0500 (CDT)
Received: from smtpgate.trasys.be ([195.16.8.12]) by count-zero.codenet.be
(Netscape Mail Server v2.02) with SMTP id AAA8650
for <
[email protected]>; Thu, 3 Jul 1997 08:59:24 +0200
Received: by smtpgate.trasys.be with Microsoft Mail
id <
[email protected]>; Thu, 03 Jul 97 09:01:40 +2
Message-Id: <
[email protected]>
Date: Thu, 03 Jul 97 09:11:00 +2
Reply-To:
[email protected]
Sender:
[email protected]
From: "Ponselet, Andre" <
[email protected]>
To: "'wu-ftpd-list'" <
[email protected]>
Subject: Configuring ftp with Unix user or ftpd user
X-Mailer: Microsoft Mail V3.0
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi everybody,
I must install a ftp site to distribute files to a lot of identified users.
Each user must have access to their specific files only and not to files of
the others.
I must provide a security system with a password.
I must detect the downloading of each file by each user.
For this is it necessary to create a specific account for each user in my
Unix computer or is the user configuration inside wu ftpd good enough ?
Must i use specific Unix file protection or the daemon is enough ?
How to lock user in their specific directories ?
Is it easy to extract each downloading activity with a script analysing the
logging files with the granularity about the user and the file ?
Thanks a lot for information and references about this type of problem.
This is my first use of a ftp daemon !
----------------------------------------------------------
Andre Ponselet
Trasys Space & Aeronautics
Leuvensesteenweg 510 bte 43
B 1930 ZAVENTEM
BELGIUM
E-Mail :
[email protected]
Phone : (+32) 2 773 88 06
Fax : (+32) 2 773 79 10
----------------------------------------------------------
From
[email protected] Thu Jul 3 08:51:45 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA04949;
Thu, 3 Jul 1997 08:43:51 -0500 (CDT)
Received: from wjao001-IN.sita.int ([57.250.224.18])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id IAA04768
for <
[email protected]>; Thu, 3 Jul 1997 08:38:30 -0500 (CDT)
Received: by wjao001-IN.sita.int; Sendmail 1.40.112.8 (26AUG93-fma/mjr/gauntlet) id AA104587070; Thu, 3 Jul 1997 13:37:51 GMT
Received: from corp-relay.sita.int(57.4.4.208) by wjao001 via smap (3.2)
id xma010455; Thu, 3 Jul 97 13:37:44 GMT
Received: from sunshine.es.atl.sita.int (sunshine.es.atl.sita.int [57.4.4.16])
by newman.es.atl.sita.int (8.8.5/8.8.5) with ESMTP
id NAA15043 for <
[email protected]>; Thu, 3 Jul 1997 13:37:43 GMT
Received: from localhost by sunshine.es.atl.sita.int (8.8.3/1.34)
id JAA23930; Thu, 3 Jul 1997 09:37:40 -0400 (EDT)
Message-Id: <Pine.GSO.3.92.970703093606.11584K-100000@sunshine>
Date: Thu, 3 Jul 1997 09:37:39 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andy Berry <
[email protected]>
To:
[email protected]
Subject: ftpd default the type binary
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Does anyone know how to make the default TYPE binary in ftpd?
____________________________________________
Andy Berry <
[email protected]>
ES IBM-HMP Development Atlanta (JAOSGXS)
(770) 612-4767 (F) (770) 850-5390
--------------------------------------------
From
[email protected] Thu Jul 3 10:20:52 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA12255;
Thu, 3 Jul 1997 10:12:08 -0500 (CDT)
Received: from sbcomp.com ([207.150.14.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id KAA10851
for <
[email protected]>; Thu, 3 Jul 1997 10:07:55 -0500 (CDT)
Received: from skb (rockford23.inwave.com [206.190.10.123])
by sbcomp.com (8.8.4/8.8.4) with SMTP
id KAA04380; Thu, 3 Jul 1997 10:07:27 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 03 Jul 1997 10:04:17 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: "Steven K. Buehler" <
[email protected]>
To:
[email protected],
[email protected]
Subject: Re: ftpd default the type binary
In-Reply-To: <Pine.GSO.3.92.970703093606.11584K-100000@sunshine>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.2 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
At 09:37 AM 7/3/97 -0400, Andy Berry wrote:
>Does anyone know how to make the default TYPE binary in ftpd?
I seem to remember this being discussed here about a month ago and the answer was that it isn't the server that sets the TYPE, but the client. So if your client defaults to ASCII mode, then you need to change that to binary there and the client would send the command to the server to change to whatever mode it wants. You might check the archives for the list to find out if nobody else answers you.
======================================================
Steven K. Buehler
S & B Computers
Rockford Illinois, USA
Phone: 815-398-7169
Fax: 815-398-7266
======================================================
From
[email protected] Thu Jul 3 11:21:46 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA17334;
Thu, 3 Jul 1997 11:16:44 -0500 (CDT)
Received: from dragon.ti.com (news.ti.com [192.94.94.33])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id LAA16783
for <
[email protected]>; Thu, 3 Jul 1997 11:12:48 -0500 (CDT)
Received: from dadd.ti.com. ([156.117.118.83]) by dragon.ti.com (8.8.5) with ESMTP id LAA22683 for <
[email protected]>; Thu, 3 Jul 1997 11:12:13 -0500 (CDT)
Received: from pavis.dadd.ti.com by dadd.ti.com. (8.8.4/)
id LAA09242; Thu, 3 Jul 1997 11:12:09 -0500 (CDT)
Received: by pavis.dadd.ti.com id <
[email protected]>; Thu, 3 Jul 1997 11:12:05 -0500
Message-Id: <
[email protected]>
Date: Thu, 3 Jul 97 11:12:04 CDT
Reply-To:
[email protected]
Sender:
[email protected]
From: Bob Luckin <
[email protected]>
To:
[email protected]
Subject: Re: Footer in list messages
In-Reply-To: <
[email protected]>; from "Kent Landfield" at Jul 2, 97 10:26 pm
X-Mimi-Options: HEADERS TI2
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Kent said :-
[FAQ info in footer...]
> (Maybe we can talk Michael into posting his quick reference list weekly...)
I agree that putting it in the Welcome message would be a help - probably
should do this even if Listserv can put it into a footer for us...
And if Listserv can't generate footers, I'd suggest a daily post, rather
than a weekly one. (I can do this if Michael doesn't want to. However,
I'd want to be certain that the frequency of such a posting is acceptable
to the rest of the list.)
Cheers, Bob
--
Bob Luckin
[email protected] "No stab - mock combat's off !"
From
[email protected] Thu Jul 3 15:29:51 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA06825;
Thu, 3 Jul 1997 15:24:39 -0500 (CDT)
Received: from central.interspeed.net (central.interspeed.com [207.67.253.97])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA06747
for <
[email protected]>; Thu, 3 Jul 1997 15:21:37 -0500 (CDT)
Received: from web (1Cust66.Max3.San-Diego.CA.MS.UU.NET [153.34.212.194])
by central.interspeed.net (8.8.6/8.8.6) with SMTP id NAA12811
for <
[email protected]>; Thu, 3 Jul 1997 13:21:37 -0700 (PDT)
Message-Id: <
[email protected]>
Date: Thu, 03 Jul 1997 13:18:48 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Jasen Baker <
[email protected]>
To:
[email protected]
Subject: "/" doesn't appear when pwd is entered in a chroot(ed) user
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Light Version 3.0.1 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello, I have read the FAQ's and looked all over the net trying to find out
what I am doing wrong.
Here is the situation, I am basicly trying to make
/usr/local/www/htdocs/username the ROOT directory for the user when they
login.
in the password it goes /export/home/username/./<symbolic link to web
directory>
When the user FTP's in it drops them into the web directory just like it
should. Yet the "PWD" command reveals they are in
/usr/local/www/htdocs/username and NOT "/" which I want. Also, they can run
around the system just as normal.
I have thought the problem lied in the ftpaccess file and I had to put the
user under a guestgroup <groupname>. When I did that, the user is denied
access with the message "Cannot set guest privledges"
Anyone have any ideas or places I might be able to find some answers?
From
[email protected] Thu Jul 3 20:00:29 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA24051;
Thu, 3 Jul 1997 19:55:13 -0500 (CDT)
Received: from pop.cybernex.net (
[email protected] [204.141.116.15])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id TAA23938
for <
[email protected]>; Thu, 3 Jul 1997 19:50:52 -0500 (CDT)
Received: from gate.cybernex.net (
[email protected] [204.141.116.17])
by pop.cybernex.net (Mail-clerk/Homer) with ESMTP id UAA19259
for <
[email protected]>; Thu, 3 Jul 1997 20:49:29 -0400
Received: (from bug@localhost)
by gate.cybernex.net (8.8.5/8.8.5) id UAA04187
for
[email protected]; Thu, 3 Jul 1997 20:44:21 -0400
Message-Id: <
[email protected]>
Date: Thu, 3 Jul 1997 20:44:20 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Matt W." <
[email protected]>
To:
[email protected]
Subject: DEV
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: 8.0 -- ListProcessor(tm) by CREN
My Linux Box is setup so that my Win95 partitions are mounted and can be
seen by everyone. How do I set it up so that only certin people can see
those partitions when they ftp in? Especily anonymous users. I have 3
Win95 partitions and they are mounted to /dosc /dosd /dose.
I have tried to change permissions for RWX and I have also tried changing
the owership, and group. I have tried changing it at the mount point and
even in the /dev/ directory. But NOTHING works, what is the best way to
set it up???
Thanks In Advance!!!
Matt
[email protected]
From
[email protected] Thu Jul 3 21:39:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id VAA29051;
Thu, 3 Jul 1997 21:34:17 -0500 (CDT)
Received: from mail.cruzio.com (
[email protected] [165.227.10.31])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id VAA29750
for <
[email protected]>; Thu, 3 Jul 1997 21:29:37 -0500 (CDT)
Received: from pine176.cruzio.com by mail.cruzio.com id aa02032;
3 Jul 97 19:21 PDT
Message-Id: <
[email protected]>
Date: Thu, 03 Jul 1997 19:24:59 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Bennett <
[email protected]>
To:
[email protected]
Subject: Re: Footer in list messages
In-Reply-To: <
[email protected]>
References: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.2 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
At 11:12 AM 7/3/97 CDT,
[email protected] wrote:
>And if Listserv can't generate footers, I'd suggest a daily post, rather
>than a weekly one. (I can do this if Michael doesn't want to. However,
>I'd want to be certain that the frequency of such a posting is acceptable
>to the rest of the list.)
Once a day may be a bit extreme. But if you do post it occasionally,
(more than once a week or something) please use a unique subject line so
that those of us who don't need it can filter it out with our email clients.
Thanks
Andrew
--
Andrew Bennett
[email protected]
http://taz.hyperreal.com/~abennett/
From
[email protected] Thu Jul 3 22:41:05 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA00547;
Thu, 3 Jul 1997 22:35:49 -0500 (CDT)
Received: from announcer.academ.com (
[email protected] [198.137.249.60])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA32352
for <
[email protected]>; Thu, 3 Jul 1997 22:30:48 -0500 (CDT)
Received: (from sob@localhost)
by announcer.academ.com (8.8.5/8.8.5) id WAA27860
for
[email protected]; Thu, 3 Jul 1997 22:30:59 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 3 Jul 1997 22:30:59 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: wu-ftpd beta 14 release
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
The release date is now before the 8th. I have some delays in getting some
of my test platforms ready.
Sorry for the delay. A bug fix list will be posted RSN.
From
[email protected] Thu Jul 3 22:44:13 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA00089;
Thu, 3 Jul 1997 22:39:06 -0500 (CDT)
Received: from news.IAEhv.nl (
[email protected] [194.151.64.4])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA00251
for <
[email protected]>; Thu, 3 Jul 1997 22:31:26 -0500 (CDT)
Received: from LOCAL (uucp@localhost)
by news.IAEhv.nl (8.6.13/1.63) with IAEhv.nl; pid 7894
on Fri, 4 Jul 1997 03:31:25 GMT; id DAA07894
efrom:
[email protected]; eto:
[email protected]
Received: (from news@localhost)
by Garfield.IAEhv.nl (8.8.6/8.8.5) id TAA30829;
Thu, 3 Jul 1997 19:08:35 +0200
Message-Id: <
[email protected]>
Date: 3 Jul 1997 17:08:34 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: Footer in list messages
References: <
[email protected]>
X-Sender: Perry Rovers <
[email protected]>
X-no-archive: yes
X-bofh-archive: yes
X-Newsreader: TIN [UNIX 1.3 unoff BETA 970324; i586 Linux 2.0.28]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Pink elephants with an attitude inspired Bob Luckin <
[email protected]> to tell garfield.mail.wu-ftpd:
: And if Listserv can't generate footers, I'd suggest a daily post, rather
: than a weekly one. (I can do this if Michael doesn't want to. However,
: I'd want to be certain that the frequency of such a posting is acceptable
: to the rest of the list.)
I'd really hate to see the same thing everyday (heck, I'm trying to get rid
of all the administrative mail I get with lots of scripting stuff and you're
suggesting daily mails with the same info...) even if I just gateway the
list to a local newsgroup and can easily filter it. Since most faqs probably
come from users who weren't subscribed before, it would be far more
efficient IMHO to basically bounce the first submission and send back the
faq/info for the list again. One may argue that long time-readers who haven't
submitted anything yet will get the same treatment, but they will know
that it will happen.
BTW there are some Compuserve addresses on this list that are invalid. gotta
send them to listmaster someday..
--
Perry Rovers (
[email protected])
From
[email protected] Thu Jul 3 22:47:28 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA00393;
Thu, 3 Jul 1997 22:41:53 -0500 (CDT)
Received: from .gregp.org (
[email protected] [153.34.70.152])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA00635
for <
[email protected]>; Thu, 3 Jul 1997 22:38:26 -0500 (CDT)
Received: from localhost (some2@localhost) by .gregp.org (8.7.5/8.7.3) with SMTP id UAA00481 for <
[email protected]>; Thu, 3 Jul 1997 20:38:14 -0700
Message-Id: <
[email protected]>
Date: Thu, 3 Jul 1997 20:38:12 -0700 (PDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Greg Poma <
[email protected]>
To:
[email protected]
Subject: Re: DEV
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Authentication-Warning: some2.sorcery.net: some2 owned process doing -bs
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Thu, 3 Jul 1997, Matt W. wrote:
> My Linux Box is setup so that my Win95 partitions are mounted and can be
> seen by everyone. How do I set it up so that only certin people can see
> those partitions when they ftp in? Especily anonymous users. I have 3
> Win95 partitions and they are mounted to /dosc /dosd /dose.
Anonymous users shouldn't be dumped in your root directory by default.
If it does, try changing the home directory for the 'ftp' user in
/etc/passwd to the place you want anonymous users placed.
> I have tried to change permissions for RWX and I have also tried changing
> the owership, and group. I have tried changing it at the mount point and
> even in the /dev/ directory. But NOTHING works, what is the best way to
> set it up???
To change the vfat mount, try mount /dosc -o umask=7
This'll strip the rwx for those other than the owner/group of the drive.
>-------------------------*--------------------------------------------------<
Greg Poma | The SorceryNet IRC Network FTP Administrator
Email:
[email protected] |
http://www.sorcery.net
[email protected] | Crack RC5-56bit now!
http://rc5.distributed.net
>-------------------------*--------------------------------------------------<
From
[email protected] Fri Jul 4 12:33:23 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA11347;
Fri, 4 Jul 1997 12:26:08 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id MAA11235
for <
[email protected]>; Fri, 4 Jul 1997 12:20:33 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.5/8.8.5) with SMTP id MAA28590;
Fri, 4 Jul 1997 12:20:37 -0500
Message-Id: <
[email protected]>
Date: Fri, 4 Jul 1997 12:20:36 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Jasen Baker <
[email protected]>
Cc:
[email protected]
Subject: Re: "/" doesn't appear when pwd is entered in a chroot(ed) user
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Two suggestions. One, go over the guest group howto with great care;
guest ftp depends on all the details being right. Two, if you just get
stuck, look at the result code that is coming back (530?) and grep the
source to find all the places that error is returned, and see under what
conditions it fails. Without seeing your setup in detail it is impossible
to contribute much more.
-- Michael
On Thu, 3 Jul 1997, Jasen Baker wrote:
> in the password it goes /export/home/username/./<symbolic link to web
> directory>
>
> When the user FTP's in it drops them into the web directory just like it
> should. Yet the "PWD" command reveals they are in
> /usr/local/www/htdocs/username and NOT "/" which I want. Also, they can run
> around the system just as normal.
>
> I have thought the problem lied in the ftpaccess file and I had to put the
> user under a guestgroup <groupname>. When I did that, the user is denied
> access with the message "Cannot set guest privledges"
From
[email protected] Fri Jul 4 15:39:32 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA16274;
Fri, 4 Jul 1997 15:30:56 -0500 (CDT)
Received: from argenet.com.ar (martaf@[200.5.127.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA18829
for <
[email protected]>; Fri, 4 Jul 1997 15:28:41 -0500 (CDT)
Received: from localhost (martaf@localhost)
by argenet.com.ar (8.8.5/8.8.5) with SMTP id RAA21911
for <
[email protected]>; Fri, 4 Jul 1997 17:27:33 -0300
Message-Id: <
[email protected]>
Date: Fri, 4 Jul 1997 17:27:33 -0300 (ARST)
Reply-To: Marta Ferreyra <
[email protected]>
Sender:
[email protected]
From: Marta Ferreyra <
[email protected]>
To:
[email protected]
Subject: guest files and directories invisible
In-Reply-To: <v03020908afb53b02b118@[38.251.84.43]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
hello!!!
I had installed wu-ftpd-2.4.2-beta-13
User chroot()s correctly, but cannot see any of the files or directories.
when I do
ftp server_name I can see
Name (server:martaf):martaf
Password:
230 User martaf logged in. Access restrictions apply
Remote system type is UNIX
Using binary mode to transfer files.
ftp>ls
200 PORT command seccesful
150 Opening ASCII mode data connection for /bin/ls
226 Transfer Complete.
ftp>
and I can see the files of my directory, but I can get it if I know the
name of the file and I can put any file but I can see the files with ls
I say that chroot() is correctly because if I do for example
ftp>cd /etc
550 /etc: No such file or directory
ftp>cd /usr
550 /usr: No such file or directory
ftp>get /etc/passwd
550 /etc/passwd: No such file or directory
Please can anyone help me???
thanks in advance
+-------------------------+
| ARGENET |
| Ing. Marta Ferreyra |
|
[email protected] |
+-------------------------+
From
[email protected] Fri Jul 4 16:29:50 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA21708;
Fri, 4 Jul 1997 16:20:15 -0500 (CDT)
Received: from cdcgk1.agt.ab.ca (cdcgk1.agt.ab.ca [198.161.19.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA18903
for <
[email protected]>; Fri, 4 Jul 1997 16:16:15 -0500 (CDT)
Received: from e1.ent.agt.ab.ca by cdcgk1.agt.ab.ca; (5.65/1.1.8.2/02Aug95-0316PM)
id AA20156; Fri, 4 Jul 1997 15:16:11 -0600
Received: by e1.ent.agt.ab.ca with Internet Mail Service (5.0.1458.49)
id <N9VC45LR>; Fri, 4 Jul 1997 15:12:02 -0600
Message-Id: <
[email protected]>
Date: Fri, 4 Jul 1997 14:43:58 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: Marc Novakowski <
[email protected]>
To: "'wu-ftpd'" <
[email protected]>
Subject: Multiple Log Files
Mime-Version: 1.0
Content-Type: text/plain
X-Priority: 3
X-Mailer: Internet Mail Service (5.0.1458.49)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Okay.. this might be a stretch but it's worth a shot:
Problem:
Is there a way of logging file transfers to separate log files,
determined by the user (or group) of the person logging in? I would use
virtual servers in 2.4.2, but I would like to do this with a single IP
address.
For example, when user "bob" logs in and transfers files, it is logged
to /var/log/ftpxfer.bob. When user "mary" logs in, her file transfers
are logged to "mary".
Reason:
The main problem I am running into with a single log file is that
multiple customers all have a change root to their own directory, so I
have no unique identifier to use to filter the log file.
Possible Alternative:
I guess another workaround to this would be to log the absolute path of
all files transfered, regardless of any change root done by the server.
If anyone knows if any of the above is possible, please let me know!
Thanks,
---
Marc Novakowski
Telus Advanced Communications
(403) 543-2143
http://www.tac.telus.com/keys for PGP key
From
[email protected] Fri Jul 4 16:31:43 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA18069;
Fri, 4 Jul 1997 16:22:59 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id QAA22129
for <
[email protected]>; Fri, 4 Jul 1997 16:18:51 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.5/8.8.5) with SMTP id QAA31561;
Fri, 4 Jul 1997 16:18:21 -0500
Message-Id: <
[email protected]>
Date: Fri, 4 Jul 1997 16:18:21 -0500 (CDT)
Reply-To: Michael Brennen <
[email protected]>
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Marta Ferreyra <
[email protected]>
Cc:
[email protected]
Subject: Re: guest files and directories invisible
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Sounds like an ls problem. The guest howto goes over how to set this up.
-- Michael
On Fri, 4 Jul 1997, Marta Ferreyra wrote:
> User chroot()s correctly, but cannot see any of the files or directories.
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Fri Jul 4 17:43:36 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA25123;
Fri, 4 Jul 1997 17:34:51 -0500 (CDT)
Received: from ostra.inf.unitau.br ([200.136.194.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA20545
for <
[email protected]>; Fri, 4 Jul 1997 17:30:25 -0500 (CDT)
Received: by ostra.inf.unitau.br (5.65v3.2/1.1.10.5/19May97-1220PM)
id AA03287; Fri, 4 Jul 1997 19:30:31 -0400
Message-Id: <
[email protected]>
Date: Fri, 4 Jul 1997 19:30:31 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Antonio Montes <
[email protected]>
To:
[email protected]
Subject: %N doesn't work
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Md5: ZdUhKf3UmD1uYaBO6NwbJg==
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I finally manage to install wu-ftpd-2.4-beta-13 in my AlphaServer running Digital Unix 3.2c with
Enhanced (C2) Security thanks to the alpha-osf-managers list. Now I have another problem: every
time someone ftp to my machine it displays a message with the present number of users logged in
(%N) but insted of the actual number it always displays -1 !?!?!?
Any ideas why is it doing this?
Antonio
From
[email protected] Sat Jul 5 14:31:42 1997
Received: from relay2.UU.NET by relay2.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcwxl12619; Sat, 5 Jul 1997 14:26:01 -0400 (EDT)
Received: from wugate.wustl.edu by relay2.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcwxl12614; Sat, 5 Jul 1997 14:25:59 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA11267;
Sat, 5 Jul 1997 13:18:49 -0500 (CDT)
Received: from ripper.jackotrades.org ([155.64.128.15])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id NAA11391
for <
[email protected]>; Sat, 5 Jul 1997 13:14:09 -0500 (CDT)
Received: from ripper (localhost [127.0.0.1]) by ripper.jackotrades.org (8.8.4/8.7.2) with ESMTP id LAA25458 for <
[email protected]>; Sat, 5 Jul 1997 11:18:33 -0700 (PDT)
Message-Id: <
[email protected]>
Date: Sat, 05 Jul 1997 11:18:33 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: flock instead of fcnlt for Solaris
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: exmh version 2.0gamma 1/27/96
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Greetings all:
Has anyone been able to compile WU on Solaris to use flock instead of fcnlt.
I know that in the standard Solaris build this is turned off.
Using a standard Sun complier, however, one should be able to use the BSD
headers and so forth to use flock.
Thanks in advanced.
Anth
From
[email protected] Sat Jul 5 14:31:48 1997
Received: from relay7.UU.NET by relay7.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcwwz14805; Sat, 5 Jul 1997 11:21:22 -0400 (EDT)
Received: from wugate.wustl.edu by relay7.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcwwz14723; Sat, 5 Jul 1997 11:21:12 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA03286;
Sat, 5 Jul 1997 10:14:16 -0500 (CDT)
Received: from montgomerybell.com (montgomerybell.com [38.242.97.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id KAA03376
for <
[email protected]>; Sat, 5 Jul 1997 10:10:13 -0500 (CDT)
Received: from localhost (halacha@localhost)
by montgomerybell.com (8.8.5/8.8.5) with SMTP id KAA04938
for <
[email protected]>; Sat, 5 Jul 1997 10:10:11 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Sat, 5 Jul 1997 10:10:11 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Alan Halachmi <
[email protected]>
To: wu-ftpd list <
[email protected]>
Subject: Location of WU-FTPd
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Where and how can I get the latest version of ftpd?
Thanks,
Alan
From
[email protected] Sat Jul 5 14:31:51 1997
Received: from relay5.UU.NET by relay5.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcwxb18962; Sat, 5 Jul 1997 11:52:42 -0400 (EDT)
Received: from wugate.wustl.edu by relay5.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcwxb18839; Sat, 5 Jul 1997 11:52:28 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA04555;
Sat, 5 Jul 1997 10:44:49 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id KAA04417
for <
[email protected]>; Sat, 5 Jul 1997 10:39:16 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.5/8.8.5) with SMTP id KAA11061;
Sat, 5 Jul 1997 10:39:13 -0500
Message-Id: <
[email protected]>
Date: Sat, 5 Jul 1997 10:39:13 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Alan Halachmi <
[email protected]>
Cc: wu-ftpd list <
[email protected]>
Subject: Re: Location of WU-FTPd
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Sat, 5 Jul 1997, Alan Halachmi wrote:
> Where and how can I get the latest version of ftpd?
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Sun Jul 6 11:08:16 1997
Received: from relay4.UU.NET by relay4.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcxao04974; Sun, 6 Jul 1997 10:44:15 -0400 (EDT)
Received: from wugate.wustl.edu by relay4.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcxao04969; Sun, 6 Jul 1997 10:44:13 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA30813;
Sun, 6 Jul 1997 09:35:58 -0500 (CDT)
Received: from mx12.netvision.net.il (mx12.NetVision.net.il [194.90.1.50])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA29468
for <
[email protected]>; Sun, 6 Jul 1997 09:30:45 -0500 (CDT)
Received: (qmail 31539 invoked from network); 6 Jul 1997 14:30:41 -0000
Received: from radmail.rad.co.il (207.232.32.10)
by mx12.netvision.net.il with SMTP; 6 Jul 1997 14:30:41 -0000
Received: from debpc.rad.co.il ([192.114.25.2]) by radmail.rad.co.il
(post.office MTA v2.0 0813 ID# 0-12126) with SMTP id AAA10419
for <
[email protected]>; Sun, 6 Jul 1997 17:31:11 +0300
Message-Id: <
[email protected]>
Date: Sun, 06 Jul 1997 17:31:26 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From: "Debby Koren" <
[email protected]>
To:
[email protected]
Subject: hiding directories
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Light Version 3.0.1 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello,
Though I received a reply from the listproc that I am already subscribed to
this list, I haven't seen any activity in months, so I am skeptical and
request that any answers also be sent directly to me.
I am running wuftpd on Solaris after having experience on SUN OS. Is there
any way to hide the bin, dev, etc, and usr directories from anonymous
users? From guest users?
Thank you.
------------------------------------------------------------
Debby Koren, Ph.D. Tel: +972 3 6459551
Technology Consultant Fax: +972 3 6498250
RAD Data Communications, Ltd. email:
[email protected]
Tel Aviv, ISRAEL
From
[email protected] Sun Jul 6 14:11:18 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA08159;
Sun, 6 Jul 1997 14:00:43 -0500 (CDT)
Received: from academ.com (
[email protected] [198.137.249.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id NAA09214
for <
[email protected]>; Sun, 6 Jul 1997 13:52:05 -0500 (CDT)
Received: (from sob@localhost)
by academ.com (8.8.5/8.8.5) id NAA12581
for
[email protected]; Sun, 6 Jul 1997 13:52:03 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Sun, 6 Jul 1997 13:52:03 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Update on beta 14
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Some things have happened with clients that pay for my services over the weekend
that have eaten away at the time I was going to spend on beta14, so it
will be delayed. I don't know how much just yet.
From
[email protected] Sun Jul 6 15:23:08 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA13241;
Sun, 6 Jul 1997 15:14:21 -0500 (CDT)
Received: from pop.cybernex.net (
[email protected] [204.141.116.15])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA10375
for <
[email protected]>; Sun, 6 Jul 1997 15:11:23 -0500 (CDT)
Received: from gate.cybernex.net (
[email protected] [204.141.116.17])
by pop.cybernex.net (Mail-clerk/Homer) with ESMTP id QAA22785
for <
[email protected]>; Sun, 6 Jul 1997 16:10:39 -0400
Received: (from bug@localhost)
by gate.cybernex.net (8.8.5/8.8.5) id QAA18364
for
[email protected]; Sun, 6 Jul 1997 16:05:20 -0400
Message-Id: <
[email protected]>
Date: Sun, 6 Jul 1997 16:05:20 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Matt W." <
[email protected]>
To:
[email protected]
Subject: Log files
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: 8.0 -- ListProcessor(tm) by CREN
Where is the Wu-Ftp log file located, and does the log file keep exactly
what has been sent and/or recieved?
Thanks!!
Matt Winer
[email protected]
From
[email protected] Sun Jul 6 15:33:42 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA13786;
Sun, 6 Jul 1997 15:26:52 -0500 (CDT)
Received: from Mail.Gibbon.Com (
[email protected] [199.88.169.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA13169
for <
[email protected]>; Sun, 6 Jul 1997 15:22:59 -0500 (CDT)
Received: from localhost (frickson@localhost) by Mail.Gibbon.Com (8.8.4/8.7.3) with SMTP id PAA15300 for <
[email protected]>; Sun, 6 Jul 1997 15:22:49 -0500
Message-Id: <
[email protected]>
Date: Sun, 6 Jul 1997 15:22:49 -0500 (CDT)
Reply-To: "John C. Frickson" <
[email protected]>
Sender:
[email protected]
From: "John C. Frickson" <
[email protected]>
To:
[email protected]
Subject: Non-IP Virtual FTP Support
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
All the talk about virtual FTP on this list got me thinking. Many
HTTP servers have support for non-IP based virtual hosts using the
Host: header. So I thought it might also be nice to have a HOST
command in FTP. I made a proposal to the FTP working group on Friday.
There haven't been many responses yet, but so far two people are
against it, and one is in favor (sort of.)
I would like to take an informal poll. Please send me email with
answers to the questions:
1) Extending FTP with a HOST command for non-IP virtual support
(For, Against, Don't care)
2) Do you access any ftp sites that currently have different directories
for different companies hosted on the same machine?
3) Are you an ISP, Web Presence Provider, or similar organization that
hosts multiple domains?
Your input would be much appreciated. If there's interest in this
question, I will post a summary of the results.
Thanks.
--
John C. Frickson | Author of Quality |
http://www.gibbon.com/
Gibbon Computer Products | OS/2 Shareware! |
ftp://ftp.gibbon.com
Phone: +1 612 754 6557 | FTP, DoubleClick, Talk, |
[email protected]
VISA/MasterCard/AmEx | Finger, FingerD, Change |
[email protected]
From
[email protected] Sun Jul 6 22:36:12 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA32571;
Sun, 6 Jul 1997 22:26:22 -0500 (CDT)
Received: from owlman.academ.com (
[email protected] [198.137.249.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA31690
for <
[email protected]>; Sun, 6 Jul 1997 22:20:57 -0500 (CDT)
Received: (from sob@localhost)
by owlman.academ.com (8.8.5/8.8.5) id WAA08497
for
[email protected]; Sun, 6 Jul 1997 22:20:48 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Sun, 6 Jul 1997 22:20:48 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Bug reports and beta 14
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I have finnally gotten through all the bug reports. I will not be
looking at any new ones before beta 14 releases. The last bug report
to be reviewed is number 394.
List of bugs fixed in beta 14 and tickets closed is coming RSN.
From
[email protected] Sun Jul 6 23:06:12 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA01490;
Sun, 6 Jul 1997 22:57:03 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA00339
for <
[email protected]>; Sun, 6 Jul 1997 22:53:05 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Sun, 6 Jul 1997 22:53:27 -0500 (CDT)
Reply-To:
[email protected] (Paul B. Henson)
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: ANNOUNCE: DCE patch for wu-ftpd-2.4.2-beta-13
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: 8.0 -- ListProcessor(tm) by CREN
This is being forwarded for Paul.
-------------------
From:
[email protected] (Paul B. Henson)
http://www.intranet.csupomona.edu/~henson/www/projects/dce_patches/wu-ftpd/
DCE authentication patch (version 0.8) for Academ wu-ftpd 2.4.2-beta-13
-----------------------------------------------------------------------
This patch adds DCE authentication to Academ's wu-ftpd version
2.4.2-beta-13. You can retrieve this version of wu-ftpd via the URL:
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
To apply the patch, acquire and untar the wu-ftpd distribution, change into
the wu-ftpd-2.4 directory and type:
patch -p1 -d . < /path/to/wu-ftpd-2.4.2-beta-13-dce-0.8.diff
This patch has only been tested under Solaris 2.5/Transarc 1.1, and it
should compile in that environment without any problems. Makefile
modifications for AIX 4.1 were contributed by Mark Plaksin
<
[email protected]>, and you should be able to compile on that platform
with no changes, but I haven't tested it myself.
If you want to use this patch with a different vendor's DCE, you will
need to edit the appropriate Makefile in src/makefiles for your system
and add the correct libraries. You can refer to src/makefiles/Makefile.sol
as an example.
If your OS doesn't support DCE as a naming service, you will need to
replicate your registry in local files for wu-ftpd to work. Solaris
users can install my nss_dce package to integrate DCE into the Solaris
naming service switch:
http://www.intranet.csupomona.edu/~henson/www/projects/nss_dce/
Changes
-------
0.8 - Updated to apply to Academ wu-ftpd 2.4.2-beta-13
- Included modifications to Makefile.aix for AIX 4.1 as
contributed by Mark Plaksin <
[email protected]>
0.5 - First publicly released version for wu-ftpd 2.4
--
Paul Henson | System Administrator | Cal Poly Pomona | (909) 869-3781
[email protected] | finger -l
[email protected] for PGP key
From
[email protected] Sun Jul 6 23:46:27 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id XAA03418;
Sun, 6 Jul 1997 23:40:57 -0500 (CDT)
Received: from owlman.academ.com (
[email protected] [198.137.249.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id XAA02221
for <
[email protected]>; Sun, 6 Jul 1997 23:38:25 -0500 (CDT)
Received: (from sob@localhost)
by owlman.academ.com (8.8.5/8.8.5) id XAA08736
for
[email protected]; Sun, 6 Jul 1997 23:38:24 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Sun, 6 Jul 1997 23:38:24 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Closed Tickets before release of beta 14
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
This note contains a summary of all tickets closed before the release of beta
14. Most of these were not bug reports. Some are questions that were
answered in the documentation or the various FAQs. Some were bug reports
about previous beta releases that have already been fixed in the latest
beta (13). A few were complaints about some fundamental design decisions
made when wu-ftpd was created. Some were questions I did answer and have
closed. Some were notes about successful compliations of beta 13 or beta 12
on platforms to which I have not access. Some were offers of patches that
never materialized.
In any case, they are all closed. They are not relevant to beta 14 or any
future release. If you don't see that your ticket number is mentioned here
and it was not mentioned as being a closed ticket or bug fix in the beta 13
distribution, you should assume it is open. Some of these open tickets will
be closed as bug fixes. A few will remain open as they are feature
enhancements. These feature enhancements will be discussed on this list
when I am ready to start outlining the details of release 2.5.
------------------------------------------------------------------------------
Ticket 7 from Fredrik Nyman <
[email protected]> concerns problems
making the ftpaccess file work on IRIX 5.3. I can't reproduce this since
I don't have access to IRIX and other who do don't report this as being
a problem. My guess is that there is no "-a" at the end of the /etc/inetd.conf
line for starting ftpd. [I should have closed this sooner, but didn't.]
------------------------------------------------------------------------------
Ticket 39 from Nathan Neulinger <
[email protected]> concerns a problem
with signal 10 aborts on HP/UX. I believe this problem was fixed in beta 13.
I am closing this ticket since I can't reproduce his problem without access
to HP/UX.
------------------------------------------------------------------------------
Ticket 48 from Scott Mulligan <
[email protected]> was a request to
talk to me about something. We never made contact. He didn't acknowledge
my followup message. I am closing this ticket.
------------------------------------------------------------------------------
Ticket 68 from <
[email protected]> was not a bug report but a request for
more assistance in understanding how virtual ftp support works on wu-ftpd.
This ticket is closed since it is not a bug report.
------------------------------------------------------------------------------
Ticket 99 from Becki Kain <
[email protected]> offered some
suggeestions for the configuration of wu-ftpd on Digital Unix. These changes
were already included in beta 13. This ticket is closed.
------------------------------------------------------------------------------
Ticket 101 from
[email protected] askes about the use of "user@" and "user@host"
conventions for anonymous ftp. This is not a bug report.
------------------------------------------------------------------------------
Ticket 116 from James Ford <
[email protected]> offers to compile wu-ftpd
on some AIX machines. This is not a bug report. However, I would welcome
any reports concerning AIX compliations.
------------------------------------------------------------------------------
Tickets 127, 171 & 240 from Becki Kain <
[email protected]> offers to
compile wu-ftpd on Digital Unix 4.0. This is not a bug report. However, I
would welcome any reports concerning Digital Unix compliations. So, Becki,
go ahead and compile away. Send me a report after you do it.
------------------------------------------------------------------------------
Ticket 128 from Bernhard Rosenkraenzer <
[email protected]> reports
that ftpaccess is not being seen on Linux. However, he does not provide
any information concerning the /etc/inetd.conf line for starting ftpd.
Since I can't reproduce this bug on Linux, this ticket is closed.
------------------------------------------------------------------------------
Ticket 150 from
[email protected] offers to compile wu-ftpd
on some AIX machines. This is not a bug report. However, I would welcome
any reports concerning AIX compliations.
------------------------------------------------------------------------------
Ticket 176 from Danielle Hopkins <
[email protected]> report that
compiling beta 12 on Digital Unix 3.2 with enhanced security is not working.
I believe this issue was resolved in beta 13.
------------------------------------------------------------------------------
Ticket 200 from Alvaro Fdez Lago <
[email protected]> reports
success building beta-12 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 230 from Jon Madison <
[email protected]> reports successful compilation
of beta 12 on IRIX 6.2 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 245 from Kevin Hoffer <
[email protected]> didn't read
the NOTES file concerning the use of "-a" in /etc/inetd.conf in order to
get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 258 from Michael E Quan <
[email protected]> appears to be another
person who didn't read the NOTES file concerning the use of "-a" in
/etc/inetd.conf in order to get ftpd to use the ftpaccess file and the
various enhancements.
------------------------------------------------------------------------------
Ticket 259 from <
[email protected]> appears to be another person who didn't
read the NOTES file concerning the use of "-a" in /etc/inetd.conf in order
to get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 261 from Jon Madison <
[email protected]> reports successful complilation
of beta 13 on IRIX 6.2 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 268 from Andrew R. Orndorff <
[email protected]>
offered some patches for AIX, but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 273 from Usuario-Moisis <
[email protected]> wants to know how
to use BISON in place of YACC on AIX. I don't know. I have to close this
ticket. Maybe someone else can help him.
------------------------------------------------------------------------------
Ticket 278 from Ignacio de Cordoba <
[email protected]> is having problems
getting "ls" and "dir" to work, which is a common problem that usually
involves properly setting up the environment. It is not a wu-ftpd problem.
------------------------------------------------------------------------------
Ticket 280 from Hannu Laurila <
[email protected]> illustrates a common
misconception about the use of a dash as the first character in a password.
This is a feature to turn off extended messages. If the user has a dash as the
first character of his/her password, then that dash must be preceeded with
another dash as an "escape" character to insure that the password is correctly
understood. This ticket is closed.
------------------------------------------------------------------------------
Ticket 291 from Sergio Javier Klarreich <
[email protected]> appeared to
just be a pleasant greeting. It does not appear to report a bug report.
------------------------------------------------------------------------------
Ticket 296 from Jim Easton <
[email protected]> bet a month's salary that
there was an alias on my development platforms for cc. He was wrong, but
I asked him to give the money to charity. I don't know if he did.
------------------------------------------------------------------------------
Ticket 318 from John R. Long <
[email protected]> illustrates a common
misconception about the use of a dash as the first character in a password.
This is a feature to turn off extended messages. If the user has a dash as the
first character of his/her password, then that dash must be preceeded with
another dash as an "escape" character to insure that the password is correctly
understood. This ticket is closed.
------------------------------------------------------------------------------
Ticket 321 from Are Bryne <
[email protected]> asked a variety of questions
about the upload directive in ftpaccess. I have answered him in private mail.
This ticket is closed.
------------------------------------------------------------------------------
Ticket 324 from Johannes Ruscheinski <
[email protected]> offered
some patches for Linux, but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 331 from Emil Isberg <
[email protected]> noted that he was having
no problems with beta-13 on Solaris 2.5 or 2.5.1.This is not a bug report, but
I do appreciate getting these types of messages. Also, beta-14 is the first
release of the server to be tested by me on Solaris 2.5.1, so it will be
the first one for which I can accept bug reports with any hopes of reproducing
it.
------------------------------------------------------------------------------
Ticket 351 from <
[email protected]> is trying to setup "guestgroup"
and has apparently failed to do so. I have directed him to the FAQ and have
heard nothing more from him. So, I am closing this ticket.
------------------------------------------------------------------------------
Tickets 352 & 353 from Frank Winkler <
[email protected]> is trying to setup
the server on Solaris, but apparently does not have all the devices and
shared libaries in place to make it possible for "ls" to work. I suggested
some things for him to investigate, but have heard nothing further. I am
closing this ticket.
------------------------------------------------------------------------------
Ticket 363 from Gary Mills <
[email protected]> is complaining about
about the use of a dash as the first character in a password being used to
turn off extended messages. Since this feature has been part of the server
long before I took over maintenance, I am not going to change the behavior
in this release. That's just the way it has to be. If the folks on the
mailing list can come up with a better solution that we can implement in
a future release, I am willing to consider it, but not for release 2.4.2
or 2.4.3. This ticket is closed.
------------------------------------------------------------------------------
Ticket 366 from Paul Whittenburg <
[email protected]> offers some documentation
fixes for the ftpaccess page but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 367 from Jun-ichiro Itoh <
[email protected]> reported a problem with
an extra %s in a printf that was in beta 12 but fixed in beta 13. This ticket
is closed.
------------------------------------------------------------------------------
From
[email protected] Mon Jul 7 04:42:42 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id EAA24070;
Mon, 7 Jul 1997 04:36:21 -0500 (CDT)
Received: from a04.rb.op.dlr.de (a04.rb.op.dlr.de [129.247.182.185])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id EAA14957
for <
[email protected]>; Mon, 7 Jul 1997 04:32:04 -0500 (CDT)
Received: by a04.rb.op.dlr.de; id AA04371; Mon, 7 Jul 1997 11:35:39 +0200
Message-Id: <
[email protected]>
Date: Mon, 07 Jul 97 11:35:39 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: chroot problem after using vipw
X-Mts: smtp
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On DUNIX V4.0B and FTP server Version wu-2.4.2-academ[BETA-12]
I modified a user's name in /etc/passwd using vipw
and from then on for this and for every newly added user the chroot
seems to fail.
For them using "pwd" the whole path of the whole system is visible
instead of only subtrees inside the "should be effective" user's
root directory.
All the older in /etc/passwd not modified user accounts are o.k.
and the one modified did also work fine before.
For example in /etc/passwd:
ok -->> user1:... :/export/ftp/./pub/user1:...
not ok -->> usermod:... :/export/ftp/./pub/usermod:...
not ok -->> useradd:... :/export/ftp/./pub/useradd:...
Any help would be appreciated!
[email protected]
From
[email protected] Mon Jul 7 08:52:44 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA02761;
Mon, 7 Jul 1997 08:46:08 -0500 (CDT)
Received: from hedgehog.highway1.com.au (hedgehog.highway1.com.au [203.7.224.11])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id IAA05794
for <
[email protected]>; Mon, 7 Jul 1997 08:41:09 -0500 (CDT)
Received: from rimmer (
[email protected] [203.7.224.228])
by hedgehog.highway1.com.au (8.8.4/8.8.4) with ESMTP
id VAA11002 for <
[email protected]>; Mon, 7 Jul 1997 21:41:51 +0800 (WST)
Message-Id: <
[email protected]>
Date: Mon, 07 Jul 1997 21:41:50 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Matt Bruce <
[email protected]>
To: wu-ftpd Mailing List <
[email protected]>
Subject: Repeated virtual server usernames possible?
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.01 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
Please forgive what is probably an ObQ -- I'm a newbie to this list. Is
it possible to set usernames on a virtual ftp server that:
1) aren't in the real /etc/passwd file, and
2) may be duplicated across other virtual ftp servers but relate to
different users?
I've read the FAQ and the "Setting up guest accounts..." document and
didn't get the answer I was hoping for.
The latter document seems to imply that the entry must both be in the
/etc/passwd and ~virtualserver/etc/passwd files. Is this true? Or is
there some new technique about that'll enable wu-ftpd to do what I want?
Regards,
--
+----------------------+------------------------------------+
| Matt Bruce | Highway1 (Australia) Pty Ltd |
| Support & Sysadmin | 820 Beaufort St, Inglewood WA 6052 |
|
[email protected] |
http://www.highway1.com.au/ |
+----------------------+------------------------------------+
"How do you shoot the devil in the back? What if you miss."
-- Verbal Kint from "The Usual Suspects"
From
[email protected] Mon Jul 7 08:58:02 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA03989;
Mon, 7 Jul 1997 08:51:47 -0500 (CDT)
Received: from a04.rb.op.dlr.de (a04.rb.op.dlr.de [129.247.182.185])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA05917
for <
[email protected]>; Mon, 7 Jul 1997 08:45:52 -0500 (CDT)
Received: by a04.rb.op.dlr.de; id AA04425; Mon, 7 Jul 1997 15:49:30 +0200
Message-Id: <
[email protected]>
Date: Mon, 07 Jul 97 15:49:30 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: RE: chroot problem after using vipw
X-Mts: smtp
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello
I wrote:
>
> On DUNIX V4.0B and FTP server Version wu-2.4.2-academ[BETA-12]
> I modified a user's name in /etc/passwd using vipw
> and from then on for this and for every newly added user the chroot
> seems to fail.
> For them using "pwd" the whole path of the whole system is visible
> instead of only subtrees inside the "should be effective" user's
> root directory.
> All the older in /etc/passwd not modified user accounts are o.k.
> and the one modified did also work fine before.
>
..
In addition:
The user accounts I wrote of are Guest accounts with upload permission
They all have entries in ftpaccess and they are able to upload.
But when the modified user issues 'pwd' he gets:
/export/ftp/pub/usermod instead of /pub/usermod what it did before
modification. Modification will say: I renamed user2 to usermod in passwd
file and made the changes also in ftpaccess file. Since then usermod has
the above mentioned problem and the new user useradd too.
The names in these examples are fictional:
In /etc/passwd:
user1:blabla:111:100:works fine:/export/ftp/./pub/user1:/etc/ftponly
usermod:blublu:112:100:name was modified:/export/ftp/./pub/usermod:/etc/ftponly
useradd:huhuhu:113:100:newly added:/export/ftp/./pub/useradd:/ftponly
In ftpaccess:
upload /export/ftp /export/ftp/pub/user1 yes user1 exp 755 dirs
upload /export/ftp /export/ftp/pub/usermod yes usermod exp 755 dirs
upload /export/ftp /export/ftp/pub/useradd yes useradd exp 755 dirs
Thank You in advance
[email protected]
From
[email protected] Mon Jul 7 12:25:06 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA06255;
Mon, 7 Jul 1997 12:15:35 -0500 (CDT)
Received: from hustle.rahul.net (hustle.rahul.net [192.160.13.2])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA05662
for <
[email protected]>; Mon, 7 Jul 1997 12:09:35 -0500 (CDT)
Received: by hustle.rahul.net with UUCP id AA01686
(5.67b8/IDA-1.5 for
[email protected]); Mon, 7 Jul 1997 10:09:27 -0700
Received: from antares.starshine.org (localhost [127.0.0.1]) by antares.starshine.org (8.8.3/8.7.3) with ESMTP id JAA01359; Mon, 7 Jul 1997 09:50:33 -0700
Message-Id: <
[email protected]>
Date: Mon, 07 Jul 1997 09:50:31 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Jim Dennis <
[email protected]>
To:
[email protected]
Cc: wu-ftpd Mailing List <
[email protected]>
Subject: Re: Repeated virtual server usernames possible?
In-Reply-To: <
[email protected]>
Message Apparently From Matt Bruce <
[email protected]>
Dated Mon, 07 Jul 1997 21:41:50 +0800.
X-Mailer: MH 8.6.3
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> Hi,
>
> Please forgive what is probably an ObQ -- I'm a newbie to this list. Is
> it possible to set usernames on a virtual ftp server that:
>
> 1) aren't in the real /etc/passwd file, and
> 2) may be duplicated across other virtual ftp servers but relate to
> different users?
>
> I've read the FAQ and the "Setting up guest accounts..." document and
> didn't get the answer I was hoping for.
>
> The latter document seems to imply that the entry must both be in the
> /etc/passwd and ~virtualserver/etc/passwd files. Is this true? Or is
> there some new technique about that'll enable wu-ftpd to do what I want?
>
> Regards,
>
> | Matt Bruce | Highway1 (Australia) Pty Ltd |
Apparently it's possible to do this using tcp_wrappers
the 'chroot' command, and any ftpd.
Some mail I got from Wietse Venema points out that any
service can be redirected (via the twist command) according
to which IP alias the packets are destined. (The usual
use of tcpd is to base the access controls and twists on
the *source* IP address -- but it supports a syntax for
the *destination* as well).
I've never sat down and fought with this to figure out
what the exact incantations are. However I think it will
do what you want -- you do the chroot *before* launching
ftpd (any ftpd -- wu or vendor supplied). This will cause
the ftpd to authenticate against the /etc/passwd (and
possibly the /etc/shadow) in this chroot environment.
Your ftpd might be configured to chroot *again* (after
authentication).
/
/etc/ -- hosts.allow with tcpd "twist"
-- "real passwd file"
/chroot1/
/etc -- passwd file for virtual host 1
/ftpchroot
/etc -- fake passwd for ftpd and ls
/usr/bin -- just ls (gzip, etc)
/pub
/chroot2/
/etc -- passwd file for virtual host 2
/ftpchroot
/etc -- fake passwd for ftpd and ls
/usr/bin -- just ls (gzip, etc)
/pub
(etc).
I realize that this appears to use alot of disk space.
You can use *hard* links (NOT symlinks) between the different
virtual trees -- so long as the exist on the same file systems
(under the same mount points). Normally you'll have to create the
directories and link the files (hard links to directories are
normally reserved for just the ".." (parent) entries of each
subdirectories -- normally you can't make multiple "downward"
hard links to a directory).
I hope this helps.
If anyone else here as actually used tcpd's "virtual host/twist"
option (with ftp or any other service) I'd love to see a
working example of the hosts.allow and other related files.
--
Jim Dennis,
[email protected]
Proprietor,
[email protected]
Starshine Technical Services
http://www.starshine.org
PGP 1024/2ABF03B1 Jim Dennis <
[email protected]>
Key fingerprint = 2524E3FEF0922A84 A27BDEDB38EBB95A
From
[email protected] Mon Jul 7 13:30:44 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA11981;
Mon, 7 Jul 1997 13:25:45 -0500 (CDT)
Received: from socks1.raleigh.ibm.com (socks1.raleigh.ibm.com [204.146.167.124])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA11530
for <
[email protected]>; Mon, 7 Jul 1997 13:20:37 -0500 (CDT)
Received: from rtpmail02.raleigh.ibm.com by socks1.raleigh.ibm.com (AIX 4.1/UCB 5.64/RTP-FW1.0)
id AA27756; Mon, 7 Jul 1997 14:20:23 -0400
Received: from madras.raleigh.ibm.com (madras.raleigh.ibm.com [9.67.166.15])
by rtpmail02.raleigh.ibm.com (8.8.5/8.8.5/RTP-ral-1.1) with SMTP id OAA42882;
Mon, 7 Jul 1997 14:20:24 -0400
Received: by madras.raleigh.ibm.com (AIX 4.1/UCB 5.64/4.03-RAL)
id AA30224; Mon, 7 Jul 1997 14:20:24 -0400
Message-Id: <
[email protected]>
Date: Mon, 07 Jul 1997 14:20:23 +22324502
Reply-To:
[email protected]
Sender:
[email protected]
From: Alexey Lef <
[email protected]>
To:
[email protected] (Paul B. Henson)
Cc:
[email protected]
Subject: Re: ANNOUNCE: DCE patch for wu-ftpd-2.4.2-beta-13
In-Reply-To: Your message of "Sun, 06 Jul 1997 22:53:27 EDT."
<
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: exmh version 1.6.9 8/22/96
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Interesting... I used "authenticate()" call to make wu-ftpd work with DCE but
I believe this call exists only in AIX. This approach seems to be more
portable. Couple of questions:
- Will it work in a mixed DCE / local user environment?
- What happens to credentials files in /var/dce/security/creds after logout?
On a busy system that directory will become full very quickly.
Thanks,
Alexey
>
> This patch adds DCE authentication to Academ's wu-ftpd version
> 2.4.2-beta-13. You can retrieve this version of wu-ftpd via the URL:
>
>
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
>
From
[email protected] Mon Jul 7 14:47:50 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA18282;
Mon, 7 Jul 1997 14:40:03 -0500 (CDT)
Received: from argenet.com.ar (martaf@[200.5.127.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA18069
for <
[email protected]>; Mon, 7 Jul 1997 14:38:03 -0500 (CDT)
Received: from localhost (martaf@localhost)
by argenet.com.ar (8.8.5/8.8.5) with SMTP id QAA10342
for <
[email protected]>; Mon, 7 Jul 1997 16:36:21 -0300
Message-Id: <
[email protected]>
Date: Mon, 7 Jul 1997 16:36:20 -0300 (ARST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Marta Ferreyra <
[email protected]>
To:
[email protected]
Subject: guest files and directories invisible (fwd)
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I send the mail below the last week and I could resolv the problem but I'm
not sure that is ok.
I had istalled wu-ftpd in a linux slackware 3.1 kernel 2.0.0 from march
distribution, I saw that all was as guest-howto say, so I tought that the
problem was in ls, so I copied the ls from the distribution of dicember
and happened the same ,with ls I couldn't see the files, so I copied in
/home/user/bin the ls from a old distribution that I was in another
computer (linux slackware 3.0 kernel 1.2.13) and now I can see the file, I
don't understand what is happening.
Why I need to copy a old ls in a new distribution to get see the files
with ls in a sesion of ftp???
I need your help
thanks in advance
------------------------------------------------------------------------
this is the mail that I send
hello!!!
I had installed wu-ftpd-2.4.2-beta-13
User chroot()s correctly, but cannot see any of the files or directories.
when I do
ftp server_name I can see
Name (server:martaf):martaf
Password:
230 User martaf logged in. Access restrictions apply
Remote system type is UNIX
Using binary mode to transfer files.
ftp>ls
200 PORT command seccesful
150 Opening ASCII mode data connection for /bin/ls
226 Transfer Complete.
ftp>
and I can see the files of my directory, but I can get it if I know the
name of the file and I can put any file but I can see the files with ls
I say that chroot() is correctly because if I do for example
ftp>cd /etc
550 /etc: No such file or directory
ftp>cd /usr
550 /usr: No such file or directory
ftp>get /etc/passwd
550 /etc/passwd: No such file or directory
Please can anyone help me???
thanks in advance
+-------------------------+
| ARGENET |
| Ing. Marta Ferreyra |
|
[email protected] |
+-------------------------+
From
[email protected] Mon Jul 7 15:10:01 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA20737;
Mon, 7 Jul 1997 15:04:49 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA20474
for <
[email protected]>; Mon, 7 Jul 1997 15:01:36 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.5/8.8.5) with SMTP id PAA21880;
Mon, 7 Jul 1997 15:00:52 -0500
Message-Id: <
[email protected]>
Date: Mon, 7 Jul 1997 15:00:52 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Marta Ferreyra <
[email protected]>
Cc:
[email protected]
Subject: Re: guest files and directories invisible (fwd)
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
The old ls is probably statically linked. The guest howto has more
details on this.
-- Michael
On Mon, 7 Jul 1997, Marta Ferreyra wrote:
> I had istalled wu-ftpd in a linux slackware 3.1 kernel 2.0.0 from march
> distribution, I saw that all was as guest-howto say, so I tought that the
> problem was in ls, so I copied the ls from the distribution of dicember
> and happened the same ,with ls I couldn't see the files, so I copied in
> /home/user/bin the ls from a old distribution that I was in another
> computer (linux slackware 3.0 kernel 1.2.13) and now I can see the file, I
> don't understand what is happening.
> Why I need to copy a old ls in a new distribution to get see the files
> with ls in a sesion of ftp???
From
[email protected] Mon Jul 7 15:41:56 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA23569;
Mon, 7 Jul 1997 15:36:09 -0500 (CDT)
Received: from info.usaid.gov (gaia.info.usaid.gov [198.76.84.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA23002
for <
[email protected]>; Mon, 7 Jul 1997 15:29:44 -0500 (CDT)
Received: from bugs (bugs [198.76.84.2])
by info.usaid.gov (8.8.4/8.8.4) with SMTP
id QAA22130 for <
[email protected]>; Mon, 7 Jul 1997 16:25:52 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Mon, 07 Jul 1997 16:27:39 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Daniel Henry <
[email protected]>
To:
[email protected]
Subject: Re: guest files and directories invisible (fwd)
In-Reply-To: <
[email protected]>
References: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Pro Version 3.0.1 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Also, check your bin, dev, lib files carefully. I found in one
installation that I had typed 'Zero' instead of 'zero' when creating the
dev files, and the only symptom was that 'ls' was producing no output upon
FTP login to the guest account (using WS_FTP).
At 03:00 PM 7/7/97 -0500, you wrote:
>
>The old ls is probably statically linked. The guest howto has more
>details on this.
>
> -- Michael
>
>On Mon, 7 Jul 1997, Marta Ferreyra wrote:
>
>> I had istalled wu-ftpd in a linux slackware 3.1 kernel 2.0.0 from march
>> distribution, I saw that all was as guest-howto say, so I tought that the
>> problem was in ls, so I copied the ls from the distribution of dicember
>> and happened the same ,with ls I couldn't see the files, so I copied in
>> /home/user/bin the ls from a old distribution that I was in another
>> computer (linux slackware 3.0 kernel 1.2.13) and now I can see the file, I
>> don't understand what is happening.
>> Why I need to copy a old ls in a new distribution to get see the files
>> with ls in a sesion of ftp???
>
>
>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Daniel Henry U.S. Agency for International Development
Ph: 703.875.1207 Internet Data Services
Fx: 703.875.1718 <
[email protected]>
From
[email protected] Mon Jul 7 16:31:28 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA28112;
Mon, 7 Jul 1997 16:25:56 -0500 (CDT)
Received: from intranet.intranet.csupomona.edu (intranet.intranet.csupomona.edu [134.71.184.20])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id QAA27820
for <
[email protected]>; Mon, 7 Jul 1997 16:20:49 -0500 (CDT)
Received: (from henson@localhost) by intranet.intranet.csupomona.edu (8.8.5/8.8.3) id OAA19312; Mon, 7 Jul 1997 14:20:39 -0700 (PDT)
Message-Id: <
[email protected]>
Date: Mon, 7 Jul 1997 14:20:39 -0700 (PDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Paul B. Henson" <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: ANNOUNCE: DCE patch for wu-ftpd-2.4.2-beta-13
In-Reply-To: <
[email protected]> (message from Alexey
Lef on Mon, 07 Jul 1997 14:20:23 +22324502)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> Interesting... I used "authenticate()" call to make wu-ftpd work with DCE but
> I believe this call exists only in AIX.
I think that's true.
> - Will it work in a mixed DCE / local user environment?
Currently, it only uses DCE, and fails if there is no valid DCE account for
the user. However, it could be easily modified to fall back to standard
Unix authentication on DCE failure.
> - What happens to credentials files in /var/dce/security/creds after logout?
> On a busy system that directory will become full very quickly.
They're purged when the connection closes, so there shouldn't be any
abandoned credentials unless the session terminated abnormally.
--
Paul Henson | System Administrator | Cal Poly Pomona | (909) 869-3781
[email protected] | finger -l
[email protected] for PGP key
From
[email protected] Mon Jul 7 16:49:43 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA29739;
Mon, 7 Jul 1997 16:44:07 -0500 (CDT)
Received: from cicese.cicese.mx (cicese.cicese.mx [158.97.1.33])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA29737
for <
[email protected]>; Mon, 7 Jul 1997 16:43:10 -0500 (CDT)
Received: from neumann.cicese.mx by cicese.cicese.mx (4.1/SMI-4.1)
id AA01397; Mon, 7 Jul 97 14:42:39 PDT
Message-Id: <
[email protected]>
Date: Mon, 7 Jul 97 14:42:39 PDT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Fernando Arturo Salaices Orozco)
To:
[email protected]
Subject: anonymous
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi again, I'm still having trouble with the anonymous login with wu-ftpd. I created (well, the system administrator) the anonymous account but what attributes should it have. I allready read the man in.ftpd page and it doesn`t say to much about the anonymous account. Please help me!!! Thanks
From
[email protected] Mon Jul 7 17:01:36 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA30814;
Mon, 7 Jul 1997 16:56:11 -0500 (CDT)
Received: from cicese.cicese.mx (cicese.cicese.mx [158.97.1.33])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA30453
for <
[email protected]>; Mon, 7 Jul 1997 16:51:29 -0500 (CDT)
Received: from neumann.cicese.mx by cicese.cicese.mx (4.1/SMI-4.1)
id AA01468; Mon, 7 Jul 97 14:51:28 PDT
Message-Id: <
[email protected]>
Date: Mon, 7 Jul 97 14:51:28 PDT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Fernando Arturo Salaices Orozco)
To:
[email protected]
Subject: anonymous
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi again, I'm still having trouble with the anonymous login with wu-ftpd. I created (well, the system administrator) the anonymous account but what attributes should it have. I allready read the man in.ftpd page and it doesn`t say to much about the anonymous account. Please help me!!! Thanks
[email protected]
From
[email protected] Mon Jul 7 23:56:53 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id XAA19480;
Mon, 7 Jul 1997 23:52:37 -0500 (CDT)
Received: from owlman.academ.com (
[email protected] [198.137.249.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id XAA19495
for <
[email protected]>; Mon, 7 Jul 1997 23:48:06 -0500 (CDT)
Received: (from sob@localhost)
by owlman.academ.com (8.8.5/8.8.5) id XAA02346
for
[email protected]; Mon, 7 Jul 1997 23:48:01 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Mon, 7 Jul 1997 23:48:01 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Revised CLOSED-TICKETS
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
CLOSED-TICKETS (BETA 14)
This note contains a summary of all tickets closed before the release of beta
14. Most of these were not bug reports. Some are questions that were
answered in the documentation or the various FAQs. Some were bug reports
about previous beta releases that have already been fixed in the latest
beta (13). A few were complaints about some fundamental design decisions
made when wu-ftpd was created. Some were questions I did answer and have
closed. Some were notes about successful compliations of beta 13 or beta 12
on platforms to which I have not access. Some were offers of patches that
never materialized.
In any case, they are all closed. They are not relevant to beta 14 or any
future release. If you don't see that your ticket number is mentioned here
and it was not mentioned as being a closed ticket or bug fix in the beta 13
distribution, you should assume it is open. Some of these open tickets will
be closed as bug fixes. A few will remain open as they are feature
enhancements. These feature enhancements will be discussed on this list
when I am ready to start outlining the details of release 2.5.
------------------------------------------------------------------------------
Ticket 7 from Fredrik Nyman <
[email protected]> concerns problems
making the ftpaccess file work on IRIX 5.3. I can't reproduce this since
I don't have access to IRIX and other who do don't report this as being
a problem. My guess is that there is no "-a" at the end of the /etc/inetd.conf
line for starting ftpd. [I should have closed this sooner, but didn't.]
------------------------------------------------------------------------------
Ticket 39 from Nathan Neulinger <
[email protected]> concerns a problem
with signal 10 aborts on HP/UX. I believe this problem was fixed in beta 13.
I am closing this ticket since I can't reproduce his problem without access
to HP/UX.
------------------------------------------------------------------------------
Ticket 48 from Scott Mulligan <
[email protected]> was a request to
talk to me about something. We never made contact. He didn't acknowledge
my followup message. I am closing this ticket.
------------------------------------------------------------------------------
Ticket 68 from <
[email protected]> was not a bug report but a request for
more assistance in understanding how virtual ftp support works on wu-ftpd.
This ticket is closed since it is not a bug report.
------------------------------------------------------------------------------
Ticket 99 from Becki Kain <
[email protected]> offered some
suggeestions for the configuration of wu-ftpd on Digital Unix. These changes
were already included in beta 13. This ticket is closed.
------------------------------------------------------------------------------
Ticket 101 from
[email protected] askes about the use of "user@" and "user@host"
conventions for anonymous ftp. This is not a bug report.
------------------------------------------------------------------------------
Ticket 116 from James Ford <
[email protected]> offers to compile wu-ftpd
on some AIX machines. This is not a bug report. However, I would welcome
any reports concerning AIX compliations.
------------------------------------------------------------------------------
Tickets 127, 171 & 240 from Becki Kain <
[email protected]> offers to
compile wu-ftpd on Digital Unix 4.0. This is not a bug report. However, I
would welcome any reports concerning Digital Unix compliations. So, Becki,
go ahead and compile away. Send me a report after you do it.
------------------------------------------------------------------------------
Ticket 128 from Bernhard Rosenkraenzer <
[email protected]> reports
that ftpaccess is not being seen on Linux. However, he does not provide
any information concerning the /etc/inetd.conf line for starting ftpd.
Since I can't reproduce this bug on Linux, this ticket is closed.
------------------------------------------------------------------------------
Ticket 148 from Ian Willis <
[email protected]> suggested a modification for Beta 12
that was already added, but I apparently didn't notice his ticket until this
go round. Since this issue has been addressed, the ticket is closed. [The
change was specific for SCO 5 and concerned defining SIGURG as SIGUSR1.]
------------------------------------------------------------------------------
Ticket 150 from
[email protected] offers to compile wu-ftpd
on some AIX machines. This is not a bug report. However, I would welcome
any reports concerning AIX compliations.
------------------------------------------------------------------------------
Ticket 151 from
[email protected] (Marek Michalkiewicz)
reported a bug in Virtual Root processing that has been fixed prior to beta
14 release. The bug in attempting to reuse space allocated to pw->pw-dir
instead of freeing and resizing it to a size that can hold the virtual root
directory. This ticket is closed.
------------------------------------------------------------------------------
Ticket 176 from Danielle Hopkins <
[email protected]> report that
compiling beta 12 on Digital Unix 3.2 with enhanced security is not working.
I believe this issue was resolved in beta 13.
------------------------------------------------------------------------------
Ticket 200 from Alvaro Fdez Lago <
[email protected]> reports
success building beta-12 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 202 from Andrew Maltsev <
[email protected]> reported the duplicate printf
selector when a bad shell reply was going to be made. This was fixed before
beta-14 and is now closed.
------------------------------------------------------------------------------
Ticket 213 from Randall J. Wormser <
[email protected]> didn't read
the NOTES file concerning the use of "-a" in /etc/inetd.conf in order to
get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 230 from Jon Madison <
[email protected]> reports successful compilation
of beta 12 on IRIX 6.2 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 245 from Kevin Hoffer <
[email protected]> didn't read
the NOTES file concerning the use of "-a" in /etc/inetd.conf in order to
get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 258 from Michael E Quan <
[email protected]> appears to be another
person who didn't read the NOTES file concerning the use of "-a" in
/etc/inetd.conf in order to get ftpd to use the ftpaccess file and the
various enhancements.
------------------------------------------------------------------------------
Ticket 259 from <
[email protected]> appears to be another person who didn't
read the NOTES file concerning the use of "-a" in /etc/inetd.conf in order
to get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 261 from Jon Madison <
[email protected]> reports successful complilation
of beta 13 on IRIX 6.2 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 268 from Andrew R. Orndorff <
[email protected]>
offered some patches for AIX, but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 273 from Usuario-Moisis <
[email protected]> wants to know how
to use BISON in place of YACC on AIX. I don't know. I have to close this
ticket. Maybe someone else can help him.
------------------------------------------------------------------------------
Ticket 278 from Ignacio de Cordoba <
[email protected]> is having problems
getting "ls" and "dir" to work, which is a common problem that usually
involves properly setting up the environment. It is not a wu-ftpd problem.
------------------------------------------------------------------------------
Ticket 280 from Hannu Laurila <
[email protected]> illustrates a common
misconception about the use of a dash as the first character in a password.
This is a feature to turn off extended messages. If the user has a dash as the
first character of his/her password, then that dash must be preceeded with
another dash as an "escape" character to insure that the password is correctly
understood. This ticket is closed.
------------------------------------------------------------------------------
Ticket 291 from Sergio Javier Klarreich <
[email protected]> appeared to
just be a pleasant greeting. It does not appear to report a bug report.
------------------------------------------------------------------------------
Ticket 296 from Jim Easton <
[email protected]> bet a month's salary that
there was an alias on my development platforms for cc. He was wrong, but
I asked him to give the money to charity. I don't know if he did.
------------------------------------------------------------------------------
Ticket 318 from John R. Long <
[email protected]> illustrates a common
misconception about the use of a dash as the first character in a password.
This is a feature to turn off extended messages. If the user has a dash as the
first character of his/her password, then that dash must be preceeded with
another dash as an "escape" character to insure that the password is correctly
understood. This ticket is closed.
------------------------------------------------------------------------------
Ticket 321 from Are Bryne <
[email protected]> asked a variety of questions
about the upload directive in ftpaccess. I have answered him in private mail.
This ticket is closed.
------------------------------------------------------------------------------
Ticket 324 from Johannes Ruscheinski <
[email protected]> offered
some patches for Linux, but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 331 from Emil Isberg <
[email protected]> noted that he was having
no problems with beta-13 on Solaris 2.5 or 2.5.1.This is not a bug report, but
I do appreciate getting these types of messages. Also, beta-14 is the first
release of the server to be tested by me on Solaris 2.5.1, so it will be
the first one for which I can accept bug reports with any hopes of reproducing
it.
------------------------------------------------------------------------------
Ticket 351 from <
[email protected]> is trying to setup "guestgroup"
and has apparently failed to do so. I have directed him to the FAQ and have
heard nothing more from him. So, I am closing this ticket.
------------------------------------------------------------------------------
Tickets 352 & 353 from Frank Winkler <
[email protected]> is trying to setup
the server on Solaris, but apparently does not have all the devices and
shared libaries in place to make it possible for "ls" to work. I suggested
some things for him to investigate, but have heard nothing further. I am
closing this ticket.
------------------------------------------------------------------------------
Ticket 363 from Gary Mills <
[email protected]> is complaining about
about the use of a dash as the first character in a password being used to
turn off extended messages. Since this feature has been part of the server
long before I took over maintenance, I am not going to change the behavior
in this release. That's just the way it has to be. If the folks on the
mailing list can come up with a better solution that we can implement in
a future release, I am willing to consider it, but not for release 2.4.2
or 2.4.3. This ticket is closed.
------------------------------------------------------------------------------
Ticket 366 from Paul Whittenburg <
[email protected]> offers some documentation
fixes for the ftpaccess page but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 367 from Jun-ichiro Itoh <
[email protected]> reported a problem with
an extra %s in a printf that was in beta 12 but fixed in beta 13. This ticket
is closed.
------------------------------------------------------------------------------
From
[email protected] Tue Jul 8 08:47:11 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA17540;
Tue, 8 Jul 1997 08:42:02 -0500 (CDT)
Received: from hahp9k.harte-lyne.ca (hahp9k.harte-lyne.ca [205.206.207.101])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id IAA17167
for <
[email protected]>; Tue, 8 Jul 1997 08:40:12 -0500 (CDT)
Received: from hal_ham_g01_u01 (jim.harte-lyne.ca [205.206.207.103])
by hahp9k.harte-lyne.ca (8.8.5/8.8.5) with SMTP id JAA09538
for <
[email protected]>; Tue, 8 Jul 1997 09:45:26 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Mon, 7 Jul 1997 15:06:07 -5
Reply-To:
[email protected]
Sender:
[email protected]
From: "James B. Byrne" <
[email protected]>
To:
[email protected]
Subject: Assistance wuftp
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
X-pmrqc: 1
X-mailer: Pegasus Mail for Win32 (v2.54)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I am running WUFTP 2.4.2 Beta 11-R
230 User test01 logged in.
ftp> pwd
257 "/" is current directory.
ftp> dir
200 PORT command successful.
Connection closed by remote host.
ftp>
I am getting this problem. If I reboot the server the
difficulty goes away and dir works as expected. Does anyone
have any clue as to what is going on? The are no "hung" ftp
processes if I do a ps -ef so I have no idea what is causing
this. It has happened at least once before.
OS = HP-UX 10.01
Please reply directly as well as to the list.
Regards,
Jim
---
James B. Byrne Harte & Lyne Limited
vox: +1 905 561 1241 9 Brockley Drive
fax: +1 905 561 0757 Hamilton, Ontario
mailto:
[email protected] Canada L8E 3C3
From
[email protected] Tue Jul 8 12:14:38 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA00736;
Tue, 8 Jul 1997 12:06:55 -0500 (CDT)
Received: from arbi.Informatik.Uni-Oldenburg.DE (arbi.Informatik.Uni-Oldenburg.DE [134.106.1.7])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA00259
for <
[email protected]>; Tue, 8 Jul 1997 12:04:33 -0500 (CDT)
Received: by arbi.Informatik.Uni-Oldenburg.DE (Smail3.1.29.1)
id <m0wldgQ-0005iVC>; Tue, 8 Jul 97 19:04 CST
Received: by diamant.Informatik.Uni-Oldenburg.DE (Smail3.1.29.1)
id <m0wldgh-0004wbC>; Tue, 8 Jul 97 19:04 MET DST
Received: by tuerkis.Informatik.Uni-Oldenburg.DE (Smail3.1.29.1)
id <m0wldgh-000AgDC>; Tue, 8 Jul 97 19:04 MET DST
Message-Id: <
[email protected]>
Date: Tue, 8 Jul 1997 19:04:26 +0200 (MET DST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Walter Harms" <
[email protected]>
To:
[email protected] (wu-ftpd mailinglist)
Subject: ticket 273: bison & yacc
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Aliased: From
[email protected] (Walter Harms)
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
q: how to use bison in stead of yacc ?
a: replace yacc with bison -y
if this isnt in the FAQ sombody may place it there
walter
--
-----
"Now listen everyone, I have a plan. It might even work..."
-----
From
[email protected] Tue Jul 8 17:36:52 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA24470;
Tue, 8 Jul 1997 17:27:59 -0500 (CDT)
Received: from oracle (oracle.dsuper.net [205.205.255.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA24822
for <
[email protected]>; Tue, 8 Jul 1997 17:25:33 -0500 (CDT)
Received: from demo.dsuper.net by oracle; (5.65v3.2/1.1.8.2/08Jul96-0617PM)
id AA10853; Tue, 8 Jul 1997 18:22:43 -0400
Message-Id: <
[email protected]>
Date: Tue, 08 Jul 1997 15:18:41 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Anthony McGarr <
[email protected]>
To:
[email protected]
Subject: WU-FTP & ls
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 3.01 (Win95; I)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello.
What we are trying to establish, is, to have each one of our users be
chrooted to their home directory when FTPing onto our box. The problem
is
space confindment. We have over 3000 users and it would require about
1/2
meg, in each $HOME dir to set up the "~/bin/ls" ( and any other
executable
needed ) so they would be able to view the contens of their directory.
We have tried makeing a symbolic link to ls but once chrooted, the user
would not be able to use "ls" bc the symbolic link would not cross the
chroot directory.
We have tried hard linking the ls but that to increase disk space.
We have tried to put the user $HOME dir underneath (above ? -> format:
/home/ftp/$HOME ) the anonymous ftp directory tree. Made the proper
changes in the etc/passwd
( user:passwd:uid:gid:geco:/home/./ftp/$HOME:shell )
to allow access, once chrooted, to the ls needed ( in /home/ftp/bin )
but that did not seem to work.
Is there any way we can allow our users to use "ls" ( plus other
executables ) without having to "cp" or hard linking the executables in
question in their $HOME directory ???
thanks in advance
From
[email protected] Tue Jul 8 18:17:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id SAA27976;
Tue, 8 Jul 1997 18:09:10 -0500 (CDT)
Received: from prawn.fishy.net (flounder.fishy.net [206.156.56.34])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id SAA26571
for <
[email protected]>; Tue, 8 Jul 1997 18:04:36 -0500 (CDT)
Received: from sevruga.fishy.net (sevruga.fishy.net [172.16.1.4]) by prawn.fishy.net (8.8.5/8.7.3) with ESMTP id TAA106290; Tue, 8 Jul 1997 19:04:21 -0400
Received: (from ben@localhost) by sevruga.fishy.net (8.8.5/8.7.3) id TAA27578; Tue, 8 Jul 1997 19:04:23 -0400
Message-Id: <
[email protected]>
Date: Tue, 8 Jul 1997 19:04:22 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Ben Mehlman <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: WU-FTP & ls
In-Reply-To: <
[email protected]> from "Anthony McGarr" at Jul 8, 97 03:18:41 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: 8.0 -- ListProcessor(tm) by CREN
>
> Is there any way we can allow our users to use "ls" ( plus other
> executables ) without having to "cp" or hard linking the executables in
> question in their $HOME directory ???
>
Someone out there has a "built-in ls" patch.. but I didn't know about it
when I was facing the same problem as you are. In my case I have -way- too
many users for links to be a reasonable option. So what I did was get the
gnu ls source, change the name of main() to ls_main(), and modify the gnu
makefile to build just the libraries it needs and ls.o, but not the
executable. I link the result into ftpd. In popen.c, I put in a test just
before the exec. If it's /bin/ls, I call ls_main() instead of exec. Works
like a charm. One caveat- you must add -n to the list of ls options in
ftpd.c, or ls acts very erratic when it can't find /etc/passwd.
-Ben
---------------------------------------------------------------------------
Ben Mehlman Vladimir: Well? Shall we go?
Prodigy Services Company Estragon: Yes, let's go.
[email protected] (They do not move).
From
[email protected] Wed Jul 9 03:29:32 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id DAA03990;
Wed, 9 Jul 1997 03:24:04 -0500 (CDT)
Received: from owlman.academ.com (
[email protected] [198.137.249.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id DAA03874
for <
[email protected]>; Wed, 9 Jul 1997 03:21:34 -0500 (CDT)
Received: (from sob@localhost)
by owlman.academ.com (8.8.5/8.8.5) id DAA05675
for
[email protected]; Wed, 9 Jul 1997 03:21:32 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Wed, 9 Jul 1997 03:21:32 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: Latest CLOSED-TICKETS
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
CLOSED-TICKETS (BETA 14)
This note contains a summary of all tickets closed before the release of beta
14. Most of these were not bug reports. Some are questions that were
answered in the documentation or the various FAQs. Some were bug reports
about previous beta releases that have already been fixed in the latest
beta (13). A few were complaints about some fundamental design decisions
made when wu-ftpd was created. Some were questions I did answer and have
closed. Some were notes about successful compliations of beta 13 or beta 12
on platforms to which I have not access. Some were offers of patches that
never materialized.
In any case, they are all closed. They are not relevant to beta 14 or any
future release. If you don't see that your ticket number is mentioned here
and it was not mentioned as being a closed ticket or bug fix in the beta 13
distribution, you should assume it is open. Some of these open tickets will
be closed as bug fixes. A few will remain open as they are feature
enhancements. These feature enhancements will be discussed on this list
when I am ready to start outlining the details of release 2.5.
------------------------------------------------------------------------------
Ticket 7 from Fredrik Nyman <
[email protected]> concerns problems
making the ftpaccess file work on IRIX 5.3. I can't reproduce this since
I don't have access to IRIX and other who do don't report this as being
a problem. My guess is that there is no "-a" at the end of the /etc/inetd.conf
line for starting ftpd. [I should have closed this sooner, but didn't.]
------------------------------------------------------------------------------
Ticket 9 from Frank Jacquette <
[email protected]> reports a problem
compiling 2.4.2 on AIX. This problem is known to have been addressed on or
before beta 13 so this ticket is closed.
------------------------------------------------------------------------------
Ticket 39 from Nathan Neulinger <
[email protected]> concerns a problem
with signal 10 aborts on HP/UX. I believe this problem was fixed in beta 13.
I am closing this ticket since I can't reproduce his problem without access
to HP/UX.
------------------------------------------------------------------------------
Ticket 48 from Scott Mulligan <
[email protected]> was a request to
talk to me about something. We never made contact. He didn't acknowledge
my followup message. I am closing this ticket.
------------------------------------------------------------------------------
Ticket 68 from <
[email protected]> was not a bug report but a request for
more assistance in understanding how virtual ftp support works on wu-ftpd.
This ticket is closed since it is not a bug report.
------------------------------------------------------------------------------
Ticket 99 from Becki Kain <
[email protected]> offered some
suggeestions for the configuration of wu-ftpd on Digital Unix. These changes
were already included in beta 13. This ticket is closed.
------------------------------------------------------------------------------
Ticket 101 from Ian Willis <
[email protected]> askes about the use of "user@" and
"user@host" conventions for anonymous ftp. This is not a bug report.
------------------------------------------------------------------------------
Ticket 116 from James Ford <
[email protected]> offers to compile wu-ftpd
on some AIX machines. This is not a bug report. However, I would welcome
any reports concerning AIX compliations.
------------------------------------------------------------------------------
Tickets 127, 171 & 240 from Becki Kain <
[email protected]> offers to
compile wu-ftpd on Digital Unix 4.0. This is not a bug report. However, I
would welcome any reports concerning Digital Unix compliations. So, Becki,
go ahead and compile away. Send me a report after you do it.
------------------------------------------------------------------------------
Ticket 128 from Bernhard Rosenkraenzer <
[email protected]> reports
that ftpaccess is not being seen on Linux. However, he does not provide
any information concerning the /etc/inetd.conf line for starting ftpd.
Since I can't reproduce this bug on Linux, this ticket is closed.
------------------------------------------------------------------------------
Ticket 148 from Ian Willis <
[email protected]> suggested a modification for Beta 12
that was already added, but I apparently didn't notice his ticket until this
go round. Since this issue has been addressed, the ticket is closed. [The
change was specific for SCO 5 and concerned defining SIGURG as SIGUSR1.]
------------------------------------------------------------------------------
Ticket 150 from
[email protected] offers to compile wu-ftpd
on some AIX machines. This is not a bug report. However, I would welcome
any reports concerning AIX compliations.
------------------------------------------------------------------------------
Ticket 151 from
[email protected] (Marek Michalkiewicz)
reported a bug in Virtual Root processing that has been fixed prior to beta
14 release. The bug in attempting to reuse space allocated to pw->pw-dir
instead of freeing and resizing it to a size that can hold the virtual root
directory. This ticket is closed.
------------------------------------------------------------------------------
Ticket 176 from Danielle Hopkins <
[email protected]> report that
compiling beta 12 on Digital Unix 3.2 with enhanced security is not working.
I believe this issue was resolved in beta 13.
------------------------------------------------------------------------------
Ticket 200 from Alvaro Fdez Lago <
[email protected]> reports
success building beta-12 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 202 from Andrew Maltsev <
[email protected]> reported the duplicate printf
selector when a bad shell reply was going to be made. This was fixed before
beta-14 and is now closed.
------------------------------------------------------------------------------
Ticket 213 from Randall J. Wormser <
[email protected]> didn't read
the NOTES file concerning the use of "-a" in /etc/inetd.conf in order to
get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 230 from Jon Madison <
[email protected]> reports successful compilation
of beta 12 on IRIX 6.2 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 245 from Kevin Hoffer <
[email protected]> didn't read
the NOTES file concerning the use of "-a" in /etc/inetd.conf in order to
get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 258 from Michael E Quan <
[email protected]> appears to be another
person who didn't read the NOTES file concerning the use of "-a" in
/etc/inetd.conf in order to get ftpd to use the ftpaccess file and the
various enhancements.
------------------------------------------------------------------------------
Ticket 259 from <
[email protected]> appears to be another person who didn't
read the NOTES file concerning the use of "-a" in /etc/inetd.conf in order
to get ftpd to use the ftpaccess file and the various enhancements.
------------------------------------------------------------------------------
Ticket 261 from Jon Madison <
[email protected]> reports successful complilation
of beta 13 on IRIX 6.2 without changes. This is not a bug report, but
I do appreciate getting these types of messages.
------------------------------------------------------------------------------
Ticket 268 from Andrew R. Orndorff <
[email protected]>
offered some patches for AIX, but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 273 from Usuario-Moisis <
[email protected]> wants to know how
to use BISON in place of YACC on AIX. I don't know. I have to close this
ticket. Maybe someone else can help him.
------------------------------------------------------------------------------
Ticket 278 from Ignacio de Cordoba <
[email protected]> is having problems
getting "ls" and "dir" to work, which is a common problem that usually
involves properly setting up the environment. It is not a wu-ftpd problem.
------------------------------------------------------------------------------
Ticket 280 from Hannu Laurila <
[email protected]> illustrates a common
misconception about the use of a dash as the first character in a password.
This is a feature to turn off extended messages. If the user has a dash as the
first character of his/her password, then that dash must be preceeded with
another dash as an "escape" character to insure that the password is correctly
understood. This ticket is closed.
------------------------------------------------------------------------------
Ticket 291 from Sergio Javier Klarreich <
[email protected]> appeared to
just be a pleasant greeting. It does not appear to report a bug report.
------------------------------------------------------------------------------
Ticket 293 from Gary Mills <
[email protected]> reported a problem with
an extra %s in a printf that was in beta 12 but fixed in beta 13. This ticket
is closed.
------------------------------------------------------------------------------
Ticket 296 from Jim Easton <
[email protected]> bet a month's salary that
there was an alias on my development platforms for cc. He was wrong, but
I asked him to give the money to charity. I don't know if he did.
------------------------------------------------------------------------------
Ticket 318 from John R. Long <
[email protected]> illustrates a common
misconception about the use of a dash as the first character in a password.
This is a feature to turn off extended messages. If the user has a dash as the
first character of his/her password, then that dash must be preceeded with
another dash as an "escape" character to insure that the password is correctly
understood. This ticket is closed.
------------------------------------------------------------------------------
Ticket 321 from Are Bryne <
[email protected]> asked a variety of questions
about the upload directive in ftpaccess. I have answered him in private mail.
This ticket is closed.
------------------------------------------------------------------------------
Ticket 324 from Johannes Ruscheinski <
[email protected]> offered
some patches for Linux, but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 331 from Emil Isberg <
[email protected]> noted that he was having
no problems with beta-13 on Solaris 2.5 or 2.5.1.This is not a bug report, but
I do appreciate getting these types of messages. Also, beta-14 is the first
release of the server to be tested by me on Solaris 2.5.1, so it will be
the first one for which I can accept bug reports with any hopes of reproducing
it.
------------------------------------------------------------------------------
Ticket 351 from <
[email protected]> is trying to setup "guestgroup"
and has apparently failed to do so. I have directed him to the FAQ and have
heard nothing more from him. So, I am closing this ticket.
------------------------------------------------------------------------------
Tickets 352 & 353 from Frank Winkler <
[email protected]> is trying to setup
the server on Solaris, but apparently does not have all the devices and
shared libaries in place to make it possible for "ls" to work. I suggested
some things for him to investigate, but have heard nothing further. I am
closing this ticket.
------------------------------------------------------------------------------
Ticket 363 from Gary Mills <
[email protected]> is complaining about
about the use of a dash as the first character in a password being used to
turn off extended messages. Since this feature has been part of the server
long before I took over maintenance, I am not going to change the behavior
in this release. That's just the way it has to be. If the folks on the
mailing list can come up with a better solution that we can implement in
a future release, I am willing to consider it, but not for release 2.4.2
or 2.4.3. This ticket is closed.
------------------------------------------------------------------------------
Ticket 366 from Paul Whittenburg <
[email protected]> offers some documentation
fixes for the ftpaccess page but never sent them. I have closed this ticket.
However, I do hope he will send the patches along.
------------------------------------------------------------------------------
Ticket 367 from Jun-ichiro Itoh <
[email protected]> reported a problem with
an extra %s in a printf that was in beta 12 but fixed in beta 13. This ticket
is closed.
------------------------------------------------------------------------------
From
[email protected] Wed Jul 9 05:36:07 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id FAA13421;
Wed, 9 Jul 1997 05:28:50 -0500 (CDT)
Received: from apollo.is.co.za (apollo.is.co.za [196.4.160.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id FAA13458
for <
[email protected]>; Wed, 9 Jul 1997 05:24:18 -0500 (CDT)
Received: from admin.is.co.za (admin.is.co.za [196.23.0.9]) by apollo.is.co.za (8.8.6/8.7.5/IShub#2) with ESMTP id MAA00041; Wed, 9 Jul 1997 12:24:08 +0200 (GMT)
Received: (from oskar@localhost) by admin.is.co.za (8.8.6/8.7.3/ISsubsidiary#1) id MAA05960; Wed, 9 Jul 1997 12:24:07 +0200 (GMT)
Message-Id: <
[email protected]>
Date: Wed, 9 Jul 1997 12:24:06 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Oskar Pearson)
To:
[email protected]
Cc:
[email protected]
Subject: Re: WU-FTP & ls
In-Reply-To: <
[email protected]>; from Anthony McGarr on Jul 8, 1997 15:18:41 -0400
References: <
[email protected]>
Mime-Version: 1.0
X-Mailer: Mutt 0.56e
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi
> space confindment. We have over 3000 users and it would require about
> 1/2
> meg, in each $HOME dir to set up the "~/bin/ls" ( and any other
> executable
> needed ) so they would be able to view the contens of their directory.
We did the following:
/home/some-customer
/home/some-other
/home/lib
/home/bin
/home/etc
..
We then chrooted them to /home and used the ACL feature in solaris...
thus they can't change to anyone else's directories in /home, and they
can't fiddle in the real /bin /usr/bin etc...
man getfacl and man setfacl I belive.
Also check for "acl" on www.sun.com's web site
Oskar
From
[email protected] Thu Jul 10 15:18:09 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA26624;
Thu, 10 Jul 1997 15:11:24 -0500 (CDT)
Received: from montgomerybell.com (montgomerybell.com [38.242.97.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA26705
for <
[email protected]>; Thu, 10 Jul 1997 15:03:38 -0500 (CDT)
Received: from localhost (halacha@localhost)
by montgomerybell.com (8.8.5/8.8.5) with SMTP id PAA00338
for <
[email protected]>; Thu, 10 Jul 1997 15:03:34 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 10 Jul 1997 15:03:34 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Alan Halachmi <
[email protected]>
To: wu-ftpd list <
[email protected]>
Subject: Guestgroup problems
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I just setup my ftpaccess file and guestgroup, but when those people try
to login they get:
550 Can't set guest privileges
Login failed.
Can anyone help me w/ this?
Thanks,
Alan
From
[email protected] Fri Jul 11 02:34:10 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id CAA04377;
Fri, 11 Jul 1997 02:24:18 -0500 (CDT)
Received: from niki.isdnet.net (
[email protected] [194.149.160.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id CAA02042
for <
[email protected]>; Fri, 11 Jul 1997 02:16:59 -0500 (CDT)
Received: (from mat@localhost) by niki.isdnet.net (8.8.4/8.7.5) id JAA08634; Fri, 11 Jul 1997 09:16:47 +0200 (MET DST)
Message-Id: <
[email protected]>
Date: Fri, 11 Jul 1997 09:16:47 +0200 (MET DST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Mathieu Guillaume <
[email protected]>
To: Alan Halachmi <
[email protected]>
Cc: wu-ftpd list <
[email protected]>
Subject: Re: Guestgroup problems
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
That probably means the homedir you declared in the password file for
this user does not exist.
______ ___ _ _ ______
\ \ | ( '| \ _ | |_____/ Mathieu Guillaume
) ) | \ | | /|/| |/ -|- |____/ ISDnet
/_____/ _|_'_)|_/ | |/|_/ |/ |___/
[email protected]
On Thu, 10 Jul 1997, Alan Halachmi wrote:
> I just setup my ftpaccess file and guestgroup, but when those people try
> to login they get:
> 550 Can't set guest privileges
> Login failed.
>
> Can anyone help me w/ this?
> Thanks,
> Alan
>
From
[email protected] Fri Jul 11 22:31:55 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA09717;
Fri, 11 Jul 1997 22:25:13 -0500 (CDT)
Received: from academ.com (
[email protected] [198.137.249.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA10239
for <
[email protected]>; Fri, 11 Jul 1997 22:21:07 -0500 (CDT)
Received: (from sob@localhost)
by academ.com (8.8.5/8.8.5) id WAA24114
for
[email protected]; Fri, 11 Jul 1997 22:21:07 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Fri, 11 Jul 1997 22:21:07 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: 2.4.2 beta 14 is not soup yet
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Sorry, it is just not ready. I won't release it until it is ready. Believe me
I want to release it, but not until I think it is ready.
Next target date is the 16th. Two pre-releases have been rolled out, and they
are looking ok. I still have a few dozen tickets to process, but the main
bug fixes are integrated now.
From
[email protected] Mon Jul 14 11:11:22 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA23223;
Mon, 14 Jul 1997 11:05:20 -0500 (CDT)
Received: from vger.nsu.edu (vger.nsu.edu [192.68.217.10])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA19019
for <
[email protected]>; Mon, 14 Jul 1997 11:01:48 -0500 (CDT)
Received: from www.acc.nsu.edu by vger.nsu.edu with SMTP ;
Mon, 14 Jul 97 11:58:54 EST
Message-Id: <
[email protected]>
Date: Mon, 14 Jul 1997 11:53:17 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Ronald Nelson <
[email protected]>
To:
[email protected]
Subject: "Unable to get server files: The request timed out"
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
X-Mailer: Mozilla 4.0b4 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
**Trying to view WU-ftpd guest accounts directories**
I have setup guest accounts on my server, but I have trouble viewing the
files.
It seems as though everything is working perfectly until the "LIST"
command
is issued (/bin/ls). Then, I receive a message from my FTP software
(Reflections FTP (client)) displaying "Unable to get server files: The
request
timed out"
Any suggestions on solving this problem would be greatly appreciated. I
am using a
SUN Netra with Solaris 2.5.1
Thank You in advance
____________________________
Mr. Ronald Nelson
NSU
757-683-2533
757-683-9051
_____________________________________
From
[email protected] Mon Jul 14 18:45:24 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id SAA31264;
Mon, 14 Jul 1997 18:38:43 -0500 (CDT)
Received: from pawn.virtuo.net ([207.114.201.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id SAA30503
for <
[email protected]>; Mon, 14 Jul 1997 18:32:49 -0500 (CDT)
Received: from pawn.virtuo.net ([127.0.0.1]) by pawn.virtuo.net
(post.office MTA v2.0 0813 ID# 0-0U10) with SMTP id AAA1075
for <
[email protected]>; Mon, 14 Jul 1997 16:33:29 -0700
Message-Id: <
[email protected]>
Date: Mon, 14 Jul 1997 16:33:29 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: "Behrang M. Garakani" <
[email protected]>
To:
[email protected]
Subject: Restarting FTP
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender: "System Administrator" <
[email protected]>
X-Mailer: Mozilla 3.01 (X11; I; BSD/OS 3.0 i386)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I get the following error when attempting to restart ftpd:
getpeername (./ftpd): Socket operation on non-socket.
FTP won't restart now, even with a reboot. Any suggestions would be
appreciated.
Behrang
From
[email protected] Tue Jul 15 14:26:38 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA18705;
Tue, 15 Jul 1997 14:19:37 -0500 (CDT)
Received: from orion.means.net (orion.means.net [206.9.64.100])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA14270
for <
[email protected]>; Tue, 15 Jul 1997 14:15:26 -0500 (CDT)
Received: from localhost (rhayden@localhost) by orion.means.net (8.8.5/8.8.3) with SMTP id OAA21230 for <
[email protected]>; Tue, 15 Jul 1997 14:20:25 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Tue, 15 Jul 1997 14:20:25 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Robert Hayden-0797-EMP-HSE <
[email protected]>
To: WU-FTPD Mailing List <
[email protected]>
Subject: Holding users at bay
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-PGP-Fingerprint: D1 0B 53 C9 9A 2F 29 A5 76 2A 5A F6 EC 27 AB B9
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Howdy. This is a relatively simple question but I can't seem to find any
documentation that explains the process.
One of our clients has a 1400-user alpha running OSF that is set up as a
non-shell machine with FTP only for web pages. A couple of his users have
recently come on (and been kicked off) for FTPing in and going "prowling"
(his words) through the system, downloading the /etc/passwd file, looking
at logs, etc.
Since shadowing the password file on a system that is already running is
largely an exercise in hair loss (at least it would explain mine), the
client was looking for a replacement ftpd that will lock people into their
own directories and keep them from "prowling".
Can wu-ftpd do this? And if so, what's the trick for getting it working?
I assume it's by some use of the chroot command, but after that, the
configuration fails.
Thanks for your help
=-=-=-=-=-=
Robert Hayden
[email protected]
IP Network Administrator (612) 230-4416
MEANS Telcom
From
[email protected] Tue Jul 15 14:42:35 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA19625;
Tue, 15 Jul 1997 14:35:35 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA21199
for <
[email protected]>; Tue, 15 Jul 1997 14:33:58 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id OAA30825;
Tue, 15 Jul 1997 14:33:58 -0500
Message-Id: <
[email protected]>
Date: Tue, 15 Jul 1997 14:33:58 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Robert Hayden-0797-EMP-HSE <
[email protected]>
Cc: WU-FTPD Mailing List <
[email protected]>
Subject: Re: Holding users at bay
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
guest ftp -- see below.
-- Michael
On Tue, 15 Jul 1997, Robert Hayden-0797-EMP-HSE wrote:
> One of our clients has a 1400-user alpha running OSF that is set up as a
> non-shell machine with FTP only for web pages. A couple of his users have
> recently come on (and been kicked off) for FTPing in and going "prowling"
> (his words) through the system, downloading the /etc/passwd file, looking
> at logs, etc.
>
> Can wu-ftpd do this? And if so, what's the trick for getting it working?
> I assume it's by some use of the chroot command, but after that, the
> configuration fails.
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Tue Jul 15 14:54:12 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA15584;
Tue, 15 Jul 1997 14:48:08 -0500 (CDT)
Received: from montgomerybell.com (montgomerybell.com [38.242.97.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA22217
for <
[email protected]>; Tue, 15 Jul 1997 14:45:13 -0500 (CDT)
Received: from localhost (halacha@localhost)
by montgomerybell.com (8.8.5/8.8.5) with SMTP id OAA27461;
Tue, 15 Jul 1997 14:44:41 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Tue, 15 Jul 1997 14:44:40 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Alan Halachmi <
[email protected]>
To: Robert Hayden-0797-EMP-HSE <
[email protected]>
Cc: WU-FTPD Mailing List <
[email protected]>
Subject: Re: Holding users at bay
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Yes, WU-FTPd CAN do this. Read the documentation, but the trick is a /./
in the passwd file.
Alan Halachmi, Head of Internet Services
Solaris Administrator/ Web Design
Montgomery Bell Academy
mailto:
[email protected] http://www.montgomerybell.com
On Tue, 15 Jul 1997, Robert Hayden-0797-EMP-HSE wrote:
> Howdy. This is a relatively simple question but I can't seem to find any
> documentation that explains the process.
>
> One of our clients has a 1400-user alpha running OSF that is set up as a
> non-shell machine with FTP only for web pages. A couple of his users have
> recently come on (and been kicked off) for FTPing in and going "prowling"
> (his words) through the system, downloading the /etc/passwd file, looking
> at logs, etc.
>
> Since shadowing the password file on a system that is already running is
> largely an exercise in hair loss (at least it would explain mine), the
> client was looking for a replacement ftpd that will lock people into their
> own directories and keep them from "prowling".
>
> Can wu-ftpd do this? And if so, what's the trick for getting it working?
> I assume it's by some use of the chroot command, but after that, the
> configuration fails.
>
> Thanks for your help
>
>
> =-=-=-=-=-=
> Robert Hayden
[email protected]
> IP Network Administrator (612) 230-4416
> MEANS Telcom
>
>
From
[email protected] Tue Jul 15 15:24:34 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA23681;
Tue, 15 Jul 1997 15:19:23 -0500 (CDT)
Received: from nucleus.com (
[email protected] [199.45.65.129])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA23760
for <
[email protected]>; Tue, 15 Jul 1997 15:16:23 -0500 (CDT)
Received: from wwshop.calgary.net (wwshop.calgary.net [207.34.69.245]) by nucleus.com (8.8.5/8.8.5) with SMTP id OAA04185; Tue, 15 Jul 1997 14:22:01 -0600 (MDT)
Message-Id: <
[email protected]>
Date: Wed, 16 Jul 1997 14:17:42 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: Jim Hribnak <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: Holding users at bay
In-Reply-To: <
[email protected]
m>
References: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/enriched; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
At 02:44 PM 7/15/97 -0500, you wrote:
>Yes, WU-FTPd CAN do this. Read the documentation, but the trick is
a /./
>in the passwd file.
>
>Alan Halachmi, Head of Internet Services
>Solaris Administrator/ Web Design
Yes but what will that do for the actual web stuff for that user..
IE::
/bbsusers/<<username>/public-html
By default if a use ris ftping into his account his route SHOULD be
/bbsusers/<<username> and thats is this way it should not screw up the
WWW dir
-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv
iQA/AwUBM80sZcdO8zaDKAkgEQIcDACgwmxaRx1XhU9jfuv8BqStJZlF0oIAn2lU
++9pF1S+59SrfeJnrkispvW9
=2hPM
-----END PGP SIGNATURE-----
---
<bold>Jim Hribnak
</bold>Manager Communication Services, Nucleus Inc
Calgary 403-541-9400 263 Lines
Edmonton 403-413-1600 30 Lines
Voice 403-209-0000
Internet abuse:
[email protected]
[email protected]
Sick of UCE, JunkEmail? check out www.abuse.net
From
[email protected] Fri Jul 18 14:26:36 1997
Received: from relay5.UU.NET by relay5.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyiv22791; Tue, 15 Jul 1997 17:28:10 -0400 (EDT)
Received: from wugate.wustl.edu by relay5.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyiv22747; Tue, 15 Jul 1997 17:28:06 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA01011;
Tue, 15 Jul 1997 16:15:20 -0500 (CDT)
Received: from vger.nsu.edu (vger.nsu.edu [192.68.217.10])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA32383
for <
[email protected]>; Tue, 15 Jul 1997 16:13:01 -0500 (CDT)
Received: from www.acc.nsu.edu by vger.nsu.edu with SMTP ;
Tue, 15 Jul 97 17:08:43 EST
Message-Id: <
[email protected]>
Date: Tue, 15 Jul 1997 17:03:05 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Ronald Nelson <
[email protected]>
To:
[email protected]
Subject: "Unable to get server files: The request timed out"
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
X-Mailer: Mozilla 4.0b4 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
**Trying to view WU-ftpd guest accounts directories**
I have setup guest accounts on my server, but I have trouble viewing the
files.
It seems as though everything is working perfectly until the "LIST"
command is issued (/bin/ls). Then, I receive a message from my FTP
software
(Reflections FTP (client)) displaying "Unable to get server files: The
request timed out"
Any suggestions on solving this problem would be greatly appreciated. I
am using a SUN Netra with Solaris 2.5.1
Thank You in advance
____________________________
Mr. Ronald Nelson
NSU
757-683-2533
757-683-9051
[email protected]
_____________________________________
From
[email protected] Fri Jul 18 14:27:15 1997
Received: from relay5.UU.NET by relay5.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcynd17394; Wed, 16 Jul 1997 21:19:18 -0400 (EDT)
Received: from wugate.wustl.edu by relay5.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcynd17380; Wed, 16 Jul 1997 21:19:17 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id UAA30446;
Wed, 16 Jul 1997 20:11:57 -0500 (CDT)
Received: from 1stomni.1stomni.com (boston.1stomni.com [207.152.152.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id UAA30463
for <
[email protected]>; Wed, 16 Jul 1997 20:10:20 -0500 (CDT)
Received: from 206.173.20.239 (ts020d11.cht-ma.concentric.net [206.173.20.239]) by 1stomni.1stomni.com (8.7.5/8.7.2) with SMTP id VAA28992 for <
[email protected]>; Wed, 16 Jul 1997 21:12:12 -0500 (EST)
Message-Id: <
[email protected]>
Date: Wed, 16 Jul 1997 21:04:36 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From: David Borgesen <
[email protected]>
To:
[email protected]
Subject: Need wu-ftpd expert
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 3.0Gold (Macintosh; I; PPC)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I am looking for a wu-ftpd expert to install/configure wu-ftpd on a
Solaris 2.5.1 machine with virtual user support.
Person should have or administer a solaris machine and be farmiliar with
all of the functions of wu-ftpd.
Please e-mail or call
Thanks,
David Borgesen
[email protected]
617-788-9382
1stOmni
From
[email protected] Fri Jul 18 14:27:25 1997
Received: from relay6.UU.NET by relay6.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyjk09240; Tue, 15 Jul 1997 21:00:23 -0400 (EDT)
Received: from wugate.wustl.edu by relay6.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyjk09226; Tue, 15 Jul 1997 21:00:21 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA21265;
Tue, 15 Jul 1997 19:54:08 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id TAA12837
for <
[email protected]>; Tue, 15 Jul 1997 19:49:49 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id TAA05262;
Tue, 15 Jul 1997 19:49:39 -0500
Message-Id: <
[email protected]>
Date: Tue, 15 Jul 1997 19:49:39 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: nothing can been seen from netscape
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Your external 'ls' is messed up. See the available docs and the guest
howto for more info on how to set it up.
-- Michael
On Sun, 16 Jul 1995
[email protected] wrote:
> I have configured virtual anonymous ftp by adding the "virtual"
> tag to ftpaccess.Access from normal ftp software are satisfied but those
> access from browser such netscape can get nothing except the welcome
> message.None of the directories can been seen .
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Fri Jul 18 14:27:26 1997
Received: from relay1.UU.NET by relay1.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcymo15976; Wed, 16 Jul 1997 17:34:41 -0400 (EDT)
Received: from wugate.wustl.edu by relay1.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcymo15958; Wed, 16 Jul 1997 17:34:38 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA14265;
Wed, 16 Jul 1997 16:24:38 -0500 (CDT)
Received: from pts.co.uk (ptsplc.pts.co.uk [193.119.197.88])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA11134
for <
[email protected]>; Wed, 16 Jul 1997 16:16:38 -0500 (CDT)
Received: from simon.pts.co.uk ([193.119.197.191]) by pts.co.uk (8.6.8.1/SCA-6.6) with ESMTP
id WAA17480 for <
[email protected]>; Wed, 16 Jul 1997 22:18:16 +0100
Message-Id: <
[email protected]>
Date: Wed, 16 Jul 1997 22:11:14 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Simon Hill <
[email protected]>
To:
[email protected]
Subject: dot files
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.01 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Is it possible to hide dot files with wu-ftpd ?
Does anybody know of any software for mirroring ftp sites ?
Thanks.
Simon Hill
PtS.
From
[email protected] Fri Jul 18 14:27:35 1997
Received: from relay1.UU.NET by relay1.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcysj06335; Fri, 18 Jul 1997 07:25:53 -0400 (EDT)
Received: from wugate.wustl.edu by relay1.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcysj06330; Fri, 18 Jul 1997 07:25:51 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id GAA22100;
Fri, 18 Jul 1997 06:18:23 -0500 (CDT)
Received: from opale (opale.cvf.fr [194.250.196.33])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id GAA18953
for <
[email protected]>; Fri, 18 Jul 1997 06:14:41 -0500 (CDT)
Received: from javier.online.fr by opale (SMI-8.6/SMI-SVR4)
id NAA16361; Fri, 18 Jul 1997 13:10:06 +0200
Received: by javier.online.fr with Microsoft Mail
id <
[email protected]>; Fri, 18 Jul 1997 13:11:49 +-200
Message-Id: <
[email protected]>
Date: Fri, 18 Jul 1997 13:11:47 +-200
Reply-To:
[email protected]
Sender:
[email protected]
From: Philippe Guyot <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Subject: ftpd , AIX 4.1.4 & timestamp
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by wugate.wustl.edu id GAA25409
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Bonjour a tous!
Hello all!
well I have just installed the beta13 version on my AIX 4.1.4 and it works well except that hours and times (displayed by "dir" for instance) are GMT and not NFT-1DFT as the rest of the AIX does.
I tried to copy /etc/environment in ~ftp/etc/environment but it was no success.
I also tried to set TZ in a .profile in ~ftp but it was the same (in fact I did not believe that it could be successful).
Thanks for help....
Philippe Guyot
CVF Bordeaux France
+ 33 5 56 01 98 00
From
[email protected] Fri Jul 18 14:27:26 1997
Received: from relay3.UU.NET by relay3.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcypk04984; Thu, 17 Jul 1997 12:14:46 -0400 (EDT)
Received: from wugate.wustl.edu by relay3.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcypk04938; Thu, 17 Jul 1997 12:14:41 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA31672;
Thu, 17 Jul 1997 11:07:15 -0500 (CDT)
Resent-Date: Thu, 17 Jul 1997 11:07:15 -0500 (CDT)
Resent-Message-Id: <
[email protected]>
Received: from academ.com (
[email protected] [198.137.249.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id LAA03902
for <
[email protected]>; Thu, 17 Jul 1997 11:05:47 -0500 (CDT)
Received: (from sob@localhost)
by academ.com (8.8.5/8.8.5) id LAA08253
for
[email protected]; Thu, 17 Jul 1997 11:05:45 -0500 (CDT)
Received: (from nobody@localhost)
by academ.com (8.8.5/8.8.5) id WAA04647
for owner; Wed, 16 Jul 1997 22:21:50 -0500 (CDT)
Received: from LV.Levels.UniSA.Edu.Au (
[email protected] [130.220.16.6])
by academ.com (8.8.5/8.8.5) with ESMTP id WAA04642
for <
[email protected]>; Wed, 16 Jul 1997 22:21:38 -0500 (CDT)
Received: from LVLB09.Levels.UniSA.Edu.Au
("port 2341"@LVLB09.Levels.UniSA.Edu.Au)
by Levels.UniSA.Edu.Au (PMDF V5.0-7 #20435)
id <
[email protected]> for
[email protected]; Thu,
17 Jul 1997 12:51:27 +0930
Message-Id: <
[email protected]>
Date: Thu, 17 Jul 1997 12:51:33 +0930
Reply-To:
[email protected]
Sender:
[email protected]
From: Philip Williams <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: [ACADEM.COM #709] wu-ftpd-2.4.2-beta-13
Resent-To:
[email protected]
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Resent-From:
[email protected] (Stan Barber)
X-Mailer: Mail User's Shell (7.2.5 10/14/92)
X-Authentication-Warning: academ.com: nobody set sender to
[email protected] using -f
X-Mailer: Microsoft Internet Mail 4.70.1155
X-Msmail-Priority: Normal
X-Priority: 3
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I am trying to downlaod a copy of the above mentioned file from your web
site without any success. I get an extended error when I click "dowload
this software" on the /academ/wu-ftpd/ web page.
Could you help me to locate this file on your site please?
Philip Williams
----------------------------------------------------------------------------
--
Philip Williams
Unix Support Team Fax: 61 8 8302 5800
IT Unit Tel: 61 8 8302
3407
University of South Australia Email:
[email protected]
From
[email protected] Fri Jul 18 14:27:45 1997
Received: from relay3.UU.NET by relay3.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcynx03669; Thu, 17 Jul 1997 02:29:07 -0400 (EDT)
Received: from wugate.wustl.edu by relay3.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcynx03664; Thu, 17 Jul 1997 02:29:06 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id BAA21701;
Thu, 17 Jul 1997 01:22:17 -0500 (CDT)
Received: from k2.lund.se (
[email protected] [193.14.211.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id BAA21173
for <
[email protected]>; Thu, 17 Jul 1997 01:15:03 -0500 (CDT)
Received: from localhost (johan@localhost [127.0.0.1])
by k2.lund.se (8.8.5/8.8.5) with SMTP id HAA31278;
Thu, 17 Jul 1997 07:14:56 +0100
Message-Id: <
[email protected]>
Date: Thu, 17 Jul 1997 07:14:48 +0100 (BST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Johan Harvyl <
[email protected]>
To: Steve Lawrence <
[email protected]>
Cc:
[email protected]
Subject: Re: More delays
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
-----BEGIN PGP SIGNED MESSAGE-----
On Wed, 16 Jul 1997, Steve Lawrence wrote:
> Hello, Everybody!
>
> I am new to the list, and new to wu-ftpd, and I have Two questions I hope
> you can answer:
>
> We currently have B11 of wu-ftpd on our sun sparc 20.
>
> I would like to restrict users to thier home directorys when they ftp to
> the server so they can't snoop around. How do I do this?
It sounds to me as if you would like to set up their ftp-sessions just as
with anonymous ftp. There is an option called guestgroup that you can have
a look at in the manpages. If user johan is a member of a guestgroup
(specified in /etc/ftpaccess or similar) the server will perform a
chroot() in that users home directory and make that the "/" dir in the
ftp-session.
Hope this will work for you, it does for me.
> Second, what is the latest release, and should I be updating the one I have
> installed yet?
I really can't give you any advice here, I can just say that I have had no
problems with the beta-13 which in my knowledge is the latest release.
regards,
Johan Harvyl
Email:
[email protected]
URL:
http://k2.lund.se/~johan
Fingerprints: 32 24 A4 4B 55 A6 47 7B 47 D7 D6 15 BD 15 EE 6E
- ---
With a PC, I always felt limited by the software available.
On Unix, I am limited only by my knowledge.
Peter J. Schoenster
-----BEGIN PGP SIGNATURE-----
Version: 2.6.3i
Charset: cp850
iQCVAwUBM824WhRIt8WyeZyRAQHEowP/dPSoTxh6WysyPDSrPBqarUdI/JLlw3PA
MEJIhHYCL1DK+nu4tSjemVDD3zy/Rjrk2mh+94EQF1s9mr+MmFKl6eV8MAn5tRjg
NSP09rM1sdcM14VuE2LTVgkn9YgiL85yQSbs6hi6UF87RtFYWn+Cl4aU8Cuvkifz
KjhOb3yUugE=
=dpSo
-----END PGP SIGNATURE-----
From
[email protected] Fri Jul 18 14:27:55 1997
Received: from relay6.UU.NET by relay6.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcykb22738; Wed, 16 Jul 1997 01:19:22 -0400 (EDT)
Received: from wugate.wustl.edu by relay6.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcykb22721; Wed, 16 Jul 1997 01:19:20 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id AAA07883;
Wed, 16 Jul 1997 00:08:59 -0500 (CDT)
Received: from kitten.ndscs.nodak.edu (
[email protected] [134.129.32.34])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id XAA07594
for <
[email protected]>; Tue, 15 Jul 1997 23:57:08 -0500 (CDT)
Received: from localhost (tinnes@localhost)
by kitten.ndscs.nodak.edu (8.8.5/8.8.5) with SMTP id AAA00295
for <
[email protected]>; Wed, 16 Jul 1997 00:07:02 -0500
Message-Id: <
[email protected]>
Date: Wed, 16 Jul 1997 00:07:02 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Mike <
[email protected]>
To: wu-ftpd mailing list <
[email protected]>
Subject: can't login
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I just installed wu-ftpd-2.4.2b13-1.i386.rpm and it will not allow normal
system users to login. Anonymous seems to work other than it's constant
complaint about an invalid email address for the password. Any advice?
________________
/ \__ ___/ Mike Tinnes
/ \ / \| |
[email protected]
/ Y \ |
[email protected]
\____|__ /____|
http://kitten.ndscs.nodak.edu/tinnes
\/
From
[email protected] Fri Jul 18 14:28:01 1997
Received: from relay5.UU.NET by relay5.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcysq09860; Fri, 18 Jul 1997 09:05:20 -0400 (EDT)
Received: from wugate.wustl.edu by relay5.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcysq09834; Fri, 18 Jul 1997 09:05:17 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id HAA30776;
Fri, 18 Jul 1997 07:58:12 -0500 (CDT)
Received: from noaardc.noaa.gov (noaardc.noaa.gov [140.90.27.61])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id HAA24173
for <
[email protected]>; Fri, 18 Jul 1997 07:56:10 -0500 (CDT)
Message-Id:
<007A133CF6716019*/c=US/admd=ATTMAIL/prmd=GOV+NOAA/o=CCNWS/s=Matusiewicz/g=Joseph/@MHS>
Date: 18 Jul 1997 08:52:38 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Joseph Matusiewicz <
[email protected]>
To:
[email protected] (Return requested),
[email protected] (Return requested)
Subject: Re: ftpd , AIX 4.1.4 & timestamp
Content-Identifier: 007A133CF6716019
Content-Return: Allowed
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Philippe,
Perhaps my experience with wu-ftpd may help out. The SETPROCTITLE
definition causes wu-ftpd to destroy all environmental variables in
AIX, including the TZ environment variable. To get mine to give the
correct timestamp, I had to recompile after changing the line that
says:
#define SETPROCTITLE
TO
#undef SETPROCTITLE
I'm assuming that beta 13 will behave the same.
Hope this helps....
_
{(ojo)}
|\Q/|
joe matusiewicz \/-\/
national weather service | |
silver spring, md 20910 / /
301.713.0864 ext 174 \ \
[email protected] /__\
______________________________ Reply Separator _________________________________
Subject: ftpd , AIX 4.1.4 & timestamp
Author:
[email protected] at EXTERNAL
Date: 7/18/97 7:49 AM
Bonjour a tous!
Hello all!
well I have just installed the beta13 version on my AIX 4.1.4 and it works well
except that hours and times (displayed by "dir" for instance) are GMT and not
NFT-1DFT as the rest of the AIX does.
I tried to copy /etc/environment in ~ftp/etc/environment but it was no success.
I also tried to set TZ in a .profile in ~ftp but it was the same (in fact I did
not believe that it could be successful).
Thanks for help....
Philippe Guyot
CVF Bordeaux France
+ 33 5 56 01 98 00
From
[email protected] Fri Jul 18 14:28:08 1997
Received: from relay7.UU.NET by relay7.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyrd06607; Thu, 17 Jul 1997 23:15:26 -0400 (EDT)
Received: from wugate.wustl.edu by relay7.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyrd06594; Thu, 17 Jul 1997 23:15:24 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA09595;
Thu, 17 Jul 1997 22:07:50 -0500 (CDT)
Received: from r2d2.ed.gov (
[email protected] [165.224.217.35])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA19610
for <
[email protected]>; Thu, 17 Jul 1997 22:00:17 -0500 (CDT)
Received: from localhost (giao@localhost) by r2d2.ed.gov (8.8.6/8.8.4) with SMTP id XAA04957 for <
[email protected]>; Thu, 17 Jul 1997 23:00:13 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Thu, 17 Jul 1997 23:00:13 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Quynh-Giao Tran <
[email protected]>
To:
[email protected]
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I am trying to set up an anonymous ftp on my machine, I have followed the
instructions in the wu-ftp FAQ, but I couldn't get in as the anonymous
user, it returned the following error:
530 User anonymous unknown.
Login failed.
I have specified in my ftpaccess file that any machine (*) can access
the ftp directory. Thanks in advance for your help.
Giao Tran
From
[email protected] Fri Jul 18 14:28:15 1997
Received: from relay6.UU.NET by relay6.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyme16226; Wed, 16 Jul 1997 15:09:35 -0400 (EDT)
Received: from wugate.wustl.edu by relay6.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyme16206; Wed, 16 Jul 1997 15:09:33 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA31276;
Wed, 16 Jul 1997 13:59:19 -0500 (CDT)
Received: from merix.merix.com (merix.merix.com [198.145.172.40])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id NAA02173
for <
[email protected]>; Wed, 16 Jul 1997 13:57:51 -0500 (CDT)
Received: from sandy.merix.com by merix.merix.com with SMTP
(1.38.110.45/16.2) id AA008330139; Wed, 16 Jul 1997 12:08:59 -0700
Received: by sandy.merix.com (4.1/8.0)
id AA12683; Wed, 16 Jul 97 11:53:52 PDT
Message-Id: <joel-9706161853.AA000710915@sandy>
Date: Wed, 16 Jul 97 11:53:52 PDT
Reply-To:
[email protected]
Sender:
[email protected]
From: Joseph Look <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: connection problem
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Somebody try to connect to our ftp site with ws_ftp LE and got the following
message
Un-successful connection to Merix Corp.
connecting to 198.145.172.40 ...
Connected to 198.145.172.40 port 21
Timer cancelled blocking call
receive error: Blocking call cancelled
Is this our server problem or is this their problem?
Joseph Look
Merix Corporation O/ o~ o_O/ Tel: 503.992.4396
1521 Poplar Lane o/| _______|_______ \ Fax: 503.359.1624
Forest Grove, OR 97116 / \ | | |\ Email:
[email protected]
From
[email protected] Fri Jul 18 14:28:20 1997
Received: from relay3.UU.NET by relay3.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcymc25880; Wed, 16 Jul 1997 14:43:56 -0400 (EDT)
Received: from wugate.wustl.edu by relay3.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcymc25865; Wed, 16 Jul 1997 14:43:54 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA26634;
Wed, 16 Jul 1997 13:03:02 -0500 (CDT)
Received: from gatekeeper.jupiter.com (gatekeeper.jupiter.com [192.77.175.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id NAA28147
for <
[email protected]>; Wed, 16 Jul 1997 13:00:41 -0500 (CDT)
Received: (from smap@localhost) by gatekeeper.jupiter.com (8.7.6/8.7.3) id LAA13010 for <
[email protected]>; Wed, 16 Jul 1997 11:00:23 -0700
Received: from jove.jupiter.com(192.77.175.244) by gatekeeper.jupiter.com via smap (V2.0)
id xma012997; Wed, 16 Jul 97 11:00:01 -0700
Received: from zeus (zeus.jupiter.com) by jupiter.com (4.1/3.1.090690-Jupiter Systems)
id AA01226; Wed, 16 Jul 97 10:58:45 PDT
Received: from localhost by zeus; (5.65v3.2/1.1.8.2/05Mar96-0246PM)
id AA05594; Wed, 16 Jul 1997 10:59:47 -0700
Message-Id: <9707161759.AA05594@zeus>
Date: Wed, 16 Jul 97 10:59:46 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To: wu-ftpd mailing list <
[email protected]>
Subject: file conversions on DEC alpha linux
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Authentication-Warning: gatekeeper.jupiter.com: smap set sender to <
[email protected]> using -f
X-Mailer: exmh version 1.6.9 8/22/96
X-Mts: smtp
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I can't get file conversions to work either.
Has anyone gotten this working on linux on
a DEC alpha?
--
Russell Leefer
Jupiter Systems
Love does not consist in gazing at each other, but in looking outward
together in the same direction. -Antoine de Saint-Exupery
From
[email protected] Fri Jul 18 14:28:24 1997
Received: from relay6.UU.NET by relay6.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcymd12787; Wed, 16 Jul 1997 14:58:20 -0400 (EDT)
Received: from wugate.wustl.edu by relay6.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcymd12761; Wed, 16 Jul 1997 14:58:15 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA27621;
Wed, 16 Jul 1997 12:44:23 -0500 (CDT)
Received: from gatekeeper.jupiter.com (gatekeeper.jupiter.com [192.77.175.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id MAA26940
for <
[email protected]>; Wed, 16 Jul 1997 12:38:40 -0500 (CDT)
Received: (from smap@localhost) by gatekeeper.jupiter.com (8.7.6/8.7.3) id KAA12876 for <
[email protected]>; Wed, 16 Jul 1997 10:38:22 -0700
Received: from jove.jupiter.com(192.77.175.244) by gatekeeper.jupiter.com via smap (V2.0)
id xma012874; Wed, 16 Jul 97 10:38:15 -0700
Received: from zeus (zeus.jupiter.com) by jupiter.com (4.1/3.1.090690-Jupiter Systems)
id AA01079; Wed, 16 Jul 97 10:37:00 PDT
Received: from localhost by zeus; (5.65v3.2/1.1.8.2/05Mar96-0246PM)
id AA05895; Wed, 16 Jul 1997 10:38:01 -0700
Message-Id: <9707161738.AA05895@zeus>
Date: Wed, 16 Jul 97 10:38:00 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To: wu-ftpd mailing list <
[email protected]>
Subject: Redhat Linux on DEC Alpha
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Authentication-Warning: gatekeeper.jupiter.com: smap set sender to <
[email protected]> using -f
X-Mailer: exmh version 1.6.9 8/22/96
X-Mts: smtp
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi, I've got two questions.
First, is anyone else using redhat linux on a DEC alpha unit?
My problem is that ftpd doesn't log anything except
FTP logins, refusals, and logouts. It used to.
This is true for both anonymous and root logins.
I've got the following lines in my ftpaccess file:
log transfers guest,anonymous,real inbound,outbound
log commands guest,anonymous,real
I've tried picking up the latest source, but it won't
compile and run using the standard Makefile.lnx.
--
Russell Leefer
Jupiter Systems
Love does not consist in gazing at each other, but in looking outward
together in the same direction. -Antoine de Saint-Exupery
From
[email protected] Fri Jul 18 14:28:46 1997
Received: from relay6.UU.NET by relay6.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcynx07776; Thu, 17 Jul 1997 02:21:53 -0400 (EDT)
Received: from wugate.wustl.edu by relay6.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcynx07764; Thu, 17 Jul 1997 02:21:51 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id BAA17148;
Thu, 17 Jul 1997 01:10:33 -0500 (CDT)
Received: from k2.lund.se (
[email protected] [193.14.211.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id BAA20553
for <
[email protected]>; Thu, 17 Jul 1997 01:07:11 -0500 (CDT)
Received: from localhost (johan@localhost [127.0.0.1])
by k2.lund.se (8.8.5/8.8.5) with SMTP id HAA31256;
Thu, 17 Jul 1997 07:07:05 +0100
Message-Id: <
[email protected]>
Date: Thu, 17 Jul 1997 07:06:56 +0100 (BST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Johan Harvyl <
[email protected]>
To: Simon Hill <
[email protected]>
Cc:
[email protected]
Subject: Re: dot files
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
-----BEGIN PGP SIGNED MESSAGE-----
On Wed, 16 Jul 1997, Simon Hill wrote:
> Is it possible to hide dot files with wu-ftpd ?
> Does anybody know of any software for mirroring ftp sites ?
>
> Thanks.
> Simon Hill
> PtS.
>
I don't know about hiding .?? files but a mirror perl script can be found
at: sunsite.doc.ic.ac.uk/packages/mirror/mirror-2.8.tar.gz
Johan Harvyl
Email:
[email protected]
URL:
http://k2.lund.se/~johan
Fingerprints: 32 24 A4 4B 55 A6 47 7B 47 D7 D6 15 BD 15 EE 6E
- ---
With a PC, I always felt limited by the software available.
On Unix, I am limited only by my knowledge.
Peter J. Schoenster
-----BEGIN PGP SIGNATURE-----
Version: 2.6.3i
Charset: cp850
iQCVAwUBM822gxRIt8WyeZyRAQENHAP/SMm9x1NqssnEGx95UzhYG407IkoTsFr4
mxmVFeHIsE2SrlrHrIdAuHqbg2fFz1WHY9t2ePGaGmg5SctwEJ74wEmfWDcG7Y0r
bvAbcMEVBLfTc/Dl7loA7lAPRyghYelmBBVpiH0CNbjJPbCz3e/1eowSKMAqyaUO
fHFCkWoOKOI=
=C7NT
-----END PGP SIGNATURE-----
From
[email protected] Fri Jul 18 14:29:24 1997
Received: from relay2.UU.NET by relay2.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyqc08607; Thu, 17 Jul 1997 16:41:28 -0400 (EDT)
Received: from wugate.wustl.edu by relay2.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyqc08517; Thu, 17 Jul 1997 16:41:07 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA28919;
Thu, 17 Jul 1997 15:34:04 -0500 (CDT)
Received: from mwunix.mitre.org (mwunix.mitre.org [128.29.154.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA26849
for <
[email protected]>; Thu, 17 Jul 1997 15:28:24 -0500 (CDT)
Received: from hobbes.mitre.org (hobbes.mitre.org [128.29.163.163])
by mwunix.mitre.org (8.8.5/8.8.5/mitre.0) with SMTP id QAA04198
for <
[email protected]>; Thu, 17 Jul 1997 16:28:23 -0400 (EDT)
Received: by hobbes.mitre.org (5.x/SMI-SVR4)
id AA03832; Thu, 17 Jul 1997 16:24:26 -0400
Message-Id: <
[email protected]>
Date: Thu, 17 Jul 1997 16:24:26 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Robert H'obbes' Zakon)
To:
[email protected]
Subject: dir command does not work for anon user???
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
have just set-up wu-ftpd-2.4 under Solaris2.5.1.
the 'dir' command does not seem to work for anonymous users,
only for regular users. 'ls' works fine for both.
any ideas? have the same config under Solaris2.4 w/o any problems.
Please reply directly.
Thank you,
[email protected]
From
[email protected] Fri Jul 18 14:31:09 1997
Received: from relay2.UU.NET by relay2.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyrf07923; Thu, 17 Jul 1997 23:50:25 -0400 (EDT)
Received: from wugate.wustl.edu by relay2.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyrf07913; Thu, 17 Jul 1997 23:50:19 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA23480;
Thu, 17 Jul 1997 22:43:38 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA26637
for <
[email protected]>; Thu, 17 Jul 1997 22:39:16 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id WAA30580;
Thu, 17 Jul 1997 22:39:03 -0500
Message-Id: <
[email protected]>
Date: Thu, 17 Jul 1997 22:39:03 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: "Robert H'obbes' Zakon" <
[email protected]>
Cc:
[email protected]
Subject: Re: dir command does not work for anon user???
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Your external 'ls' is not working right. The INSTALL doc mentions some
about this, and the guest howto covers it more in depth.
-- Michael
On Thu, 17 Jul 1997, Robert H'obbes' Zakon wrote:
> have just set-up wu-ftpd-2.4 under Solaris2.5.1.
>
> the 'dir' command does not seem to work for anonymous users,
> only for regular users. 'ls' works fine for both.
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Fri Jul 18 14:34:08 1997
Received: from relay4.UU.NET by relay4.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyke28347; Wed, 16 Jul 1997 02:10:22 -0400 (EDT)
Received: from wugate.wustl.edu by relay4.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyke28337; Wed, 16 Jul 1997 02:10:20 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id BAA18191;
Wed, 16 Jul 1997 01:04:46 -0500 (CDT)
Received: from k2.lund.se (
[email protected] [193.14.211.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id BAA13244
for <
[email protected]>; Wed, 16 Jul 1997 01:03:55 -0500 (CDT)
Received: from localhost (johan@localhost [127.0.0.1])
by k2.lund.se (8.8.5/8.8.5) with SMTP id HAA25331;
Wed, 16 Jul 1997 07:03:40 +0100
Message-Id: <
[email protected]>
Date: Wed, 16 Jul 1997 07:03:31 +0100 (BST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Johan Harvyl <
[email protected]>
To: Ronald Nelson <
[email protected]>
Cc:
[email protected]
Subject: Re: "Unable to get server files: The request timed out"
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
-----BEGIN PGP SIGNED MESSAGE-----
On Tue, 15 Jul 1997, Ronald Nelson wrote:
> **Trying to view WU-ftpd guest accounts directories**
>
> I have setup guest accounts on my server, but I have trouble viewing the
> files.
> It seems as though everything is working perfectly until the "LIST"
> command is issued (/bin/ls). Then, I receive a message from my FTP
> software
> (Reflections FTP (client)) displaying "Unable to get server files: The
> request timed out"
>
> Any suggestions on solving this problem would be greatly appreciated. I
>
> am using a SUN Netra with Solaris 2.5.1
>
> Thank You in advance
Check your permissions on the /bin in the ftproot (should be 111) and the
same goes for the programs in the /bin dir, such as ls, gzip, tar...
Also you could try another ftpclient that is a bit more verbose in error
messages, try ftp localhost on that SUN you have.
Johan Harvyl
Email:
[email protected]
URL:
http://k2.lund.se/~johan
Fingerprints: 32 24 A4 4B 55 A6 47 7B 47 D7 D6 15 BD 15 EE 6E
- ---
Try Debian Linux:
http://www.debian.org
-----BEGIN PGP SIGNATURE-----
Version: 2.6.3i
Charset: cp850
iQCVAwUBM8xkNhRIt8WyeZyRAQF9nQP5AYp3uZ4qhuFKxYHQSpXS7hTR+wxr33ao
KsVy/B1zDSYoS9pokRT6prGaSqDaTCrT9q6ZCP38cC4b1OtU5fcFBVftMKlmTmPw
+OeUQLM0JIZpkyZdbrM0br/nieOViE9eH7/0OXm3ukj7irPljMGLXiZnoMWhHFaB
W+5CgBbt0Ls=
=lEIh
-----END PGP SIGNATURE-----
From
[email protected] Fri Jul 18 14:34:27 1997
Received: from relay2.UU.NET by relay2.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcysr25661; Fri, 18 Jul 1997 09:23:16 -0400 (EDT)
Received: from wugate.wustl.edu by relay2.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcysr25653; Fri, 18 Jul 1997 09:23:14 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA30304;
Fri, 18 Jul 1997 08:16:31 -0500 (CDT)
Received: from pts.co.uk (ptsplc.pts.co.uk [193.119.197.88])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA23141
for <
[email protected]>; Fri, 18 Jul 1997 08:10:21 -0500 (CDT)
Received: from pts.com (athens [193.119.197.14]) by pts.co.uk (8.6.8.1/SCA-6.6) with SMTP
id OAA22524 for <
[email protected]>; Fri, 18 Jul 1997 14:12:03 +0100
Received: by pts.com (5.x/SMI-4.1)
id AA22827; Fri, 18 Jul 1997 14:04:40 +0100
Message-Id: <
[email protected]>
Date: Fri, 18 Jul 1997 14:04:40 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Simon Hill <
[email protected]>
To:
[email protected]
Subject: ftpaccess file
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I've a new user of wu-ftpd. I built an older version and could successfully
configure it with the ftpaccess file.
I've now upgraded to wu-ftpd-2.4.2-beta-13 and can't get ftpd to read
the ftpaccess file. Things like ftpusers work fine.
I'm sure the path to the file is correct.
I'm on Dec Alpha OSF 3.2
Has anybody seen a similar problem ?
Thanks
Regards
Simon Hill
Technical Support Manager
-----------------------------------------------------------------------------
Productivity Through Software | Tel: +44 (0) 1928 579700
Manor Park Avenue | Fax: +44 (0) 1928 579701
Manor Park |
Runcorn. WA7 1TL | Email:
[email protected]
England | WWW:
http://www.pts.co.uk
------------------------------------------------------------------------------
From
[email protected] Fri Jul 18 14:35:09 1997
Received: from relay4.UU.NET by relay4.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyms06978; Wed, 16 Jul 1997 18:31:33 -0400 (EDT)
Received: from wugate.wustl.edu by relay4.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyms06949; Wed, 16 Jul 1997 18:31:24 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAB20069;
Wed, 16 Jul 1997 17:23:48 -0500 (CDT)
Received: from academ.com (
[email protected] [198.137.249.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA19007
for <
[email protected]>; Wed, 16 Jul 1997 17:20:29 -0500 (CDT)
Received: (from sob@localhost)
by academ.com (8.8.5/8.8.5) id RAA00607
for
[email protected]; Wed, 16 Jul 1997 17:20:27 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Wed, 16 Jul 1997 17:20:27 CDT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Stan Barber)
To:
[email protected]
Subject: More delays
X-Mailer: Mail User's Shell (7.2.5 10/14/92)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Once again, I am pushing back the release. I have done some more integration
and still need to do more.
However, I think these changes will be worth the wait. I am feeling pretty
good that this will be the release once the beta period (following the beta
release) is over.
The new date is July 30.
--
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 Jul 18 14:38:48 1997
Received: from relay2.UU.NET by relay2.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyny19262; Thu, 17 Jul 1997 02:32:30 -0400 (EDT)
Received: from wugate.wustl.edu by relay2.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyny19250; Thu, 17 Jul 1997 02:32:24 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id BAA22015;
Thu, 17 Jul 1997 01:25:41 -0500 (CDT)
Received: from discoveryweb.com ([207.107.66.65])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id BAA21652
for <
[email protected]>; Thu, 17 Jul 1997 01:21:33 -0500 (CDT)
Received: from www.phpmag.com ([198.53.16.30]) by discoveryweb.com (8.8.5/8.7.3) with SMTP id AAA28496; Thu, 17 Jul 1997 00:21:03 -0600 (MDT)
Message-Id: <
[email protected]>
Date: Thu, 17 Jul 1997 00:11:49 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: "Steve Lawrence" <
[email protected]>
To: "Johan Harvyl" <
[email protected]>
Cc: <
[email protected]>
Subject: Re: More delays
MIME-Version: 1.0
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook Express 4.71.0544.0
X-Priority: 3
X-MSMail-Priority: Normal
X-MimeOLE: Produced By Microsoft MimeOLE Engine V4.71.0544.0
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Thanks Everyone, I got what I wanted!
I look forward to some day contributing back to the list....
----
From: Johan Harvyl <
[email protected]>
To: Steve Lawrence <
[email protected]>
Cc:
[email protected]
Date: Thursday, July 17, 1997 12:15 AM
Subject: Re: More delays
>-----BEGIN PGP SIGNED MESSAGE-----
>
>On Wed, 16 Jul 1997, Steve Lawrence wrote:
>
>> Hello, Everybody!
>>
>> I am new to the list, and new to wu-ftpd, and I have Two questions I
hope
>> you can answer:
>>
>> We currently have B11 of wu-ftpd on our sun sparc 20.
>>
>> I would like to restrict users to thier home directorys when they ftp
to
>> the server so they can't snoop around. How do I do this?
>
>It sounds to me as if you would like to set up their ftp-sessions just as
>with anonymous ftp. There is an option called guestgroup that you can
have
>a look at in the manpages. If user johan is a member of a guestgroup
>(specified in /etc/ftpaccess or similar) the server will perform a
>chroot() in that users home directory and make that the "/" dir in the
>ftp-session.
>Hope this will work for you, it does for me.
>
>> Second, what is the latest release, and should I be updating the one I
have
>> installed yet?
>
>I really can't give you any advice here, I can just say that I have had
no
>problems with the beta-13 which in my knowledge is the latest release.
>
>regards,
>
>Johan Harvyl
>Email:
[email protected]
>URL:
http://k2.lund.se/~johan
>Fingerprints: 32 24 A4 4B 55 A6 47 7B 47 D7 D6 15 BD 15 EE 6E
>- ---
>With a PC, I always felt limited by the software available.
>On Unix, I am limited only by my knowledge.
> Peter J. Schoenster
>
>-----BEGIN PGP SIGNATURE-----
>Version: 2.6.3i
>Charset: cp850
>
>iQCVAwUBM824WhRIt8WyeZyRAQHEowP/dPSoTxh6WysyPDSrPBqarUdI/JLlw3PA
>MEJIhHYCL1DK+nu4tSjemVDD3zy/Rjrk2mh+94EQF1s9mr+MmFKl6eV8MAn5tRjg
>NSP09rM1sdcM14VuE2LTVgkn9YgiL85yQSbs6hi6UF87RtFYWn+Cl4aU8Cuvkifz
>KjhOb3yUugE=
>=dpSo
>-----END PGP SIGNATURE-----
>
From
[email protected] Fri Jul 18 14:44:42 1997
Received: from relay4.UU.NET by relay4.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcyre13163; Thu, 17 Jul 1997 23:44:38 -0400 (EDT)
Received: from wugate.wustl.edu by relay4.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcyre13115; Thu, 17 Jul 1997 23:44:26 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA26589;
Thu, 17 Jul 1997 22:37:27 -0500 (CDT)
Received: from spade1.pacific.net.sg (spade1.pacific.net.sg [203.120.90.80])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA25001
for <
[email protected]>; Thu, 17 Jul 1997 22:35:06 -0500 (CDT)
Received: from pop1.pacific.net.sg (pop1.pacific.net.sg [203.120.92.20]) by spade1.pacific.net.sg with ESMTP id LAA08517; Fri, 18 Jul 1997 11:35:03 +0800 (SGT)
Received: from pkm (pkm.pacific.net.sg [203.120.89.83])
by pop1.pacific.net.sg with SMTP id LAA24070
; Fri, 18 Jul 1997 11:35:02 +0800 (SGT)
Message-Id: <
[email protected]>
Date: Fri, 18 Jul 1997 11:33:37 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From: "Poon Keen Mun (K M Poon)" <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re:
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 3.01Gold (X11; I; SunOS 5.5.1 sun4m)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
man ftpd.
Should provide u with enough info.
Quynh-Giao Tran wrote:
>
> I am trying to set up an anonymous ftp on my machine, I have followed the
> instructions in the wu-ftp FAQ, but I couldn't get in as the anonymous
> user, it returned the following error:
>
> 530 User anonymous unknown.
> Login failed.
>
> I have specified in my ftpaccess file that any machine (*) can access
> the ftp directory. Thanks in advance for your help.
>
> Giao Tran
--
#!/usr/local/bin/perl5
----------------------
Poon Keen Mun (K M Poon)
[email protected]
From
[email protected] Fri Jul 18 15:01:47 1997
Received: from relay4.UU.NET by relay4.UU.NET with ESMTP
(peer crosschecked as: root@localhost)
id QQcysq06940; Fri, 18 Jul 1997 09:07:20 -0400 (EDT)
Received: from wugate.wustl.edu by relay4.UU.NET with ESMTP
(peer crosschecked as: wugate.wustl.edu [128.252.120.1])
id QQcysq06907; Fri, 18 Jul 1997 09:07:12 -0400 (EDT)
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA30972;
Fri, 18 Jul 1997 08:00:33 -0500 (CDT)
Received: from socks2.raleigh.ibm.com (socks2.raleigh.ibm.com [204.146.167.123])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id HAA31242
for <
[email protected]>; Fri, 18 Jul 1997 07:57:38 -0500 (CDT)
Received: from rtpmail03.raleigh.ibm.com by socks2.raleigh.ibm.com (AIX 4.1/UCB 5.64/RTP-FW1.0)
id AA37058; Fri, 18 Jul 1997 08:57:32 -0400
Received: from madras.raleigh.ibm.com (madras.raleigh.ibm.com [9.67.166.15])
by rtpmail03.raleigh.ibm.com (8.8.5/8.8.5/RTP-ral-1.1) with SMTP id IAA22016;
Fri, 18 Jul 1997 08:57:30 -0400
Received: by madras.raleigh.ibm.com (AIX 4.1/UCB 5.64/4.03-RAL)
id AA16404; Fri, 18 Jul 1997 08:57:30 -0400
Message-Id: <
[email protected]>
Date: Fri, 18 Jul 1997 08:57:29 +22324610
Reply-To:
[email protected]
Sender:
[email protected]
From: Alexey Lef <
[email protected]>
To:
[email protected]
Cc: "'
[email protected]'" <
[email protected]>
Subject: Re: ftpd , AIX 4.1.4 & timestamp
In-Reply-To: Your message of "Fri, 18 Jul 1997 13:11:47."
<
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: exmh version 1.6.9 8/22/96
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
That is strange... We had this problem with the old wu-ftpd 2.4, but beta13
fixed it. We have TZ set in /etc/environment only.
Alexey
> Bonjour a tous!
> Hello all!
>
> well I have just installed the beta13 version on my AIX 4.1.4 and it works well except that hours and times (displayed by "dir" for instance) are GMT and not NFT-1DFT as the rest of the AIX does.
>
> I tried to copy /etc/environment in ~ftp/etc/environment but it was no success.
>
> I also tried to set TZ in a .profile in ~ftp but it was the same (in fact I did not believe that it could be successful).
>
> Thanks for help....
>
> Philippe Guyot
> CVF Bordeaux France
> + 33 5 56 01 98 00
>
From
[email protected] Sat Jul 19 07:16:36 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id HAA28282;
Sat, 19 Jul 1997 07:09:12 -0500 (CDT)
Received: from foil.apk.net (
[email protected] [207.54.133.102])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id HAA28485
for <
[email protected]>; Sat, 19 Jul 1997 07:05:00 -0500 (CDT)
Received: (from dhall@localhost)
by foil.apk.net (8.8.5/8.8.5) id IAA15391;
Sat, 19 Jul 1997 08:06:19 -0400 (EDT)
Message-Id: <
[email protected]>
Date: 19 Jul 1997 08:06:18 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (d. hall)
To:
[email protected]
Cc:
[email protected]
Subject: Re: ftpaccess file
In-Reply-To: Simon Hill's message of "Fri, 18 Jul 1997 14:04:40 +0100"
References: <
[email protected]>
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: text/plain; charset=US-ASCII
X-Mailer: Gnus v5.4.60/Emacs 19.34
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
// thus on Fri, 18 Jul 1997 14:04:40 +0100, Simon virtually wrote:
Simon> Hi, I've a new user of wu-ftpd. I built an older version and could
Simon> successfully configure it with the ftpaccess file.
Simon> I've now upgraded to wu-ftpd-2.4.2-beta-13 and can't get ftpd to
Simon> read the ftpaccess file. Things like ftpusers work fine. I'm sure
Simon> the path to the file is correct.
Simon> I'm on Dec Alpha OSF 3.2 Has anybody seen a similar problem ?
Specify -a as an argument in inetd.conf. This is listed in one of the
README's as well as listed multiple times in the closed tickets. By
default wu-ftpd does not read the ftpaccess file. This is a change from
before.
d.
--
Darren Hall | phone: 216-241-7166
Postmaster/Systems Administration | pager: 216-517-9522
APK Net Ltd. | email:
[email protected]
From
[email protected] Sun Jul 20 11:35:18 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA12812;
Sun, 20 Jul 1997 11:29:59 -0500 (CDT)
Received: from discoveryweb.com ([209.47.83.65])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id LAA12885
for <
[email protected]>; Sun, 20 Jul 1997 11:22:14 -0500 (CDT)
Received: from www.phpmag.com ([198.53.16.37]) by discoveryweb.com (8.8.5/8.7.3) with SMTP id KAA02355 for <
[email protected]>; Sun, 20 Jul 1997 10:22:44 -0600 (MDT)
Message-Id: <
[email protected]>
Date: Sun, 20 Jul 1997 10:13:34 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: "Steve Lawrence" <
[email protected]>
To: <
[email protected]>
Subject: Re: Guest ftp account
MIME-Version: 1.0
Content-Type: text/plain;
charset="US-ASCII"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.71.1008.3
X-MimeOle: Produced By Microsoft MimeOLE Engine V4.71.1008.3
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Thank you to everyone for you help on setting up guest access accounts! I
now have it working.
From
[email protected] Mon Jul 21 03:26:48 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id DAA29858;
Mon, 21 Jul 1997 03:19:05 -0500 (CDT)
Received: from susrv003.chd.lu ([195.10.65.10])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id DAA29918
for <
[email protected]>; Mon, 21 Jul 1997 03:18:10 -0500 (CDT)
Received: from tt0pc003 ([194.154.204.14]) by susrv003.chd.lu
(Netscape Mail Server v2.02) with SMTP id AAA446
for <
[email protected]>; Mon, 21 Jul 1997 10:14:36 +0200
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 10:18:24 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From: "Libs Jean-Marc" <
[email protected]>
To:
[email protected]
Subject: Re: Guest ftp account
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 3.0Gold (WinNT; I)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Steve Lawrence wrote:
>
> Thank you to everyone for you help on setting up guest access accounts! I
> now have it working.
Hmm, seems I subscribed just a tad too late, as I have the same problem,
and I missed the thread.
Does this list have an archive site ? (preferably a searchable one)
Jean-Marc
From
[email protected] Mon Jul 21 04:14:51 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id EAA03322;
Mon, 21 Jul 1997 04:08:25 -0500 (CDT)
Received: from curley.iainc.net (curley.iainc.net [206.165.79.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id EAA02122
for <wu-ftpd@[128.252.120.1]>; Mon, 21 Jul 1997 04:03:24 -0500 (CDT)
Received: from [206.165.79.206] by curley.iainc.net (Post.Office MTA v3.1
release PO203a ID# 0-39939U2500L250S0) with ESMTP id AAA6073
for <wu-ftpd@[128.252.120.1]>; Mon, 21 Jul 1997 05:03:16 -0400
Message-Id: <v03102806aff8e437096c@[206.165.79.206]>
Date: Mon, 21 Jul 1997 05:04:32 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Chili <
[email protected]>
To:
[email protected]
Subject: LIST (ls) problem
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello,
I have a machine that was just completely rebuilt and has a -fresh install- of solaris 2.5.1 on it.
I attempted to setup an anon ftp server on it using its standard ftp daemon, to no avail.
When an anonymous user logged in and tried to get a directory listing, the server would just send back the error:
"425 Can't create data socket (0.0.0.0,20): Bad file number."
I then read the man file on it cover to cover and set the anon ftp directory up as suggested...copying libs...changing permissions, etc.
STILL get the same error.
Then i go and get the best ftp daemon I know of...wu-ftp (2.4) and install it.
I get the same error.
So I read the INSTALL file's section on anonymous ftp. I set it up as told, same error.
I even spend an hour compiling a static version of 'ls' to put in ~/ftp/bin
no dice...
suggestions?
one note to make...i previously had the anon ftp server running on a sun 4.1.3 machine, never had a single problem with it.
and 'regular' ftp does work on the solaris 2.5.1 box, just not anonymous. (the ip of it is 206.165.79.2)
Chili
Innovative Access, Inc. Technical Administrator
http://www.iainc.net
From
[email protected] Mon Jul 21 09:03:31 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA15225;
Mon, 21 Jul 1997 08:55:49 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id IAA19073
for <
[email protected]>; Mon, 21 Jul 1997 08:49:47 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id IAA16185;
Mon, 21 Jul 1997 08:49:39 -0500
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 08:49:39 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Libs Jean-Marc <
[email protected]>
Cc:
[email protected]
Subject: Re: Guest ftp account
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
See below.
-- Michael
On Mon, 21 Jul 1997, Libs Jean-Marc wrote:
> Hmm, seems I subscribed just a tad too late, as I have the same problem,
> and I missed the thread.
>
> Does this list have an archive site ? (preferably a searchable one)
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Mon Jul 21 12:45:55 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA05975;
Mon, 21 Jul 1997 12:37:12 -0500 (CDT)
Received: from tiger.dialdata.com.br (tiger.dialdata.com.br [200.246.225.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id MAA28187
for <
[email protected]>; Mon, 21 Jul 1997 12:30:11 -0500 (CDT)
Received: from dd4.dialdata.com.br (dd4.dialdata.com.br [200.246.225.166])
by tiger.dialdata.com.br (8.8.5/8.8.5) with SMTP id OAA22642;
Mon, 21 Jul 1997 14:28:22 -0300 (EST)
Received: from buffalo.dialdata.com.br ([200.246.225.3]) by dd4.dialdata.com.br (InterScan E-Mail VirusWall NT)
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 14:34:55 -0300
Reply-To:
[email protected]
Sender:
[email protected]
From: Rubens Mau <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: academ ftp problem
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Light Version 1.5.4 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Dear ,
I am using happily the academ ftp, beta 13. I found a problem that may be
common to more users.
I use the group feature, and is working fine on a Solaris machine - making a
chroot correctly. But if I forget to include this user on the /etc/group
file , the crhroot doesn't work anymore, giving the user access to all the
filesystem. In the original wu-ftpd program this was not happening - the
access was denied.
Best Regards
Rubens Mau
[email protected]
From
[email protected] Mon Jul 21 14:21:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA11186;
Mon, 21 Jul 1997 14:15:18 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA14299
for <
[email protected]>; Mon, 21 Jul 1997 14:09:14 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 14:09:47 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Final Prototype Version
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: 8.0 -- ListProcessor(tm) by CREN
This is the third major version in prototyping extended virtual hosting support.
There will be no more major revisions. At this point I am only taking bug
reports and portability changes. Once those are completed I will be sending
the final changes to Stan for incorporation into a future release.
This version handles all the requests that I've received other than merging
config files. Merging has too many drawbacks for the benefits received. This
version is simple to understand and manage. It has an additional plus to it.
If you are currently using the Virtual Hosting support in the baselined
beta-13 version, you will NOT HAVE TO CHANGE A THING if you don't need the
expanded virtual host support. Your existing ftpaccess file will work
correctly. (It slices, it dices, it makes jullian fries! Sorry Perry...
Beat you to it. ;) )
This version provides two different means for supporting virtual hosting.
You can use the existing "virtual" directive support or you can use the
extended virtual support by having completely different ftpaccess files
or any mixture of both.
If you have multiple domains that need to be setup in extremely similar
fashions then place "virtual" (root/banner/logfile) directives in the master
ftpaccess file. All other directives in the master ftpaccess file will be
shared globally across all listed virtual servers.
If you have virtual domains that need to do things different, create a
separate ftpaccess for those specific domains to provide individual support
for all ftpaccess directives. For each virtual domain that you want to
support, you have the option to create an ftpaccess file specific for that
domain. This will override completely what you have in the master ftpaccess
file. This file must contain all directives you wish used. If you do not
create an ftpaccess file for a specific domain, the domain will use the
appropriate "virtual" directives in the master ftpaccess file.
Additionally, the ftpusers, ftpgroups, ftphosts and ftpconversions files can
all be specified on a per-domain basis. You have the ability to override the
master WU-FTPD config files with a local copy specific to that domain. If you
do not wish to place a copy of one or all files listed above in the virtual
host directory for that specific host then the master copy is used.
Newer copies of ftpck and ftpshut/ftprestart are also included in the
newvirt-030.tar.gz distribution. These versions are not currently available
in the Resource Center but should be soon.
More information on this is available at
http://www.landfield.com/wu-ftpd/newvirt/index.html
and
http://www.landfield.com/wu-ftpd/newvirt/README
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Mon Jul 21 15:33:00 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA15577;
Mon, 21 Jul 1997 15:23:34 -0500 (CDT)
Received: from i3tele.com (i3tele.com [204.178.210.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA18585
for <
[email protected]>; Mon, 21 Jul 1997 15:22:40 -0500 (CDT)
Received: from i3tele.com (i3tele.com [204.178.210.2]) by i3tele.com (8.7.1/8.6.9) with SMTP id QAA22129 for <
[email protected]>; Mon, 21 Jul 1997 16:22:08 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 16:22:07 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Mark Rogov <
[email protected]>
To:
[email protected]
Subject: dir problem with wu-ftp 2.4
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello!
I am experiencing a big problem/confusion.
I have wu-ftpd 2.4 installed on SunOS using all the regular settings in
the ftpaccess file. Whenever the customer ftps in his directory is chrooted.
There is a comlete and nessesary structure within that chrooted directory":
drwxrwxr-x 7 mark staff 512 Jul 18 12:37 ./
drwxrwxr-x 41 root httpadmi 1536 Jul 20 13:50 ../
dr-xr-xr-x 2 root ftpadmin 512 Feb 5 12:38 bin/
dr-xr-xr-x 2 root ftpadmin 512 Jul 18 11:42 dev/
dr-xr-xr-x 2 root ftpadmin 512 Jul 18 12:41 etc/
dr-xr-xr-x 3 root ftpadmin 512 Feb 5 13:43 usr/
drwxr-xr-x 2 mark ftptest 512 Jul 18 17:16 www.i3net.com/
the actual copy of the reglar and working ftp acct.
BUT! when FTP connection is established the dir() command does not work:
230 User mark logged in. Access restrictions apply.
ftp> dir
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
226 Transfer complete.
ftp>
it doesn't give any mistake, but it doesn't display any files either.
Since dir() doesn't work all my clients with windows ftp programms do not
get the list of their files when they ftp in. They are all able to upload
or download a file if the exact name is specified.
I have the latest gnu ls() inside that /bin directory and all other needed
files in usr/lib/
Please help ASAP.
Thank you.
-------------------------------------------------------------------------------
\|
--"-------\ Mark Rogov || E-mail:
[email protected]
| O | "ISDN Made Easy" TM || HP:
http://idt.net/~marik
| \___o/ 56 W. 22nd St. 10th Floor || TEL 212/228-7900
| | New York, NY 10010 || FAX 212/228-1152
| |
http://www.i3tele.com ||
"HEY, LIFE IS FULL OF SURPRISES!!!"
-------------------------------------------------------------------------------
From
[email protected] Mon Jul 21 15:50:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA20898;
Mon, 21 Jul 1997 15:41:54 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA20839
for <
[email protected]>; Mon, 21 Jul 1997 15:39:48 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id PAA25197;
Mon, 21 Jul 1997 15:39:42 -0500
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 15:39:42 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Mark Rogov <
[email protected]>
Cc:
[email protected]
Subject: Re: dir problem with wu-ftp 2.4
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Your external 'ls' is goofed up for some reason, either libraries,
or devices, or something. See the guest howto and the FAQ for more info.
(below)
You really should consider upgrading to the latest beta for both security
and bug fix reason.
-- Michael
On Mon, 21 Jul 1997, Mark Rogov wrote:
> I have wu-ftpd 2.4 installed on SunOS using all the regular settings in
> the ftpaccess file. Whenever the customer ftps in his directory is chrooted.
> There is a comlete and nessesary structure within that chrooted directory":
> ......
> it doesn't give any mistake, but it doesn't display any files either.
> Since dir() doesn't work all my clients with windows ftp programms do not
> get the list of their files when they ftp in. They are all able to upload
> or download a file if the exact name is specified.
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Mon Jul 21 17:11:04 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA02651;
Mon, 21 Jul 1997 17:02:54 -0500 (CDT)
Received: from gibnet.gi (root.gibnet.gi [195.166.192.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA27444
for <
[email protected]>; Mon, 21 Jul 1997 16:59:09 -0500 (CDT)
Received: from rocknet.therock.gi by gibnet.gi (SMI-8.6/SMI-SVR4)
id XAA05925; Mon, 21 Jul 1997 23:58:49 +0200
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 00:01:57 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Danny Calamaro <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: dir problem with wu-ftp 2.4
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.0 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi all,
Am have exactly the same problem. What ls are you using, the standard OS
one or the fileutils. Am using the fileutils-3.15.gz It works fine with
ls only but not with ls -l which is what the windows uses. I have read
the FAQ etc, but havn't really seen anything on this. I have got a new
version of fileutils-3.16.gz, I'll try those and see.
Any further advice would be welcomed :-)
Danny
Mark Rogov wrote:
>
>
> it doesn't give any mistake, but it doesn't display any files either.
> Since dir() doesn't work all my clients with windows ftp programms do not
> get the list of their files when they ftp in. They are all able to upload
> or download a file if the exact name is specified.
>
> I have the latest gnu ls() inside that /bin directory and all other needed
> files in usr/lib/
>
> Please help ASAP.
> Thank you.
>
> -------------------------------------------------------------------------------
> \|
> --"-------\ Mark Rogov || E-mail:
[email protected]
> | O | "ISDN Made Easy" TM || HP:
http://idt.net/~marik
> | \___o/ 56 W. 22nd St. 10th Floor || TEL 212/228-7900
> | | New York, NY 10010 || FAX 212/228-1152
> | |
http://www.i3tele.com ||
> "HEY, LIFE IS FULL OF SURPRISES!!!"
> -------------------------------------------------------------------------------
From
[email protected] Mon Jul 21 17:57:38 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA27811;
Mon, 21 Jul 1997 17:52:13 -0500 (CDT)
Received: from i3tele.com (i3tele.com [204.178.210.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA29416
for <
[email protected]>; Mon, 21 Jul 1997 17:46:14 -0500 (CDT)
Received: from i3tele.com (i3tele.com [204.178.210.2]) by i3tele.com (8.7.1/8.6.9) with SMTP id SAA25927; Mon, 21 Jul 1997 18:45:29 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 18:45:25 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Mark Rogov <
[email protected]>
To: Danny Calamaro <
[email protected]>
Cc:
[email protected]
Subject: Re: dir problem with wu-ftp 2.4
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Tue, 22 Jul 1997, Danny Calamaro wrote:
> the FAQ etc, but havn't really seen anything on this. I have got a new
> version of fileutils-3.16.gz, I'll try those and see.
I am using fileutils-3.16.gz
No progress...
However, one of the suggestions that i have got are about the libraries
in /usr/lib.
I have ld.so and libc.so.1.9
If that is not enough where do I get missing?
Thank you.
-------------------------------------------------------------------------------
\|
--"-------\ Mark Rogov || E-mail:
[email protected]
| O | "ISDN Made Easy" TM || HP:
http://idt.net/~marik
| \___o/ 56 W. 22nd St. 10th Floor || TEL 212/228-7900
| | New York, NY 10010 || FAX 212/228-1152
| |
http://www.i3tele.com ||
"HEY, LIFE IS FULL OF SURPRISES!!!"
-------------------------------------------------------------------------------
From
[email protected] Mon Jul 21 18:04:42 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA20970;
Mon, 21 Jul 1997 17:58:14 -0500 (CDT)
Received: from gibnet.gi (root.gibnet.gi [195.166.192.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA16655
for <
[email protected]>; Mon, 21 Jul 1997 17:57:41 -0500 (CDT)
Received: from rocknet.therock.gi by gibnet.gi (SMI-8.6/SMI-SVR4)
id AAA06501; Tue, 22 Jul 1997 00:57:44 +0200
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 01:00:51 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Danny Calamaro <
[email protected]>
To: "
[email protected]" <
[email protected]>
Subject: Re: dir problem with wu-ftp 2.4
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.0 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Kent Landfield wrote:
>
> # Am have exactly the same problem. What ls are you using, the standard OS
> # one or the fileutils. Am using the fileutils-3.15.gz It works fine with
> # ls only but not with ls -l which is what the windows uses. I have read
> # the FAQ etc, but havn't really seen anything on this. I have got a new
> # version of fileutils-3.16.gz, I'll try those and see.
>
> Might help if we knew what OS we are talking about.
Yep sorry, its on a Sun Netra, running SunOS 5.5.1
>
> I personally like to static link all ftp support utilities. That can play
> havoc with Sun MPs but that is not a problem for me. If you are on a Sun
> try
>
> truss -f chroot ~ftp /bin/ls -l > /dev/null
>
> and make sure that you have all the libraries there.
>
Tried it but I don't have the truss command.
Danny
From
[email protected] Mon Jul 21 18:25:54 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id SAA32417;
Mon, 21 Jul 1997 18:17:25 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id SAA28429
for <
[email protected]>; Mon, 21 Jul 1997 18:15:50 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Mon, 21 Jul 1997 18:12:55 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: dir problem with wu-ftp 2.4
In-Reply-To: <
[email protected]> from "Danny Calamaro" at Jul 22, 97 01:00:51 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: 8.0 -- ListProcessor(tm) by CREN
# Yep sorry, its on a Sun Netra, running SunOS 5.5.1
Take a look at
A How-To Guide for wu-ftpd on Solaris 2.5.x
Darci L. Chapman <
[email protected]> has written a
targeted document for the Solaris 2.5.x environment.
Extremely useful.
http://www.teleport.com/~minerva/wu-ftpd/wuftpd.shtml
# Tried it but I don't have the truss command.
Hmm. Development facilities ? gcc only I'll bet. ;-)
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Tue Jul 22 01:54:53 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id BAA32241;
Tue, 22 Jul 1997 01:49:54 -0500 (CDT)
Received: from pizza.hvu.nl (
[email protected] [145.89.234.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id BAA31116
for <
[email protected]>; Tue, 22 Jul 1997 01:48:25 -0500 (CDT)
Received: (from koos@localhost) by pizza.hvu.nl (8.8.3/KH19970721 (dbm+antirelay test)) id IAA13510 for
[email protected]; Tue, 22 Jul 1997 08:48:19 +0200 (MET DST)
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 08:48:18 +0200 (MET DST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Koos van den Hout _U nix and we all_ <
[email protected]>
To:
[email protected]
Subject: Re: dir problem with wu-ftp 2.4
In-Reply-To: <
[email protected]> from Kent Landfield at "Jul 21, 97 06:12:55 pm"
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Zen: Ommmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
X-Files: the truth is out there
X-I-Am-Not-Simes: undecided
X-Mailer: ELM [version 2.4ME+ PL31H (25)]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Quoting Kent Landfield, who wrote :
> # Yep sorry, its on a Sun Netra, running SunOS 5.5.1
^^^^^
Dangerous word. The Netra has a stripped down
version of Solaris with a lot of your favourite tools missing.
It's probably best to first build and debug the setup on a development
machine and then move it to the netra.
Grtx KH
--
Koos van den Hout, Internetter, Unix freak, ISFJ and BBS SysOp at large
[email protected] (Work) <-- finger -l for PGPkey Fax: +31-30-2586290
[email protected] (Home) Workphone: +31-30-2586287
http://www.cetis.hvu.nl/~koos/ Looking for a license plate with "RFC 822"
Microsoft thinks "open systems" means they can leave out security.
From
[email protected] Tue Jul 22 07:19:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id HAA14558;
Tue, 22 Jul 1997 07:14:40 -0500 (CDT)
Received: from mail1.bellglobal.com (mail1.bellglobal.com [204.101.251.200])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id HAA13218
for <
[email protected]>; Tue, 22 Jul 1997 07:10:29 -0500 (CDT)
Received: from Jonathan.sympatico.ca ([199.243.226.20])
by mail1.bellglobal.com (Netscape Mail Server v2.02) with SMTP
id AAA8841 for <
[email protected]>;
Tue, 22 Jul 1997 08:09:58 -0400
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 08:04:17 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Jonathan Curtis)
To:
[email protected]
Subject: GMT Time problem
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Pro Version 2.2 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello ,
I recently installed wu-ftpd on an SGI Irix 5.3 server and
I have found that it is listing files with the GMT and not the Local time
stamp (Eastern Standard Daylight Savings Time).
WU is probably standardized on GMT. But there is probably
some flag or code that can be modified.
The only code that I found was the gmtime(); function in ~src/ftpcmd.y or .c
after a build.
I tried changing it to localtime() but was un-successful.
I have version 2.4.2-beta-13.
Any fix for this...
Thanks,
Jonathan
From
[email protected] Tue Jul 22 07:43:30 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id HAA08349;
Tue, 22 Jul 1997 07:38:12 -0500 (CDT)
Received: from star.win.or.jp (star.win.or.jp [202.26.20.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id HAA14415
for <
[email protected]>; Tue, 22 Jul 1997 07:34:08 -0500 (CDT)
Received: (from ayamura@localhost) by star.win.or.jp (8.8.6/8.8.6) id VAA27652; Tue, 22 Jul 1997 21:33:58 +0900 (JST)
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 21:33:58 +0900
Reply-To:
[email protected]
Sender:
[email protected]
From: Ayamura Kikuchi <
[email protected]>
To:
[email protected]
Subject: Re: GMT Time problem
In-Reply-To: Your message of "Tue, 22 Jul 1997 08:04:17 -0700"
References: <
[email protected]>
Mime-Version: 1.0
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-MH-BIFF: Version: mh-biff.el version 0.96.1
X-PGP-Public-Key:
http://www.ayamura.win.or.jp/pgp-public-key.asc
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> I recently installed wu-ftpd on an SGI Irix 5.3 server and
> I have found that it is listing files with the GMT and not the Local time
> stamp (Eastern Standard Daylight Savings Time).
>
> WU is probably standardized on GMT. But there is probably
> some flag or code that can be modified.
Recompile with SPT_TYPE set to SPT_NONE.
src/config/config.sgi:
#define SPT_TYPE SPT_NONE
--
Ayamura Kikuchi (Dept., of Medicine, Keio Univ., Japan)
From
[email protected] Tue Jul 22 09:35:50 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA17881;
Tue, 22 Jul 1997 09:30:43 -0500 (CDT)
Received: from star.win.or.jp (star.win.or.jp [202.26.20.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id JAA17632
for <
[email protected]>; Tue, 22 Jul 1997 09:25:33 -0500 (CDT)
Received: (from ayamura@localhost) by star.win.or.jp (8.8.6/8.8.6) id XAA02219; Tue, 22 Jul 1997 23:24:00 +0900 (JST)
Message-Id: <
[email protected]>
Date: 22 Jul 1997 23:23:59 +0900
Reply-To:
[email protected]
Sender:
[email protected]
From: Ayamura Kikuchi <
[email protected]>
To:
[email protected] (David MacDonald)
Cc:
[email protected]
Subject: Re: GMT Time problem
In-Reply-To: David MacDonald's message of "Tue, 22 Jul 1997 08:50:40 -0500 (CDT)"
References: <
[email protected]> <
[email protected]>
Mime-Version: 1.0 (generated by SEMI MIME-Edit 0.85 "Kaga-Ichinomiya")
Content-Type: text/plain; charset=US-ASCII
X-PGP-Public-Key:
http://www.ayamura.win.or.jp/pgp-public-key.asc
X-Emacs: Emacs 19.34, MULE 2.3 (SUETSUMUHANA)
X-Mailer: Gnus v5.4.64 + SEMI patch (r2.1)/Emacs 19.34
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> I am having the same problem on Solaris 2.5.1 but the below solution
> does not have any effect. Does anyone know what is needed to fix
> this problem on Solaris?
You may need to copy the appropriate zoneinfo file to the
~ftp/usr/share/lib/zoneinfo directory and the init file to the
~ftp/etc/default/init. Please also read the Solaris man page for in.ftpd(1).
FAQ about wu-ftpd
http://www.hvu.nl/~koos/wu-ftpd-faq.html
WU-FTPD Resource Center
http://www.landfield.com/wu-ftpd/
--
Ayamura Kikuchi (Dept., of Medicine, Keio Univ., Japan)
From
[email protected] Tue Jul 22 15:15:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA16404;
Tue, 22 Jul 1997 15:09:12 -0500 (CDT)
Received: from cnnt07.scripps.com (cnnt07.scripps.com [204.78.63.213])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA15496
for <
[email protected]>; Tue, 22 Jul 1997 15:02:19 -0500 (CDT)
Received: by cnnt07.scripps.com with SMTP (Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63)
id <
[email protected]>; Tue, 22 Jul 1997 16:01:45 -0400
Message-Id: <c=US%a=_%p=Scripps_Howard%
[email protected]>
Date: Tue, 22 Jul 1997 16:01:43 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: "Schramm, Rich" <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Subject: upload permissions problem
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I need to setup the upload feature so that guest users can upload files
with certain permissions in one directory structure and different ones
in another, all owned by the user doing the upload.
For example, I want be able to set it up so that when user1 uploads to
/server/execs and any subdirectories that may be created, that file is
owned by user1 and has it's permission set to 0755. And when user2
uploads to /server/execs and any subdirectories, it will be owned by
user2 and have it's permissions set to 0755.
I know the "upload" directive in the ftpaccess file will allow me to set
permissions for files loaded into specific subdirectories, or *, but I
can't seem to get it set up so that any subdirectories that are created
have the permissions set properly. For example:
upload /server /exec/user1 yes user1 anongrp 0755
upload /server /exec/user1/* yes user1 anongrp 0755
will allow user1 to create files with 755 permission in it's chrooted
/exec/user1 directory, and /exec/user1/dir2. It will not, however,
create a 755 file in /exec/user1/dir2/dir3.
I can't even say:
upload /server * yes user1 anongrp 0755
because then all files in all directories for all users would be 755 and
owned by user1.
As I have multiple users that must share in the same chrooted home
directory (/server), this is a problem.
Does anyone have any suggestions?
Thanks,
Rich
From
[email protected] Tue Jul 22 16:32:09 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA24488;
Tue, 22 Jul 1997 16:26:56 -0500 (CDT)
Received: from mailbox1.ucsd.edu (mailbox1.ucsd.edu [132.239.1.53])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id QAA23674
for <
[email protected]>; Tue, 22 Jul 1997 16:24:44 -0500 (CDT)
Received: from eel (eel.ucsd.edu [132.239.16.13]) by mailbox1.ucsd.edu (8.8.5/8.6.9) with SMTP id OAA25889 for <@ucsd.edu:
[email protected]>; Tue, 22 Jul 1997 14:24:42 -0700 (PDT)
Received: by eel (950413.SGI.8.6.12/940406.SGI)
for
[email protected] id OAA09587; Tue, 22 Jul 1997 14:24:41 -0700
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 14:24:41 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: "Mona Wong" <
[email protected]>
To:
[email protected]
Subject: logging ip/hostname
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Z-Mail (3.2.3 08feb96 MediaMail)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi wu-ftpd users:
How can I get wu-ftpd to log the ip and/or hostname of successful
and/or unsuccessful connections?
Also, we got quite a few mozilla@ as password. Is this a standard web
browser entry?
I am using wu-ftpd-2.4.2-beta-13 on SunOS and SGI IRIX. I've checked
the FAQ and documentation and didn't see anything about this.
Your help is appreciated.
Sincerely,
Mona
--
===============================================================
Mona Wong, Programmer & Web Administrator
National Center for Microscopy and Imaging Research
University of California, San Diego
http://www-ncmir.ucsd.edu
===============================================================
From
[email protected] Tue Jul 22 16:56:36 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA21433;
Tue, 22 Jul 1997 16:51:38 -0500 (CDT)
Resent-Date: Tue, 22 Jul 1997 16:51:38 -0500 (CDT)
Resent-Message-Id: <
[email protected]>
Received: from academ.com (
[email protected] [198.137.249.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id QAA21389
for <
[email protected]>; Tue, 22 Jul 1997 16:46:09 -0500 (CDT)
Received: (from sob@localhost)
by academ.com (8.8.5/8.8.5) id QAA21272
for
[email protected]; Tue, 22 Jul 1997 16:46:06 -0500 (CDT)
Received: from owlman.academ.com (
[email protected] [198.137.249.5])
by academ.com (8.8.5/8.8.5) with ESMTP id PAA20610
for <
[email protected]>; Tue, 22 Jul 1997 15:40:48 -0500 (CDT)
Received: (from nobody@localhost)
by owlman.academ.com (8.8.5/8.8.5) id PAA08927
for sw-support-manager; Tue, 22 Jul 1997 15:40:49 -0500 (CDT)
Received: from academ.com (
[email protected] [198.137.249.2])
by owlman.academ.com (8.8.5/8.8.5) with ESMTP id PAA08922
for <
[email protected]>; Tue, 22 Jul 1997 15:40:46 -0500 (CDT)
Received: from throne.rau.lv (
[email protected] [159.148.112.2])
by academ.com (8.8.5/8.8.5) with ESMTP id PAA20606
for <
[email protected]>; Tue, 22 Jul 1997 15:40:36 -0500 (CDT)
Received: (from nick@localhost)
by throne.rau.lv (8.8.5/8.8.5) id XAA17110
for
[email protected]; Tue, 22 Jul 1997 23:40:25 +0300 (EEST)
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 23:40:25 +0300 (EEST)
Reply-To:
[email protected]
Sender:
[email protected]
From: Nick Matyushenko <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: [ACADEM-SW-SUPPORT #412] config files
Resent-To:
[email protected]
Resent-From:
[email protected] (Stan Barber)
X-Mailer: Mail User's Shell (7.2.5 10/14/92)
X-Authentication-Warning: owlman.academ.com: nobody set sender to
[email protected] using -f
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello !
I have a problem with wu-ftpd beta 13 tuning. It seems that it doesn't read
some of the config files, or something. I even tried to put hard compiled-in
paths to them - looks like it doesn't take effect for ftpaccess for instance ...
No greeting messages, no xferlog ... similar on Solaris 2.5.1 and FreeBSD.
Thank you.
Nick.
From
[email protected] Tue Jul 22 17:02:42 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA18581;
Tue, 22 Jul 1997 16:57:54 -0500 (CDT)
Received: from morpho.dar.net (
[email protected] [128.252.125.187])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id QAA26288
for <
[email protected]>; Tue, 22 Jul 1997 16:57:11 -0500 (CDT)
Received: from localhost (are1@localhost) by morpho.dar.net (8.8.5/8.8.2) with SMTP id QAA23470; Tue, 22 Jul 1997 16:57:57 -0500
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 16:57:57 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andy Ellsworth <
[email protected]>
To: Nick Matyushenko <
[email protected]>
Cc:
[email protected]
Subject: Re: [ACADEM-SW-SUPPORT #412] config files
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Authentication-Warning: morpho.dar.net: are1 owned process doing -bs
X-Sender:
[email protected]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Tue, 22 Jul 1997, Nick Matyushenko wrote:
> I have a problem with wu-ftpd beta 13 tuning. It seems that it doesn't read
> some of the config files, or something. I even tried to put hard compiled-in
> paths to them - looks like it doesn't take effect for ftpaccess for instance ...
> No greeting messages, no xferlog ... similar on Solaris 2.5.1 and FreeBSD.
Make sure you use the -a parameter when calling ftpd from inetd.conf;
otherwise it ignores ftpaccess.
And read the FAQ...
http://www.hvu.nl/~koos/wu-ftpd-faq.html .
+----------------------------------------------------------------------------+
| Andy Ellsworth |
[email protected] | Admin/Cyberdiplomat, Wuarchive |
+----------------------------------------------------------------------------+
From
[email protected] Tue Jul 22 18:19:35 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id SAA30816;
Tue, 22 Jul 1997 18:13:00 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id SAA27354
for <
[email protected]>; Tue, 22 Jul 1997 18:09:40 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id SAA27443;
Tue, 22 Jul 1997 18:09:19 -0500
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 18:09:19 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Nick Matyushenko <
[email protected]>
Cc:
[email protected]
Subject: Re: [ACADEM-SW-SUPPORT #412] config files
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Did you put -a on the wu-ftpd command line in /etc/inetd.conf?
/etc/ftpaccess is ignored if you didn't. See the man page for ftpd.
-- Michael
On Tue, 22 Jul 1997, Nick Matyushenko wrote:
> I have a problem with wu-ftpd beta 13 tuning. It seems that it doesn't
> read some of the config files, or something. I even tried to put hard
> compiled-in paths to them - looks like it doesn't take effect for
> ftpaccess for instance ... No greeting messages, no xferlog ... similar
> on Solaris 2.5.1 and FreeBSD.
From
[email protected] Tue Jul 22 19:21:24 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA05873;
Tue, 22 Jul 1997 19:15:12 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id TAA04218
for <
[email protected]>; Tue, 22 Jul 1997 19:12:57 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id TAA28683;
Tue, 22 Jul 1997 19:13:03 -0500
Message-Id: <
[email protected]>
Date: Tue, 22 Jul 1997 19:13:03 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Mona Wong <
[email protected]>
Cc:
[email protected]
Subject: Re: logging ip/hostname
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Tue, 22 Jul 1997, Mona Wong wrote:
> How can I get wu-ftpd to log the ip and/or hostname of successful
> and/or unsuccessful connections?
Look into tcpwrappers; that is an excellent way to put a good control on
who can get in, and all results are logged. If you don't know what that
is, mail me privately.
> Also, we got quite a few mozilla@ as password. Is this a standard web
> browser entry?
Yes. For a long time the anonymous password was one's email address. A
couple of years ago people started getting spammed back because of this,
so as an overall privacy issue it was changed to something meaningless.
-- Michael
From
[email protected] Tue Jul 22 20:42:22 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id UAA09810;
Tue, 22 Jul 1997 20:36:25 -0500 (CDT)
Received: from news.IAEhv.nl (
[email protected] [194.151.64.4])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id UAA07325
for <
[email protected]>; Tue, 22 Jul 1997 20:31:13 -0500 (CDT)
Received: from LOCAL (uucp@localhost)
by news.IAEhv.nl (8.6.13/1.63) with IAEhv.nl; pid 20685
on Wed, 23 Jul 1997 01:31:11 GMT; id BAA20685
efrom:
[email protected]; eto:
[email protected]
Received: (from news@localhost)
by Garfield.IAEhv.nl (8.8.6/8.8.5) id CAA23451;
Wed, 23 Jul 1997 02:26:48 +0200
Message-Id: <
[email protected]>
Date: 23 Jul 1997 00:26:48 GMT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: Final Prototype Version
References: <
[email protected]>
X-Sender: Perry Rovers <
[email protected]>
X-no-archive: yes
X-bofh-archive: yes
X-Newsreader: TIN [UNIX 1.3 unoff BETA 970324; i586 Linux 2.0.28]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Pink elephants with an attitude inspired Kent Landfield <
[email protected]> to tell garfield.mail.wu-ftpd:
[for some reason I was unsubscribed from wu-ftpd.. I caught up, but wonder
what happened that led to my unsubscription.. can't be that I sent mail
to listmaster about bounces when I sent something to the list n'est ce pas?]
: beta-13 version, you will NOT HAVE TO CHANGE A THING if you don't need the
: expanded virtual host support. Your existing ftpaccess file will work
: correctly. (It slices, it dices, it makes jullian fries! Sorry Perry...
"but I don't want any of that" [0] :)
: Beat you to it. ;) )
Boo! Hiss! Now I'll have to moan to you about trying to get the old version
to work on FreeBSD and failing miserably because my C knowledge is equal to
Kernighan and Ritchie's combined, when they were about 3 years old that is.
I'll send a patch against beta-13 in unified diff format (as opposed to
whatever format 'differs' is in, that fails to be grokked by patch) and I've
figured out what inet_ntoa wants with 'wrong argument 1' when called from
rdservers.c, line 89 or somewhere over there if I remember correctly.
We now return you to the wonders of inn 1.6b1... sigh..
[0] semi-obscure MP reference
--
Perry Rovers (
[email protected])
From
[email protected] Wed Jul 23 07:03:55 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id GAA23883;
Wed, 23 Jul 1997 06:58:54 -0500 (CDT)
Received: from sbcomp.com ([207.150.14.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id GAA22054
for <
[email protected]>; Wed, 23 Jul 1997 06:56:46 -0500 (CDT)
Received: from skb (rockford1-5.inwave.com [206.190.10.104])
by sbcomp.com (8.8.4/8.8.4) with SMTP
id GAA13478; Wed, 23 Jul 1997 06:56:05 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Wed, 23 Jul 1997 06:49:56 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: "Steven K. Buehler" <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: [ACADEM-SW-SUPPORT #412] config files
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
At 11:40 PM 7/22/97 +0300, you wrote:
>Hello !
>I have a problem with wu-ftpd beta 13 tuning. It seems that it doesn't read
>some of the config files, or something. I even tried to put hard compiled-in
>paths to them - looks like it doesn't take effect for ftpaccess for instance ...
>No greeting messages, no xferlog ... similar on Solaris 2.5.1 and FreeBSD.
Are you using the -a option in the inetd.conf file to start your wu-ftpd? If not, then that is why it isn't reading the ftpaccess file.
======================================================
Steven K. Buehler
S & B Computers
Rockford Illinois, USA
Phone: 815-398-7169
Fax: 815-398-7266
======================================================
From
[email protected] Wed Jul 23 14:38:35 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA24072;
Wed, 23 Jul 1997 14:32:13 -0500 (CDT)
Received: from socks1.raleigh.ibm.com (socks1.raleigh.ibm.com [204.146.167.124])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA25608
for <
[email protected]>; Wed, 23 Jul 1997 14:25:15 -0500 (CDT)
Received: from rtpmail02.raleigh.ibm.com by socks1.raleigh.ibm.com (AIX 4.1/UCB 5.64/RTP-FW1.0)
id AA05958; Wed, 23 Jul 1997 15:25:02 -0400
Received: from houns01.houston.ibm.com (houns01.houston.ibm.com [9.35.40.2])
by rtpmail02.raleigh.ibm.com (8.8.5/8.8.5/RTP-ral-1.1) with SMTP id PAA17108
for <
[email protected]>; Wed, 23 Jul 1997 15:25:02 -0400
Received: by houns01.houston.ibm.com(Lotus SMTP MTA v1.1 (385.6 5-6-1997)) id 862564DD.006AA3E2 ; Wed, 23 Jul 1997 14:24:47 -0500
Message-Id: <
[email protected]>
Date: Wed, 23 Jul 1997 14:24:42 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: access denied on AIX
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
X-Lotus-Fromdomain: HPSI
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Not sure if anyone has reported this or not but here goes...
I was trying to compile wuftp 2.4 on AIX 4.2.0 and got a yacc error when
it's trying to 'yacc ftpcmd.y'. Come to find out that yacc works different
on AIX 4.2.x than AIX 3.2.5. The errors are:
yacc ftpcmd.y
mv y.tab.c ftpcmd.c
cc - cc -O -DDEBUG -I.. -I../support -L../support -c ftpcmd.c
"ftpcmd.y", line 371.18: 1506-045 (S) Undeclared identifier cmdtab.
"ftpcmd.y", line 383.26: 1506-045 (S) Undeclared identifier sitetab.
"ftpdcmd.y", line 1057.36: 1506-280 (W) Function argument assignment
between types "void(*) (int)" and "void(*) ()" is not allowed.
"ftpcmd.y", line 1519.1: 1506-050 (S) redeclaration of print_groups
differs from previous declaration on line 683 of "ftpcmd.y".
"ftpcmd.y", line 1519.1: 1506-050 (I) Return type "void" in
redeclaration is not compatible with the previous return type "int".
make: 1254-004 The error code from the last command is 1.
Stop.
Anyway, if I rearrange the declarations in ftpcmd.y, then the compile
completes successfully. The lines with an '*' in front of it are the lines
I rearranged in ftpcmd.y - meaning these lines should be towards the top of
ftpcmd.y
%union {
char *String;
int Number;
}
* %{
* extern jmp_buf errcatch;
*
* void
* print_groups();
*
* #define CMD 0 /* begginning of command */
* #define ARGS 1 /* expect miscellaneous arguments */
* #define STR1 2 /* expect SP followed by STRING */
* #define STR2 3 /* expect STRING */
* #define OSTR 4 /* optional SP then STRING */
* #define ZSTR1 5 /* SP then optional STRING */
* #define ZSTR2 6 /* optional STRING after SP */
* #define SITECMD 7 /* SITE command */
* #define NSTR 8 /* Number followed by a string */
* #define STR3 9 /* expect STRING followed by optional SP then
STRING */
*
* struct tab {
* char *name;
* short token;
* short state;
* short implemented; /* 1 if command is implemented */
* char *help;
* };
*
* struct tab cmdtab[ ] = { /* In order defined in RFC 765 */
* { "USER", USER, STR1, 1, "<sp> username: },
* ...
* ...
* ...
* };
*
* struct tab sitetab [ ] = {"<sp>
* { "UMASK", UMASK, ARGS, 1, "[ <sp> umask ]" },
* ...
* ...
* ...
* };
* %}
*
%type <String> STRING password pathname pathstring username
%type <Number> NUMBER byte_size check_login form_code mode_code
octal_number
%type <Number> struct_code
%start cmd_list
%%
From
[email protected] Wed Jul 23 14:42:27 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA26036;
Wed, 23 Jul 1997 14:37:26 -0500 (CDT)
Received: from socks1.raleigh.ibm.com (socks1.raleigh.ibm.com [204.146.167.124])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA31577
for <
[email protected]>; Wed, 23 Jul 1997 14:35:55 -0500 (CDT)
Received: from rtpmail02.raleigh.ibm.com by socks1.raleigh.ibm.com (AIX 4.1/UCB 5.64/RTP-FW1.0)
id AA23860; Wed, 23 Jul 1997 15:35:45 -0400
Received: from houns01.houston.ibm.com (houns01.houston.ibm.com [9.35.40.2])
by rtpmail02.raleigh.ibm.com (8.8.5/8.8.5/RTP-ral-1.1) with SMTP id PAA29970
for <
[email protected]>; Wed, 23 Jul 1997 15:35:45 -0400
Received: by houns01.houston.ibm.com(Lotus SMTP MTA v1.1 (385.6 5-6-1997)) id 862564DD.006B9FB9 ; Wed, 23 Jul 1997 14:35:32 -0500
Message-Id: <
[email protected]>
Date: Wed, 23 Jul 1997 14:35:29 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: access denied
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
X-Lotus-Fromdomain: HPSI
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi all,
I recently compiled wu-ftp 2.4 on AIX 4.2.0 and started testing it. I'm
not using the -a flag in inetd.conf because I wanted to see if regular ftp
would work. I didn't set up ftpaccess, ftphosts or anything like that.
When I try to enter 'root' or a local account, I'd get the error
530 User root access denied...
Login failed
What am I doing wrong?
Thanks, Thuy
From
[email protected] Wed Jul 23 15:22:07 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA02600;
Wed, 23 Jul 1997 15:16:48 -0500 (CDT)
Received: from r2d2.ed.gov (
[email protected] [165.224.217.35])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA30581
for <
[email protected]>; Wed, 23 Jul 1997 15:14:18 -0500 (CDT)
Received: from localhost (giao@localhost) by r2d2.ed.gov (8.8.6/8.8.4) with SMTP id QAA26982; Wed, 23 Jul 1997 16:14:13 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Wed, 23 Jul 1997 16:14:13 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Quynh-Giao Tran <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: access denied
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
On Wed, 23 Jul 1997
[email protected] wrote:
>
> Hi all,
>
> I recently compiled wu-ftp 2.4 on AIX 4.2.0 and started testing it. I'm
> not using the -a flag in inetd.conf because I wanted to see if regular ftp
> would work. I didn't set up ftpaccess, ftphosts or anything like that.
> When I try to enter 'root' or a local account, I'd get the error
> 530 User root access denied...
> Login failed
It is probably because you have "root" listed in your "ftpusers" file.
Giao.
From
[email protected] Thu Jul 24 07:01:16 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id GAA05814;
Thu, 24 Jul 1997 06:54:14 -0500 (CDT)
Received: from noaardc.noaa.gov (noaardc.noaa.gov [140.90.27.61])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id GAA16615
for <
[email protected]>; Thu, 24 Jul 1997 06:49:49 -0500 (CDT)
Message-Id:
<06F2733D74213020*/c=US/admd=ATTMAIL/prmd=GOV+NOAA/o=CCNWS/s=Matusiewicz/g=Joseph/@MHS>
Date: 24 Jul 1997 07:52:51 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Joseph Matusiewicz <
[email protected]>
To:
[email protected] (Return requested),
[email protected] (Return requested)
Subject: Re: access denied
Content-Identifier: 06F2733D74213020
Content-Return: Allowed
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I'm not sure if this helps, but the wu-ftpd wouldn't allow real users
to start an ftp session unless there is an /etc/shells file. By
default, AIX doesn't have this file.
Hope this helps....
_
{(ojo)}
|\Q/|
joe matusiewicz \/-\/
national weather service | |
silver spring, md 20910 / /
301.713.0864 ext 174 \ \
[email protected] /__\
______________________________ Reply Separator _________________________________
Subject: access denied
Author:
[email protected] at EXTERNAL
Date: 7/23/97 5:42 PM
Hi all,
I recently compiled wu-ftp 2.4 on AIX 4.2.0 and started testing it. I'm
not using the -a flag in inetd.conf because I wanted to see if regular ftp
would work. I didn't set up ftpaccess, ftphosts or anything like that.
When I try to enter 'root' or a local account, I'd get the error
530 User root access denied...
Login failed
What am I doing wrong?
Thanks, Thuy
From
[email protected] Thu Jul 24 12:01:03 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA07062;
Thu, 24 Jul 1997 11:54:39 -0500 (CDT)
Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA06689
for <
[email protected]>; Thu, 24 Jul 1997 11:50:07 -0500 (CDT)
Received: from tiki ([13.1.85.56]) by alpha.xerox.com with SMTP id <53393(2)>; Thu, 24 Jul 1997 09:49:14 PDT
Received: from boscoe.ess.mc.xerox.com by tiki (4.1/SMI-4.1)
id AA06125; Thu, 24 Jul 97 12:49:50 EDT
Received: by boscoe.ess.mc.xerox.com (SMI-8.6/XeroxClient-2.4)
id MAA02062; Thu, 24 Jul 1997 12:49:27 -0400
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 09:49:27 PDT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Ken Hall)
To:
[email protected]
Cc:
[email protected]
Subject: ftpaccess file and messages on Solaris 2.5.1
X-Sun-Charset: US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I am having difficulty displaying messages for both
anonymous and login users. Would someone please share
their <ftpaccess> file with me as an illustration of this
technique as well as the message(s) stoarage location.
Thanks very much,
/Ken
From
[email protected] Thu Jul 24 12:11:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA04974;
Thu, 24 Jul 1997 12:06:35 -0500 (CDT)
Received: from e4000.star.net.il (e4000.star.net.il [195.8.195.8])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id MAA07350
for <
[email protected]>; Thu, 24 Jul 1997 12:00:50 -0500 (CDT)
Received: from borg (borg [195.8.195.9])
by e4000.star.net.il (8.8.5/8.8.5) with SMTP id TAA09418
for <
[email protected]>; Thu, 24 Jul 1997 19:58:39 -0200 (GMT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 19:59:00 +0300
Reply-To:
[email protected]
Sender:
[email protected]
From: Boaz Minitzer <
[email protected]>
To:
[email protected]
Subject: Compiling wu-ftpd 2.4 with BIND 8
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 3.01Gold (X11; I; SunOS 5.5.1 sun4u)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Has anyone been able to compile wu-ftpd 2.4 on Solaris 2.5.1
with BIND 8 ?
I have been able to do this with BIND 4.9.5 but not 8.
Thanks
Boaz
From
[email protected] Thu Jul 24 13:03:16 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA14182;
Thu, 24 Jul 1997 12:56:55 -0500 (CDT)
Received: from star.win.or.jp (star.win.or.jp [202.26.20.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id MAA14299
for <
[email protected]>; Thu, 24 Jul 1997 12:52:40 -0500 (CDT)
Received: (from ayamura@localhost) by star.win.or.jp (8.8.6/8.8.6) id CAA03937; Fri, 25 Jul 1997 02:51:16 +0900 (JST)
Message-Id: <
[email protected]>
Date: 25 Jul 1997 02:51:16 +0900
Reply-To:
[email protected]
Sender:
[email protected]
From: Ayamura Kikuchi <
[email protected]>
To:
[email protected]
Subject: Re: Compiling wu-ftpd 2.4 with BIND 8
In-Reply-To: Boaz Minitzer's message of "Thu, 24 Jul 1997 19:59:00 +0300"
References: <
[email protected]>
Mime-Version: 1.0 (generated by SEMI MIME-Edit 0.85 "Kaga-Ichinomiya")
Content-Type: text/plain; charset=US-ASCII
X-PGP-Public-Key:
http://www.ayamura.win.or.jp/pgp-public-key.asc
X-Emacs: Emacs 19.34, MULE 2.3 (SUETSUMUHANA)
X-Mailer: Gnus v5.4.64 + SEMI patch (r2.1)/Emacs 19.34
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> Has anyone been able to compile wu-ftpd 2.4 on Solaris 2.5.1
>
> with BIND 8 ?
>
> I have been able to do this with BIND 4.9.5 but not 8.
Try to compile it with include and library files derived from bind-8.1.1.
Edit the src/makefiles/Makefile.sol and add the following:
add "-I/usr/local/bind/include" to the IFLAGS macro;
add "-L/usr/local/bind/lib" to the LFLAGS macro;
add "-lbind" to the LIBES macro.
--
Ayamura Kikuchi (Dept., of Medicine, Keio Univ., Japan)
From
[email protected] Thu Jul 24 13:23:00 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA14727;
Thu, 24 Jul 1997 13:15:56 -0500 (CDT)
Received: from e4000.star.net.il (e4000.star.net.il [195.8.195.8])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id NAA15163
for <
[email protected]>; Thu, 24 Jul 1997 13:12:54 -0500 (CDT)
Received: from borg (borg [195.8.195.9])
by e4000.star.net.il (8.8.5/8.8.5) with SMTP id VAA11074;
Thu, 24 Jul 1997 21:10:08 -0200 (GMT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 21:10:29 +0300
Reply-To:
[email protected]
Sender:
[email protected]
From: Boaz Minitzer <
[email protected]>
To: Ayamura Kikuchi <
[email protected]>
Cc:
[email protected]
Subject: Re: Compiling wu-ftpd 2.4 with BIND 8
References: <
[email protected]> <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 3.01Gold (X11; I; SunOS 5.5.1 sun4u)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I did that with wu-ftpd 2.4 and it didnt work. It did work
on wu-ftpd-2.4-academ though. I didnt check the difference between the
two
yet.
Thanks anyway,
Boaz
Ayamura Kikuchi wrote:
>
> > Has anyone been able to compile wu-ftpd 2.4 on Solaris 2.5.1
> >
> > with BIND 8 ?
> >
> > I have been able to do this with BIND 4.9.5 but not 8.
>
> Try to compile it with include and library files derived from bind-8.1.1.
>
> Edit the src/makefiles/Makefile.sol and add the following:
> add "-I/usr/local/bind/include" to the IFLAGS macro;
> add "-L/usr/local/bind/lib" to the LFLAGS macro;
> add "-lbind" to the LIBES macro.
>
> --
> Ayamura Kikuchi (Dept., of Medicine, Keio Univ., Japan)
From
[email protected] Thu Jul 24 14:02:22 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA19727;
Thu, 24 Jul 1997 13:47:51 -0500 (CDT)
Received: from mailer.sagar.gob.mx (mailer.sagar.gob.mx [198.139.10.39])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA19071
for <
[email protected]>; Thu, 24 Jul 1997 13:41:25 -0500 (CDT)
Received: from silvia.sagar.gob.mx by mailer.sagar.gob.mx (SMI-8.6/SMI-SVR4)
id NAA09123; Thu, 24 Jul 1997 13:36:43 -0600
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 13:44:32 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: "Ing. Silvia Beltr�n S." <
[email protected]>
To:
[email protected]
Subject: access denied
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.01 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Dear managers,
I hope somebody help me, I installed the wu-ftpd2.4 but nobody can
access, cause the server always denied de access.
The ftphosts has:
allow * *
The ftpusers has:
root
bin
boot
daemon
nobody
operator
sys
uucp
The ftpaccess has:
loginfails 3
class anonimo guest,anonymous 198.139.10.*
class privado real 198.139.10.*
limit anonimo 20 Any
/usr/local/ftpanonimo/msgs/msg.toomany
limit privado 20 SaSu|Any1800-0600
/usr/local/ftpanonimo/msgs/msg.toomany
readme README* login
readme README* cwd=*
message /welcome.msg login
message .message cwd=*
compress yes local remote
tar yes local remote
private yes
passwd-check rfc822 enforce
log commands real
log transfers anonymous,real inbound,outbound
shutdown /usr/local/ftpanonimo/shutmsg
delete no guest,anonymous # delete permission?
overwrite no guest,anonymous # overwrite permission?
rename no guest,anonymous # rename permission?
chmod no anonymous # chmod permission?
umask no anonymous # umask permission?
delete yes real # delete permission?
overwrite yes real # overwrite permission?
rename yes real # rename permission?
chmod yes real # chmod permission?
umask yes real # umask permission?
upload /services/ftpadm/ftp * no
upload /services/ftpadm/ftp/pub/ /incoming/UIPM yes ftp ftp
0666 dirs
alias inc: /incoming
alias buzon: /incoming/Delegaciones
alias internet: /pub/Internet
cdpath /incoming
path-filter anonymous /usr/local/ftpanonimo/pathmsg
^[-A-Za-z0-9_\.]*$ ^\.
^-
path-filter guest /usr/local/ftpanonimo/pathmsg
^[-A-Za-z0-9_\.]*$ ^\.
^-
path-filter real /usr/local/ftpanonimo/pathmsg
^[-A-Za-z0-9_\.]*$ ^\. ^
-
guestgroup ftponly
email
[email protected]
Thanks in advance.
Silvia
From
[email protected] Thu Jul 24 14:16:07 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA10223;
Thu, 24 Jul 1997 14:07:41 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA21700
for <
[email protected]>; Thu, 24 Jul 1997 14:06:05 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id OAA11916;
Thu, 24 Jul 1997 14:06:01 -0500
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 14:06:01 -0500 (CDT)
Reply-To: Michael Brennen <
[email protected]>
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: "Ing. Silvia Beltr�n S." <
[email protected]>
Cc:
[email protected]
Subject: Re: access denied
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by wugate.wustl.edu id OAA19269
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
If you are using tcpwrappers, make sure there is a proper entry in
/etc/hosts.allow to allow wu-ftpd in.
You should consider upgrading to the lastest beta version for both bug and
security fixes. There are other resources below.
-- Michael
On Thu, 24 Jul 1997, Ing. Silvia Beltr�n S. wrote:
> I hope somebody help me, I installed the wu-ftpd2.4 but nobody can
> access, cause the server always denied de access.
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Thu Jul 24 14:49:35 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA24101;
Thu, 24 Jul 1997 14:32:24 -0500 (CDT)
Received: from post.larc.nasa.gov (post.larc.nasa.gov [128.155.4.45])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA15851
for <
[email protected]>; Thu, 24 Jul 1997 14:27:42 -0500 (CDT)
Received: from express.larc.nasa.gov (express.larc.nasa.gov [128.155.4.44])
by post.larc.nasa.gov (8.8.6/pohub4.0) with ESMTP id OAA26312
for <
[email protected]>; Thu, 24 Jul 1997 14:31:26 -0400 (EDT)
Received: from nonsuch (nonsuch.larc.nasa.gov [192.107.191.65])
by express.larc.nasa.gov (8.8.6/posvr4.0) with SMTP id OAA22549
for <
[email protected]>; Thu, 24 Jul 1997 14:31:26 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 14:34:48 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Rick Sailey <
[email protected]>
To:
[email protected]
Subject: dir command produces no output
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 3.01Gold (X11; I; SunOS 5.5.1 sun4m)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I installed wu-ftpd 2.4 on Solaris 2.5.1 and everything works great
except there is no output returned with the dir command. I used both
the Solaris /bin/ls and GUN ls binaries with the same results. Anyone
have a possible solution??
--
- - - - - - - - - - - - - -
Richard Sailey ECS Sustaining Engineering, NASA Langley DAAC
(757) 864-7416 Hughes Information Technology Systems (HITS)
2 South Wright St. (Bldg 1268C, Room 1306, MS 157D)
Hampton, Virginia 23681-0001
email:
[email protected] fax: (757) 864-9882
- - - - - - - - - - - - - -
From
[email protected] Thu Jul 24 15:06:02 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA26063;
Thu, 24 Jul 1997 14:51:04 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA23228
for <
[email protected]>; Thu, 24 Jul 1997 14:49:39 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id OAA12886;
Thu, 24 Jul 1997 14:49:42 -0500
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 14:49:42 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Rick Sailey <
[email protected]>
Cc:
[email protected]
Subject: Re: dir command produces no output
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
See the FAQ and guest howto. Consider upgrading to the beta for bug and
security fix reasons.
-- Michael
On Thu, 24 Jul 1997, Rick Sailey wrote:
> I installed wu-ftpd 2.4 on Solaris 2.5.1 and everything works great
> except there is no output returned with the dir command. I used both
> the Solaris /bin/ls and GUN ls binaries with the same results. Anyone
> have a possible solution??
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Thu Jul 24 15:07:16 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA25170;
Thu, 24 Jul 1997 14:57:27 -0500 (CDT)
Received: from gibnet.gi (root.gibnet.gi [195.166.192.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA27527
for <
[email protected]>; Thu, 24 Jul 1997 14:52:49 -0500 (CDT)
Received: from rocknet.therock.gi by gibnet.gi (SMI-8.6/SMI-SVR4)
id VAA13205; Thu, 24 Jul 1997 21:52:11 +0200
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 21:55:46 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Danny Calamaro <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: dir command produces no output
References: <
[email protected]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.0 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I had the same problem a few days, you have to setup up the libs dev
etc, correctly, and it should work with either "ls"
If you use the GUN ls binaries which is how I'm using it you need to
setup the following.
/bin/ls
/dev/zero \
/dev/tcp \ These you must create in a special way
/dev/udp / Its described in the FAQ
/dev/ticotsord /
/usr/lib/ld.so.1
/usr/lib/libc.so.1
/usr/lib/libdl.so.1
This is what I've installed and its now working.
Danny
Rick Sailey wrote:
>
> I installed wu-ftpd 2.4 on Solaris 2.5.1 and everything works great
> except there is no output returned with the dir command. I used both
> the Solaris /bin/ls and GUN ls binaries with the same results. Anyone
> have a possible solution??
> --
> - - - - - - - - - - - - - -
> Richard Sailey ECS Sustaining Engineering, NASA Langley DAAC
> (757) 864-7416 Hughes Information Technology Systems (HITS)
> 2 South Wright St. (Bldg 1268C, Room 1306, MS 157D)
> Hampton, Virginia 23681-0001
> email:
[email protected] fax: (757) 864-9882
> - - - - - - - - - - - - - -
From
[email protected] Thu Jul 24 15:28:38 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA25063;
Thu, 24 Jul 1997 15:10:13 -0500 (CDT)
Received: from ftms.ftms.com (bajor.ftms.com [198.150.23.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA25445
for <
[email protected]>; Thu, 24 Jul 1997 15:09:01 -0500 (CDT)
Received: (from brown@localhost)
by ftms.ftms.com (8.8.5/8.8.5) id PAA23491
for
[email protected]; Thu, 24 Jul 1997 15:08:29 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 15:08:29 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Vidiot <
[email protected]>
To:
[email protected]
Subject: Re: dir command produces no output
In-Reply-To: <
[email protected]> from "Michael Brennen" at Jul 24, 97 02:49:42 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: 8.0 -- ListProcessor(tm) by CREN
<See the FAQ and guest howto. Consider upgrading to the beta for bug and
<security fix reasons.
<
< -- Michael
<
<On Thu, 24 Jul 1997, Rick Sailey wrote:
<
<> I installed wu-ftpd 2.4 on Solaris 2.5.1 and everything works great
<> except there is no output returned with the dir command. I used both
<> the Solaris /bin/ls and GUN ls binaries with the same results. Anyone
<> have a possible solution??
<
<
<This is the location for the latest wu-ftpd. You can't see the
<directory contents, but get the file anyway. It's there.
<
<
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
<
<wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
< OR
< send mail to
[email protected]
< with a subject line: send faq
<
<guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
< OR
< send mail to "
[email protected]"
< (immediate autoresponder; subject does not matter)
<
<wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
<wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
<
<There are additional security references in the above docs.
If you find the original Sun supplied man page ftpd, you will find a
script that is run that will set up the ftp area with all the necessary
files. The problem is that the wu-ftpd install overwrites the Sun man page.
Hopefully that has been fixed. The script will fix the dir problem.
MB
--
System Administrator - Finnigan FT/MS - Madison WI. URL:
http://www.ftms.com/
e-mail:
[email protected]
phone: (608) 273-8262 ext: 612 fax: (608) 273-8719
Visit - URL:
http://www.cdsnet.net/vidiot/ (Your link to Star Trek and UPN)
From
[email protected] Thu Jul 24 15:38:26 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA31127;
Thu, 24 Jul 1997 15:29:56 -0500 (CDT)
Received: from i3tele.com (i3tele.com [204.178.210.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA30567
for <
[email protected]>; Thu, 24 Jul 1997 15:26:58 -0500 (CDT)
Received: from fawn (fawn.i3tele.com [204.178.210.62]) by i3tele.com (8.7.1/8.6.9) with SMTP id PAA22215; Thu, 24 Jul 1997 15:39:59 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 15:39:55 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Mark Rogov <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: dir command produces no output
In-Reply-To: <
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Light Version 3.0.1 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I just had the same problem and it turned to be that one
of the libraries in /usr/lib/ was missing. try
truss (or if you don't have it trace will work, too) /bin/ls
there you would see which libraries it needs.
At 02:34 PM 7/24/97 -0400, you wrote:
>I installed wu-ftpd 2.4 on Solaris 2.5.1 and everything works great
>except there is no output returned with the dir command. I used both
>the Solaris /bin/ls and GUN ls binaries with the same results. Anyone
>have a possible solution??
---------------------------------------------------------------------------
\| ||
--"-------\ Mark Rogov || E-mail:
[email protected]
| O | "Internet Made Easy" TM || HP:
http://idt.net/~marik
| \___o/ 56 W. 22nd St. 10th Floor || TEL 212/228-7900
| | New York, NY 10010 || FAX 212/228-1152
| |
http://www.i3tele.com ||
"HEY, LIFE IS FULL OF SURPRISES!!!"
---------------------------------------------------------------------------
From
[email protected] Thu Jul 24 16:07:13 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA32703;
Thu, 24 Jul 1997 16:00:32 -0500 (CDT)
Received: from cnnt07.scripps.com (cnnt07.scripps.com [204.78.63.213])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA23252
for <
[email protected]>; Thu, 24 Jul 1997 15:58:33 -0500 (CDT)
Received: by cnnt07.scripps.com with SMTP (Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63)
id <
[email protected]>; Thu, 24 Jul 1997 16:58:05 -0400
Message-Id: <c=US%a=_%p=Scripps_Howard%
[email protected]>
Date: Thu, 24 Jul 1997 16:58:30 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: "Schramm, Rich" <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Subject: FW: upload permissions problem
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Exchange Server Internet Mail Connector Version 4.0.994.63
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello,
I originally sent this message to mail.wustl.edu, and since no one at
all responded to it, I assume that that was the wrong address, so here
is a copy of the message sent to wugate.wustl.edu. Hope this works.
>-----Original Message-----
>From: Schramm, Rich
>Sent: Tuesday, July 22, 1997 4:02 PM
>To: '
[email protected]'
>Subject: upload permissions problem
>
>Hi,
>
>I need to setup the upload feature so that guest users can upload files
>with certain permissions in one directory structure and different ones
>in another, all owned by the user doing the upload.
>
>For example, I want be able to set it up so that when user1 uploads to
>/server/execs and any subdirectories that may be created, that file is
>owned by user1 and has it's permission set to 0755. And when user2
>uploads to /server/execs and any subdirectories, it will be owned by
>user2 and have it's permissions set to 0755.
>
>I know the "upload" directive in the ftpaccess file will allow me to set
>permissions for files loaded into specific subdirectories, or *, but I
>can't seem to get it set up so that any subdirectories that are created
>have the permissions set properly. For example:
>
>upload /server /exec/user1 yes user1 anongrp 0755
>upload /server /exec/user1/* yes user1 anongrp 0755
>
>will allow user1 to create files with 755 permission in it's chrooted
>/exec/user1 directory, and /exec/user1/dir2. It will not, however,
>create a 755 file in /exec/user1/dir2/dir3.
>
>I can't even say:
>
>upload /server * yes user1 anongrp 0755
>
>because then all files in all directories for all users would be 755 and
>owned by user1.
>
>As I have multiple users that must share in the same chrooted home
>directory (/server), this is a problem.
>
>Does anyone have any suggestions?
>
>Thanks,
>
>Rich
From
[email protected] Thu Jul 24 17:13:02 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA03709;
Thu, 24 Jul 1997 17:03:34 -0500 (CDT)
Received: from ftms.ftms.com (bajor.ftms.com [198.150.23.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id QAA05636
for <
[email protected]>; Thu, 24 Jul 1997 16:58:11 -0500 (CDT)
Received: (from brown@localhost)
by ftms.ftms.com (8.8.5/8.8.5) id QAA25654
for
[email protected]; Thu, 24 Jul 1997 16:57:30 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 16:57:30 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Vidiot <
[email protected]>
To:
[email protected]
Subject: Great, wu-ftpd mail list is broken
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: 8.0 -- ListProcessor(tm) by CREN
An answer I posted to the wu-ftps mail list got posted OK, but one of the
people it is supposed to go to has an error. Here are the headers:
From:
[email protected][email protected][email protected]
To:
[email protected][email protected][email protected]
Date: Thu, 24 Jul 1997 16:14:13 -0400
Subject: Returned mail: User unknown
The original message was received at Thu, 24 Jul 1997 16:14:09 -0400
from lzleo.spm.lucent.com [135.24.92.220]
----- The following addresses had delivery problems -----
<@cbig1.firewall.lucent.com,@lucent.com,@lzleo.spm.lucent.com:
[email protected]@prems> (unrecoverable error)
----- Transcript of session follows -----
/opt/mail/bin/postmail: No valid e-mail addresses found.
550 <@cbig1.firewall.lucent.com,@lucent.com,@lzleo.spm.lucent.com:
[email protected]@prems>... User unknown
----- Original message follows -----
Return-Path: <
[email protected]@lzleo.spm.lucent.com>
Received: from lzleo.spm.lucent.com by cbig2.firewall.lucent.com (SMI-8.6/EMS-L sol2)
id QAA12648; Thu, 24 Jul 1997 16:14:09 -0400
From:
[email protected]@lzleo.spm.lucent.com
Received: by cbig2.firewall.lucent.com (SMI-8.6/EMS-L sol2)
id QAA09997; Thu, 24 Jul 1997 16:11:04 -0400
Received: by cbgw2.lucent.com; Thu Jul 24 16:14 EDT 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA25242;
Thu, 24 Jul 1997 15:10:42 -0500 (CDT)
Received: from ftms.ftms.com (bajor.ftms.com [198.150.23.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA25445
for <
[email protected]>; Thu, 24 Jul 1997 15:09:01 -0500 (CDT)
Received: (from brown@localhost)
by ftms.ftms.com (8.8.5/8.8.5) id PAA23491
for
[email protected]; Thu, 24 Jul 1997 15:08:29 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 15:08:29 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
>From: Vidiot <
[email protected]>
To:
[email protected]
Subject: Re: dir command produces no output
In-Reply-To: <
[email protected]> from "Michael Brennen" at Jul 24, 97 02:49:42 pm
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
X-Mailer: ELM [version 2.4 PL25]
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Content-Type: text/plain; charset=US-ASCII
content-length: 1705
Whomever is in charge of this list needs to fix this problem.
MB
--
System Administrator - Finnigan FT/MS - Madison WI. URL:
http://www.ftms.com/
e-mail:
[email protected]
phone: (608) 273-8262 ext: 612 fax: (608) 273-8719
Visit - URL:
http://www.cdsnet.net/vidiot/ (Your link to Star Trek and UPN)
From
[email protected] Thu Jul 24 17:17:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA09150;
Thu, 24 Jul 1997 17:09:43 -0500 (CDT)
Received: from icarus.yml.com (icarus.yml.com [207.226.52.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA32577
for <
[email protected]>; Thu, 24 Jul 1997 17:06:08 -0500 (CDT)
Received: from localhost (buffalo@localhost) by icarus.yml.com (8.7.6/8.7.3) with SMTP id SAA07660 for <
[email protected]>; Fri, 25 Jul 1997 18:13:25 -0400
Message-Id: <
[email protected]>
Date: Fri, 25 Jul 1997 18:13:25 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Duncan Sterling <
[email protected]>
To:
[email protected]
Subject: ls problem, wu-2.4(13), Solaris 2.5
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
When trying to use the 'guestgroup' limitation (which emulates anon ftp) I
get the following error when attempting to log into the server as a
guestgroup user:
---------
220 dns1 FTP server (Version wu-2.4(13) Wed Apr 23 19:20:42 EDT 1997)
ready.
Name (medianext:buffalo): testuser
331 Password required for testuser.
Password:
230 User testuser logged in. Access restrictions apply.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
200 PORT command successful.
425 Can't create data socket (0.0.0.0,20): Bad file number.
ftp>
-------------
Suggestions, anyone?
TIA,
--Duncan
From
[email protected] Thu Jul 24 17:55:25 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA09188;
Thu, 24 Jul 1997 17:47:30 -0500 (CDT)
Received: from byron ([194.168.84.65])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA03502
for <
[email protected]>; Thu, 24 Jul 1997 17:46:44 -0500 (CDT)
Received: from godfrey1.emnet.co.uk (actually host dial11.emnet.co.uk)
by byron with SMTP (XT-PP); Thu, 24 Jul 1997 23:43:52 +0100
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 23:46:12 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: NEWBIE question - multiple real users
MIME-Version: 1.0
Content-Type: text/plain; charset="US-ASCII"
X-mailer: Pegasus Mail for Windows (v2.33)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi, I am new here. Can anyone point me to where I can find the answer
to this question?
I want to allow multiple real users to use ftp, each with their own
password, and each one being put into their own file area, eg:
user1 is put into /user1/incoming
user2 into /user2/incoming etc
Please, wher can I find how to set this up?
Thanks in advance.
Godfrey N Nix
Network Operations Manager
East Midlands Network Ltd
Nottingham England
From
[email protected] Thu Jul 24 18:10:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id SAA14109;
Thu, 24 Jul 1997 18:00:23 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA09436
for <
[email protected]>; Thu, 24 Jul 1997 17:57:53 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 24 Jul 1997 17:58:25 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: Great, wu-ftpd mail list is broken
In-Reply-To: <
[email protected]> from "Vidiot" at Jul 24, 97 04:57:30 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: 8.0 -- ListProcessor(tm) by CREN
#
# An answer I posted to the wu-ftps mail list got posted OK, but one of the
# people it is supposed to go to has an error. Here are the headers:
#
# From:
[email protected][email protected][email protected]
# To:
[email protected][email protected][email protected]
# Date: Thu, 24 Jul 1997 16:14:13 -0400
# Subject: Returned mail: User unknown
#
# The original message was received at Thu, 24 Jul 1997 16:14:09 -0400
# from lzleo.spm.lucent.com [135.24.92.220]
#
# ----- The following addresses had delivery problems -----
# <@cbig1.firewall.lucent.com,@lucent.com,@lzleo.spm.lucent.com:
[email protected]@prems> (unrecoverable error)
#
# ----- Transcript of session follows -----
# /opt/mail/bin/postmail: No valid e-mail addresses found.
# 550 <@cbig1.firewall.lucent.com,@lucent.com,@lzleo.spm.lucent.com:
[email protected]@prems>... User unknown
This is not a broken list, simply a bad user address and the bounce went back
to the submitter as well as to the list admins. I am in the process of working
with WUSTL to have the myself added as an administrator of the list. They
suggested it ... and I agreed thinking it might be worth while to take a more
active role. They have listed me as one of the listmasters but I have not
gotten the password needed to manage the list. (I get the bounces without
the capability to correct them. ;) ) Hopefully we will link up in the next
day or so.
Note: The list will still be run out of wustl.edu and no addresses will change.
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Fri Jul 25 07:19:27 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id HAA25693;
Fri, 25 Jul 1997 07:11:11 -0500 (CDT)
Received: from newfed.frb.gov (newfed.frb.gov [198.3.221.5])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id HAA29201
for <
[email protected]>; Fri, 25 Jul 1997 07:07:49 -0500 (CDT)
Received: from FRB.GOV (umailfwd@localhost)
by newfed.frb.gov (8.8.6/8.8.6) with UUCP id HAA18306;
Fri, 25 Jul 1997 07:46:31 -0400 (EDT)
Received: from venkata.FRB.GOV by frbgate.FRB.GOV (4.1/SMI-4.0)
id AA21608; Fri, 25 Jul 97 07:59:59 EDT
Received: from venkata by venkata.FRB.GOV (SMI-8.6/SMI-SVR4)
id HAA17204; Fri, 25 Jul 1997 07:59:58 -0400
Message-Id: <
[email protected]>
Date: Fri, 25 Jul 1997 07:59:58 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: Sridhar Mahankali <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: ls problem, wu-2.4(13), Solaris 2.5
In-Reply-To: Your message of "Fri, 25 Jul 1997 18:13:25 EDT."
<
[email protected]>
X-Authentication-Warning: newfed.frb.gov: umailfwd set sender to FRB.GOV!m1sxm03 using -f
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Duncan,
Check out the FAQ at "
http://www.hvu.nl/~koos/wu-ftpd-faq.html"
and look at answer to Q.No. 8.
Sridhar
>
> When trying to use the 'guestgroup' limitation (which emulates anon ftp) I
> get the following error when attempting to log into the server as a
> guestgroup user:
>
> ---------
>
> 220 dns1 FTP server (Version wu-2.4(13) Wed Apr 23 19:20:42 EDT 1997)
> ready.
> Name (medianext:buffalo): testuser
> 331 Password required for testuser.
> Password:
> 230 User testuser logged in. Access restrictions apply.
> Remote system type is UNIX.
> Using binary mode to transfer files.
> ftp> ls
> 200 PORT command successful.
> 425 Can't create data socket (0.0.0.0,20): Bad file number.
> ftp>
>
> -------------
>
> Suggestions, anyone?
>
> TIA,
>
> --Duncan
>
>
From
[email protected] Fri Jul 25 11:01:32 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA29275;
Fri, 25 Jul 1997 10:54:37 -0500 (CDT)
Received: from byron ([194.168.84.65])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id KAA32158
for <
[email protected]>; Fri, 25 Jul 1997 10:47:49 -0500 (CDT)
Received: from Godfrey.emnet.co.uk (actually host jeep.emnet.co.uk) by byron
with SMTP (XT-PP); Fri, 25 Jul 1997 16:44:57 +0100
Message-Id: <
[email protected]>
Date: Fri, 25 Jul 1997 16:44:33 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Has list died?
MIME-Version: 1.0
Content-Type: text/plain; charset="US-ASCII"
X-mailer: Pegasus Mail for Windows (v2.33)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
As a newcomer to the list yesterday, I received about 15 messages
and then posted one of my own ( I need to find how to allow in
real users, but to have them unable to get out of their own directory)
Now I find there have been no more messages to/from the list?
What happened?
Apologies if lots of others have posted a similar query!
Godfrey N Nix C.Eng MBCS B.ScTech(Hons)
Network Operations Manager
East Midlands Network Ltd (emnet)
phone 0115 956 8260
visit
http://www.emnet.co.uk
From
[email protected] Fri Jul 25 15:53:10 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA30677;
Fri, 25 Jul 1997 15:44:01 -0500 (CDT)
Received: from triumph.doc.ic.ac.uk (triumph.doc.ic.ac.uk [146.169.24.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA18641
for <
[email protected]>; Fri, 25 Jul 1997 15:40:27 -0500 (CDT)
Received: from triumph.doc.ic.ac.uk [146.169.24.1]
by triumph.doc.ic.ac.uk with esmtp (Exim 1.61 #5)
id 0wrrA1-0001vN-00; Fri, 25 Jul 1997 21:40:25 +0100
Message-Id: <
[email protected]>
Date: Fri, 25 Jul 1997 21:40:25 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Lee McLoughlin <
[email protected]>
To:
[email protected]
Subject: missing chown on mkdir
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="------------38100BF701A7A0F9F9DB3FE6"
X-Sender:
[email protected]
X-Mailer: Mozilla 4.01b6C [en] (X11; I; SunOS 4.1.3_U1 sun4m)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
This is a multi-part message in MIME format.
--------------38100BF701A7A0F9F9DB3FE6
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
While trying to figure out why a user of SunSITE couldn't do uploads I
found the problem was that any directories they were creating were still
owned by ftp and not the user specified in the ftpaccess upload line.
On checking I found that after files are created fchown() is called to
set the user and group correctly. This currently is not done after a
mkdir().
The attached patch fixes the problem.
It would also be useful to be able to specify the modes of directories
created by users. At the moment I tell them to run a chmod after any
mkdir. This works OK but shouldn't really be necessary.
--
Lee McLoughlin. Phone: +44 171 594 8388
IC-Parc, Imperial College, Fax: +44 171 594 8432
South Kensington, London. SW7 2BZ. UK. Email:
[email protected]
--------------38100BF701A7A0F9F9DB3FE6
Content-Type: text/plain; charset=us-ascii; name="wu-2.4.2-upd13-chownpatch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="wu-2.4.2-upd13-chownpatch"
*** wu-ftpd-2.4.2-beta-13-ORIG/src/ftpd.c Mon Mar 3 09:39:56 1997
--- wu-ftpd-2.4.2-beta-13/src/ftpd.c Fri Jul 25 21:27:47 1997
***************
*** 2956,2961 ****
--- 3153,3159 ----
char *name;
#endif
{
+ uid_t oldid;
uid_t uid;
gid_t gid;
int valid;
***************
*** 2979,2984 ****
--- 3177,3192 ----
perror_reply(550, name);
return;
}
+
+ oldid = geteuid();
+ (void) seteuid((uid_t) 0);
+ if ((chown(name, uid, gid)) < 0) {
+ (void) seteuid(oldid);
+ perror_reply(550, "chown");
+ return;
+ }
+ (void) seteuid(oldid);
+
reply(257, "MKD command successful.");
}
--------------38100BF701A7A0F9F9DB3FE6--
From
[email protected] Fri Jul 25 20:03:03 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA17516;
Fri, 25 Jul 1997 19:55:20 -0500 (CDT)
Received: from shell.gnxs.com.au (
[email protected] [203.2.239.132])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id TAA14791
for <
[email protected]>; Fri, 25 Jul 1997 19:50:00 -0500 (CDT)
Received: from localhost (wuftp@localhost)
by shell.gnxs.com.au (8.8.4/8.8.4) with SMTP
id LAA02970 for <
[email protected]>; Sat, 26 Jul 1997 11:02:02 +1000
Message-Id: <
[email protected]>
Date: Sat, 26 Jul 1997 11:02:01 +1000 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: WU-FTP User <
[email protected]>
To:
[email protected]
Subject: limiting the amount of transfer bytes from a site
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I'm wondering if wu-ftpd has the ability to force only, say, 1k/sec for
each anonymous user ftp'ing out of the server?
Currently it allows full bandwidth for the requesting person, which hogs
the link considerably when many ftp users are in the server ftping files
out.
Thanks.
Michael.
From
[email protected] Sat Jul 26 11:15:51 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA26610;
Sat, 26 Jul 1997 11:08:16 -0500 (CDT)
Received: from kcgw2.att.com (kcgw2.att.com [192.128.133.152])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA31691
for <
[email protected]>; Sat, 26 Jul 1997 11:07:10 -0500 (CDT)
Received: from lynxhub.lz.att.com by kcig2.att.att.com (SMI-8.6/EMS-1.2 sol2)
id KAA06558; Sat, 26 Jul 1997 10:58:18 -0500
Received: from HMMICRON2 ([135.25.204.215]) by lynxhub.lz.att.com (5.x/EMS-1.2 sol2)
id AA01216; Sat, 26 Jul 1997 12:04:56 -0400
Received: by HMMICRON2 with Microsoft Mail
id <01BC99BC.598570B0@HMMICRON2>; Sat, 26 Jul 1997 12:06:29 -0400
Message-Id: <01BC99BC.598570B0@HMMICRON2>
Date: Sat, 26 Jul 1997 12:06:23 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: "Roger A. Hanke" <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Subject: RE: inetd -r options on Solaris 2.5.1
X-Ms-Attachment: WINMAIL.DAT 0 00-00-1980 00:00
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Dug this old message out after talking to my Sun support person the
other day. He went into the solaris 2.5.1 source code and checked out
the inetd -r option usage. He confirmed it only applies to connectionless
protocols like UDP, not TCP. He has MR'd the inetd man page to make
this clearer in the future. Has anyone seen the inetd looping error on
Solaris 2.5.1 to cast any doubts on his research?
Thanx,
Roger Hanke
[email protected]
----------
From: Alain Magloire
Sent: Wednesday, April 30, 1997 5:47 PM
To: Trent
Cc:
[email protected]
Subject: Re: idle timeout
Salut A Vous, O Grand Manitou Trent !!
>
> correctly. Every few min (esp with high users) I have to hup inetd to
> keep it going. I always get
> inetd[123]: ftp/tcp server failing (looping), service terminated
you have a busy server :-)
on Solaris, and probably others, you can change this interval to
a higher count.
start inetd like this
inetd -r120 60
by default, the man page says 40 per min(-r40 60), grossly
not enough for a busy server.
On SunOS-4.x you have to apply a patch or compile one yourself
You'll find a usable version on GNU(inetutils.tar.gz) or in
the *BSD src.
> and I'm assuming that it is the result of too many requests coming in and
Yes,
--
au revoir, alain
----
Aussi haut que l'on soit assis, on est toujours assis que sur son cul !!!
begin 600 WINMAIL.DAT
M>)\^(AT0`0:0" `$```````!``$``0>0!@`(````Y 0```````#H``$(@ <`
M& ```$E032Y-:6-R;W-O9G0@36%I;"Y.;W1E`#$(`0V ! `"`````@`"``$$
MD 8`- $```$````,`````P``, (````+``\.``````(!_P\!````3P``````
M``"!*Q^DOJ,0&9UN`-T!#U0"`````'=U+69T<&1 =W5G871E+G=U<W1L+F5D
M=0!33510`'=U+69T<&1 =W5G871E+G=U<W1L+F5D=0``'@`", $````%````
M4TU44 `````>``,P`0```!D```!W=2UF='!D0'=U9V%T92YW=7-T;"YE9'4`
M`````P`5# $````#`/X/!@```!X``3 !````&P```"=W=2UF='!D0'=U9V%T
M92YW=7-T;"YE9'4G```"`0LP`0```!X```!33510.E=5+4944$1 5U5'051%
M+E=54U1,+D5$50````,``#D`````"P! .@$````"`?8/`0````0````````"
MG#P!!( !`"8```!213H@:6YE=&0@+7(@;W!T:6]N<R!O;B!3;VQA<FES(#(N
M-2XQ`/X+`06 `P`.````S0<'`!H`# `&`!<`!@`D`0$@@ ,`#@```,T'!P`:
M``P``0`M``8`-0$!"8 !`"$```!%-T8T-D9$,T-$,#5$,3$Q0D4W.# P03 R
M-#)!-#0U0@`K!P$#D 8`[ 8``!0````+`",```````,`)@``````"P`I````
M```#`"X```````,`-@``````0 `Y`( -&=W=F;P!'@!P``$````F````4D4Z
M(&EN971D("UR(&]P=&EO;G,@;VX@4V]L87)I<R R+C4N,0````(!<0`!````
M%@````&\F=W=&=-O].@%S1'1OG@`H"0J1%L``!X`'@P!````!0```%--5% `
M````'@`?# $````7````<F%H0&QY;GAH=6(N:&\N871T+F-O;0```P`&$,+"
M;_(#``<0(00``!X`"! !````90```$151U1(25-/3$1-15-304=%3U540494
M15)404Q+24Y'5$]-65-53E-54%!/4E1015)33TY42$5/5$A%4D1!64A%5T5.
M5$E.5$]42$533TQ!4DE3,C4Q4T]54D-%0T]$14%.1$,``````@$)$ $```!0
M!0``3 4``#0)``!,6D9U:3_7?_\`"@$/`A4"I /D!>L"@P!0$P-4`@!C: K
M<V5T[C(&``;#`H,R`\8'$P*#(C,/>FAE; ,@1&SJ9P*#-!,-?0J ",\)V>([
M%Y(R-34)M!D"&&@_":L9`0* "H$-L0M@;F=X,3 S%" +"A+R# %C@P! %3!U
M9R!T: 0`$B &\&0@!X%S86?J91YP=05 80& !) >(*T'0&L+@!X1;QZP>08`
M0G4#H'-U<' 702!Z< 20<P(@'B$?( J%;P,A\07 9&%Y+B!(_1\@=PGP!4 +
M@"!A(?(AL(<+8 40!" R+C4N'= $("!A*4$GL&/M*%)L'M$*A7 #8"!@%Q$'!" JD": (%5$4"R$
M(&XBH"!40U C,_,1P _14B<>H"=H`X(*L+L?$2!B82TA)O<>46,KL.\*P!^Q
M"X AXV8?4 AP*.+[+G$`<'D"("1!">$G61<P7R@P("($D -@(H%N"H53?R1[
M*N(N<!]A,R B\ A@8OYT'F$#H!Y"%Z 1\ K $; >/PJ&`9$MT!' ;G@LWSCZ
M" `?$ 7 ,M!N)H X^J9R.<$F@$!A`D N!: ^;2(F',\2( J+*I Q.((P`M%I
M+3$T- WPYPS00$,+63$V"J L<2M1OR?P0F<]/4%U##!!YD8#8>XZ0VY!YCEC
M00MB!= ?`/\7,"F .W=#CT'U!F ",$5/;49;5PF )[!S(P$M@$$3+& #$3,P
M+8 Q.3D@-R U.C1-H%!-LT@/1!U4;TI/1EM4%Z!G`C!./T0=0V-07T9;=T1U
M+0& <&1 5H!G3SRP*.!6@#<0;"X)@'5W4H])'C>@:BM15*]&6U+R95IP:60K
ML!X@!W$FR/D^W3,V0.<5P@P!28<'0%$?44$@5@A@<RV 3W@@1W(F`D> `P`@
M8'714B0@(2%=7#YC& 6ACQ>@*V J,",P($5V!)!5(*!F!]%M,>$H!Y!PZR-P
M*>!H.!%G9F HH"&1N"D@22Y191 @4F@A$&\GE2!@8R<F@&5H`05 9]]'P!P0
M9-%G0 = =R,0!" /'Q %0&,G)Z-;,3(SQEU:<%:Q+W1C9A!FX5]E$3) "W J
MD" Q*#1U*7LM@&S2:26!'Z%EH5<Q9(]=7#,P8A!G8V$@8BB@XR"@;-4Z+2E=
M7"'!->7W+8 F`BQA8@&@*C$BHV$!_W!R-O #H!&Q'! P`1Y"(]'_;.$'0&AX
M<0!F@A^Q!: @T/\\T%U<-Q *P".R-#,M$AXR9UU<)Z9K\# @7L!=7&+#-V$-
MP&%U;'0M@"'ROR^7'O!JD4!@(7)EDB@H`.]_`5[ ;D$)P&\$$"HP"H7_+:()
M\ A@9J$"$'="<2EX309/<P$@T$]3+30N_GAP:"!A*F(J02_!;)!F8'\%L3SQ
M-*!<L3-"<'$1X6SJ9@J%60A@)Q41*7 F$?]Q`"BA`F ?(&41`) AP2'!<$=.
M52@GHA]0`Q!SXBYY02YG>F<@!;$+@.$F^2I"4T0@\"5P>$WS8Y F`DDG/1 N
M<"$`9:'_'A(\L"G2'E$A\CAA?9$><-YF(%$P,C=1%Z!Q"E W$+\Q00-P("(Q
MX28!75Q9!Y"_+8!=7$)@(B9]@#A1=D?![W.1"V*45T+G02B@`) N4?<?49%Q
M+/ G(<$AL"GACJ'/<W(AP9&1(%%U:H=2F03OF",A`'D1(<%C?9!B@6*MOUW/
M0.<=14'F"H46P0"@, ,`$! ``````P`1$ ,```! ``<PH $D-]V9O % ``@P
FH $D-]V9O $>`#T``0````4```!213H@``````,`#33]-P``4Q:9
`
end
From
[email protected] Sat Jul 26 11:34:07 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA32600;
Sat, 26 Jul 1997 11:26:42 -0500 (CDT)
Received: from cagw2.att.com (cagw2.att.com [192.128.52.90])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA26494
for <
[email protected]>; Sat, 26 Jul 1997 11:21:40 -0500 (CDT)
Received: from lynxhub.lz.att.com by caig2.att.att.com (SMI-8.6/EMS-1.2 sol2)
id MAA03621; Sat, 26 Jul 1997 12:31:01 -0400
Received: from HMMICRON2 ([135.25.204.215]) by lynxhub.lz.att.com (5.x/EMS-1.2 sol2)
id AA01303; Sat, 26 Jul 1997 12:19:25 -0400
Received: by HMMICRON2 with Microsoft Mail
id <01BC99BE.5F779640@HMMICRON2>; Sat, 26 Jul 1997 12:20:58 -0400
Message-Id: <01BC99BE.5F779640@HMMICRON2>
Date: Sat, 26 Jul 1997 12:20:52 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From: "Roger A. Hanke" <
[email protected]>
To: "'WUFTPD List'" <
[email protected]>
Cc: "'Roger A. Hanke'" <
[email protected]>
Subject: virtual IP logging of guests
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Have run into a problem concerning where my guest class logons get logged.
Am successfully using virtual IPs with Beta 12 version to have different
anonymous accounts and log files for different customers. A number of these
same customers have requested guest class accounts as well to give out to
their more priviledged end users. So they give out the same virtual IP address
for their guest class account end users to use. This way all access, whether
guest account or anonymous for this particular customer (virtual IP) gets
logged into the same unique log file.
The problem I have noticed (only in testing so far thank goodness ;-) is
that I can come in with the same customer guest account but use any IP
that is configured for that particular server and of course they gain access
and are chrooted and everything seems OK. But all of their transfer records
are recorded of course based on the IP they used. So if they use the main
IP of the server it goes to the main WUFTPD xferlog, or if they use another
customers virtual IP address it gets logged in that other customers log
xferlog file. I do not want to have to scan every customers log file (as well
as the system wide xferlog file) for potential stray customer transfer records.
The only other solution I could think of was to go back to logging everyone
to the same place, and then just throw a bunch of resources at processing
this single xferlog file :-(
Anybody think or know of a way to keep separate virtual IP logs but still
be able to completely control where your guest class logins get logged?
Thanx,
Roger Hanke
From
[email protected] Sat Jul 26 14:53:01 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA05431;
Sat, 26 Jul 1997 14:44:29 -0500 (CDT)
Received: from clearink.com (sparc.clearink.com [205.227.188.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA01716
for <
[email protected]>; Sat, 26 Jul 1997 14:36:34 -0500 (CDT)
Received: from [205.227.188.3] (jon.clearink.com [205.227.188.3])
by clearink.com (8.8.6/8.8.6) with SMTP id MAA24214;
Sat, 26 Jul 1997 12:41:29 -0700 (PDT)
Message-Id: <
[email protected]>
Date: Sat, 26 Jul 97 12:37:21 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Jon Stevens <
[email protected]>
To: <
[email protected]>, <
[email protected]>
Subject: RE: inetd -r options on Solaris 2.5.1
Mime-Version: 1.0
Content-Type: text/plain; charset="US-ASCII"
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
"Roger A. Hanke" <
[email protected]> said the following at 7/26/97
9:06 AM:
>Has anyone seen the inetd looping error on
>Solaris 2.5.1 to cast any doubts on his research?
Not sure if this helps at all...
I have seen it on SunOS 4.1.3 as a result of a lot of people checking
email all at once via popperd. I got a patch (replacement) inetd that
allowed for the -r option and that fixed the problem.
I haven't seen the problem on any of my 2.5.1 boxes although, we aren't
using them for mail storage...
-jon
Jon (no h) S. Stevens -
[email protected]
<
http://www.clearink.com/>
<
http://www.clearink.com/fun_stuff/plugins/ch/>
<
http://www.internetweather.com/>
From
[email protected] Sat Jul 26 19:58:11 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA16251;
Sat, 26 Jul 1997 19:50:05 -0500 (CDT)
Received: from shell.gnxs.com.au (
[email protected] [203.2.239.132])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id TAA18920
for <
[email protected]>; Sat, 26 Jul 1997 19:47:32 -0500 (CDT)
Received: from localhost (wuftp@localhost)
by shell.gnxs.com.au (8.8.4/8.8.4) with SMTP
id KAA16598 for <
[email protected]>; Sun, 27 Jul 1997 10:59:48 +1000
Message-Id: <
[email protected]>
Date: Sun, 27 Jul 1997 10:59:46 +1000 (EST)
Reply-To:
[email protected]
Sender:
[email protected]
From: WU-FTP User <
[email protected]>
To:
[email protected]
Subject: can't ls in virtual ftp directory
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I have recently configured virtual ftp within the ftpaccess file using
wu-ftpd 2.4.2beta12 yet I cannot seem to get ls working. Anonymous logins
can login, can get files within the directory tree etc, yet cannot dir or
ls.
Is there something I am missing here?
Thanks.
Michael.
From
[email protected] Sun Jul 27 17:16:32 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA15061;
Sun, 27 Jul 1997 17:07:48 -0500 (CDT)
Received: from pop.cybernex.net (
[email protected] [207.198.151.60])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id RAA12923
for <
[email protected]>; Sun, 27 Jul 1997 17:02:10 -0500 (CDT)
Received: from gate.cybernex.net (
[email protected] [204.141.116.17])
by pop.cybernex.net (Mail-clerk/Homer) with ESMTP id SAA24059
for <
[email protected]>; Sun, 27 Jul 1997 18:01:53 -0400
Received: (from bug@localhost)
by gate.cybernex.net (8.8.5/8.8.5) id RAA25403
for
[email protected]; Sun, 27 Jul 1997 17:56:27 -0400
Message-Id: <
[email protected]>
Date: Sun, 27 Jul 1997 17:56:27 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Matt W." <
[email protected]>
To:
[email protected]
Subject: User account has expired
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: 8.0 -- ListProcessor(tm) by CREN
Everytime I or any of my users try to ftp in to my Box they get this
error:
220 whoha FTP server (Version wu-2.4.2-academ[BETA-11](1) Tue Sep3
18:44:35 EDT 1996) ready.
USER bug
331 Password required for bug.
PASS xxxxxx
530 Login failed: User account has expired
logon failure, so quitting
I just recently started getting this message about 2 weeks ago, but before
that I was having no troubles (I have had my box for about 3 months)
What could I do to fix this??
Thank You!!!
Matt Winer
[email protected]
From
[email protected] Mon Jul 28 10:43:01 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA11080;
Mon, 28 Jul 1997 10:35:21 -0500 (CDT)
Received: from edm1.com (edm1.cinti.net [204.248.146.162])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA11839
for <
[email protected]>; Mon, 28 Jul 1997 10:29:47 -0500 (CDT)
Received: by edm1.com(Lotus SMTP MTA v1.06 (346.8 3-18-1997)) id 852564E2.005534CB ; Mon, 28 Jul 1997 11:30:40 -0400
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 11:30:38 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Delivery of WU-mailing list
Mime-Version: 1.0
Content-type: text/plain; charset=US-ASCII
X-Lotus-FromDomain: DMI
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Delivery of the list has stopped to my mailer; an attempt to re-subscribe
resulted in a message that the address was not available on DNS. Would
someone please e-mail me directly if there's a new address or procedure or
whatever to get the list? Thanks.
From
[email protected] Mon Jul 28 10:46:50 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA10471;
Mon, 28 Jul 1997 10:41:39 -0500 (CDT)
Received: from edm1.com (edm1.cinti.net [204.248.146.162])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA11846
for <
[email protected]>; Mon, 28 Jul 1997 10:32:30 -0500 (CDT)
Received: by edm1.com(Lotus SMTP MTA v1.06 (346.8 3-18-1997)) id 852564E2.0055757C ; Mon, 28 Jul 1997 11:33:26 -0400
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 11:33:23 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: AIX and time problem (or: oh, no, not this again!!!!
Mime-Version: 1.0
Content-type: text/plain; charset=US-ASCII
X-Lotus-FromDomain: DMI
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Does anyone know of a fix for the GMT problem on AIX under "old" 2.4
wu-ftpd other than recompliling the code. I got the binaries as an
installp from the Bull site, and would really like to avoid the compile
"thing" if I can.
Thanks
From
[email protected] Mon Jul 28 11:55:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA16798;
Mon, 28 Jul 1997 11:49:34 -0500 (CDT)
Received: from mach3ww.com (
[email protected] [205.217.172.33])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id LAA19310
for <
[email protected]>; Mon, 28 Jul 1997 11:43:46 -0500 (CDT)
Received: from alice.mach3ww.com (
[email protected] [205.217.172.33]) by mach3ww.com (8.8.5/8.8.5) with SMTP id LAA20507; Mon, 28 Jul 1997 11:43:41 -0500
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 11:43:41 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Andrew Smith <
[email protected]>
To:
[email protected]
Cc: Ayamura Kikuchi <
[email protected]>
Subject: Re: Compiling wu-ftpd 2.4 with BIND 8
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I think BIND 8 also breaks sendmail! Ack... :-)
-
| Andy Smith |
http://www.mach3ww.com/~smitha/
| Assistant System Administrator |
http://www.arpanet.net/
| Mach3 World Wide |
[email protected]
From
[email protected] Mon Jul 28 12:16:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA14086;
Mon, 28 Jul 1997 12:07:59 -0500 (CDT)
Received: from edm1.com (edm1.cinti.net [204.248.146.162])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA16223
for <
[email protected]>; Mon, 28 Jul 1997 12:02:07 -0500 (CDT)
Received: by edm1.com(Lotus SMTP MTA v1.06 (346.8 3-18-1997)) id 852564E2.005DAA38 ; Mon, 28 Jul 1997 13:03:04 -0400
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 13:03:00 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: AIX and GMT Time Problem (or: oh, no, not this again!!!)
Mime-Version: 1.0
Content-type: text/plain; charset=US-ASCII
X-Lotus-FromDomain: DMI
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Does anyone know of a fix for the GMT problem on AIX 4.1.4 under the "old"
wu-ftpd 2.4 other than recompiling the code? I got the binaries as an
installp from the Bull site, and really don't want to have to do the
"compile" thing if I can avoid it.
Thanks
From
[email protected] Mon Jul 28 12:45:00 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id MAA08958;
Mon, 28 Jul 1997 12:39:33 -0500 (CDT)
Received: from star.win.or.jp (star.win.or.jp [202.26.20.3])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id MAA25140
for <
[email protected]>; Mon, 28 Jul 1997 12:32:30 -0500 (CDT)
Received: (from ayamura@localhost)
by star.win.or.jp (8.8.7.Beta3/8.8.7.Beta3) id CAA06200;
Tue, 29 Jul 1997 02:32:09 +0900 (JST)
Message-Id: <
[email protected]>
Date: 29 Jul 1997 02:32:08 +0900
Reply-To:
[email protected]
Sender:
[email protected]
From: Ayamura Kikuchi <
[email protected]>
To:
[email protected]
Subject: Re: Compiling wu-ftpd 2.4 with BIND 8
Mime-Version: 1.0 (generated by SEMI MIME-Edit 0.86 "Naka-Tsurugi")
Content-Type: text/plain; charset=US-ASCII
X-PGP-Public-Key:
http://www.ayamura.win.or.jp/pgp-public-key.asc
X-Emacs: Emacs 19.34, MULE 2.3 (SUETSUMUHANA)
X-Mailer: Gnus v5.4.64 + SEMI patch (r2.1)/Emacs 19.34
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> I think BIND 8 also breaks sendmail! Ack... :-)
I compiled sendmail v.8.8.6 and v.8.8.7.Beta3 with staffs derived from
BIND-8.1.1, both is working fine.
--
Ayamura Kikuchi (Dept., of Medicine, Keio Univ., Japan)
From
[email protected] Mon Jul 28 15:43:28 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA00599;
Mon, 28 Jul 1997 15:36:38 -0500 (CDT)
Received: from edm1.com (edm1.cinti.net [204.248.146.162])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA09017
for <
[email protected]>; Mon, 28 Jul 1997 15:33:21 -0500 (CDT)
Received: by edm1.com(Lotus SMTP MTA v1.06 (346.8 3-18-1997)) id 852564E2.0070EE87 ; Mon, 28 Jul 1997 16:33:30 -0400
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 16:33:25 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: wu-ftpd beta-13 under AIX 4.1.4 with gui ftp clients
Mime-Version: 1.0
Content-type: text/plain; charset=US-ASCII
X-Lotus-FromDomain: DMI
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Am running wu-ftpd to restrict clients to specific directories.
restriction works fine; clients can access their own directories, and only
their own directories, but when using a GUI ftp (in our case, either
cuteFTP or Hummingbird Exceed FTP, the files in the user's directory don't
show up. We can go in via AIX and look at the directory; the files are
there, and are owned by the client, but the client can't see them on
his/her gui display. Any suggestions?
From
[email protected] Mon Jul 28 16:40:56 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA07846;
Mon, 28 Jul 1997 16:32:39 -0500 (CDT)
Received: from ihc.com (mail.ihc.com [159.212.96.58])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id QAA06948
for <
[email protected].>; Mon, 28 Jul 1997 16:28:18 -0500 (CDT)
Received: from IHC_ROUTE-Message_Server by ihc.com
with Novell_GroupWise; Mon, 28 Jul 1997 15:29:22 -0600
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 15:03:28 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: Matt McClung <
[email protected]>
To:
[email protected]
Subject: Compilation error on Irix 6.2
X-Mailer: Novell GroupWise 4.1
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I get the following error when compiling:
<when running ./build sgi - during the ftpd compile)
...
cc -O -cckr _DDEBUG -I.. -I../support -L../support -c
-hostacc.c
don't know how to make /usr/lib/libc_s.a (bu42)
Do I need another lib for this to be present or what?
Matt
From
[email protected] Mon Jul 28 21:11:14 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id VAA22030;
Mon, 28 Jul 1997 21:04:07 -0500 (CDT)
Received: from amadeus.upr.clu.edu (
[email protected] [136.145.57.14])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id VAA28282
for <
[email protected]>; Mon, 28 Jul 1997 21:00:12 -0500 (CDT)
Received: from localhost (gunther@localhost) by amadeus.upr.clu.edu (8.8.5/8.6.9) with SMTP id WAA02557 for <
[email protected]>; Mon, 28 Jul 1997 22:05:30 -0400
Message-Id: <Pine.LNX.3.96.970728215612.2441B-100000@amadeus>
Date: Mon, 28 Jul 1997 22:05:30 -0400 (AST)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Gunther R. Costas" <
[email protected]>
To:
[email protected]
Subject: wu_ftpd and NIS under Linux
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Sender: gunther@amadeus
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello.
(I am new at sys admin and need help with a wu_ftpd setup.)
I have a question regarding the following.
We have a linux machine whose wu-2.4(4) worked perfectly well under the
2.0.0 kernel. We recently upgraded the kernel to 2.0.30, leaving the
ftp server intact. Since then the wu_ftpd recognizes only local accounts,
and no NIS accounts (users).
We also installed a brand-new machine with the 2.0.30 kernel and it has
the same problem. (Both have the same NIS server).
What can it be?
Anticipated thanks for your respons!
gunther
From
[email protected] Mon Jul 28 22:49:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id WAA03894;
Mon, 28 Jul 1997 22:43:19 -0500 (CDT)
Received: from pop.cybernex.net (
[email protected] [207.198.151.60])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id WAA03647
for <
[email protected]>; Mon, 28 Jul 1997 22:36:39 -0500 (CDT)
Received: from gate.cybernex.net (
[email protected] [204.141.116.17])
by pop.cybernex.net (Mail-clerk/Homer) with ESMTP id XAA20581
for <
[email protected]>; Mon, 28 Jul 1997 23:32:39 -0400
Received: (from bug@localhost)
by gate.cybernex.net (8.8.5/8.8.5) id XAA23102
for
[email protected]; Mon, 28 Jul 1997 23:27:09 -0400
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 23:27:09 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Matt W." <
[email protected]>
To:
[email protected]
Subject: Invalid Login
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: 8.0 -- ListProcessor(tm) by CREN
I know this has come up before but I just started getting this error
today. Whenever I have users login through ftp they get 'invalid login'.
Users that come in anon. are able to get in. Is there a place where I can
get the wu-ftp list archive, or if someone could e-mail me a quick fix for
this problem.
Thank You very much in advance!!
Matt
[email protected]
From
[email protected] Mon Jul 28 23:22:24 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id XAA18052;
Mon, 28 Jul 1997 23:14:29 -0500 (CDT)
Received: from hustle.rahul.net (hustle.rahul.net [192.160.13.2])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id XAA05844
for <
[email protected]>; Mon, 28 Jul 1997 23:09:04 -0500 (CDT)
Received: by hustle.rahul.net with UUCP id AA29374
(5.67b8/IDA-1.5 for
[email protected]); Mon, 28 Jul 1997 21:08:54 -0700
Received: from antares.starshine.org (localhost [127.0.0.1]) by antares.starshine.org (8.8.3/8.7.3) with ESMTP id VAA14814; Mon, 28 Jul 1997 21:09:04 -0700
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 21:09:03 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Jim Dennis <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: wu_ftpd and NIS under Linux
In-Reply-To: <Pine.LNX.3.96.970728215612.2441B-100000@amadeus>
Message Apparently From "Gunther R. Costas"
<
[email protected]>
Dated Mon, 28 Jul 1997 22:05:30 EDT.
X-Mailer: MH 8.6.3
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> Hello.
>
> (I am new at sys admin and need help with a wu_ftpd setup.)
> I have a question regarding the following.
>
> We have a linux machine whose wu-2.4(4) worked perfectly well under the
> 2.0.0 kernel. We recently upgraded the kernel to 2.0.30, leaving the
> ftp server intact. Since then the wu_ftpd recognizes only local accounts,
> and no NIS accounts (users).
>
> We also installed a brand-new machine with the 2.0.30 kernel and it has
> the same problem. (Both have the same NIS server).
>
> What can it be?
On the first machine I strongly suspect that you
updated more than just the kernel. My guess would be
that you're using the Red Hat distribution (currently
the most popular -- but also the fastest moving).
If this is so than you've probably been bitten by some
new features that aren't "playing" well with some of you're
existing software. Specifically there is a movement on the
bleeding edge of Linux to adopt the PAM (pluggable authentication
module) specification (which is also going to be in Solaris 2.6
-- when it ships in the next couple of days).
Unfortunately your wu-ftpd doesn't know from PAM.
You can sign on to the PAM mailing list and repost your question
there. That's at
[email protected] (although you'd use
[email protected] to sign on or off -- of course).
I would answer the question more completely if I could. However
my experience NIS and NIS+ is far too limited and my experience
in making it work with PAM is NIL
> Anticipated thanks for your respons!
> gunther
--
Jim Dennis,
[email protected]
Proprietor,
[email protected]
Starshine Technical Services
http://www.starshine.org
PGP 1024/2ABF03B1 Jim Dennis <
[email protected]>
Key fingerprint = 2524E3FEF0922A84 A27BDEDB38EBB95A
From
[email protected] Mon Jul 28 23:22:28 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id XAA32522;
Mon, 28 Jul 1997 23:17:00 -0500 (CDT)
Received: from hustle.rahul.net (hustle.rahul.net [192.160.13.2])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id XAA06192
for <
[email protected]>; Mon, 28 Jul 1997 23:10:20 -0500 (CDT)
Received: by hustle.rahul.net with UUCP id AA29389
(5.67b8/IDA-1.5 for
[email protected]); Mon, 28 Jul 1997 21:08:59 -0700
Received: from antares.starshine.org (localhost [127.0.0.1]) by antares.starshine.org (8.8.3/8.7.3) with ESMTP id UAA14762; Mon, 28 Jul 1997 20:51:06 -0700
Message-Id: <
[email protected]>
Date: Mon, 28 Jul 1997 20:51:05 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From: Jim Dennis <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: wu-ftpd beta-13 under AIX 4.1.4 with gui ftp clients
In-Reply-To: <
[email protected]>
Message Apparently From
[email protected]
Dated Mon, 28 Jul 1997 16:33:25 EDT.
X-Mailer: MH 8.6.3
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> Am running wu-ftpd to restrict clients to specific directories.
> restriction works fine; clients can access their own directories, and only
> their own directories, but when using a GUI ftp (in our case, either
> cuteFTP or Hummingbird Exceed FTP, the files in the user's directory don't
> show up. We can go in via AIX and look at the directory; the files are
> there, and are owned by the client, but the client can't see them on
> his/her gui display. Any suggestions?
Check the execute bit on the directories. I don't
know why put I found that Unix and "shell" style ftp
clients don't care if the execute bit is set so long as
you have the read bit -- but the some of the Windows GUI
one would exhibit the behavior you describe. It was
WS_FTP in my case.
--
Jim Dennis,
[email protected]
Proprietor,
[email protected]
Starshine Technical Services
http://www.starshine.org
PGP 1024/2ABF03B1 Jim Dennis <
[email protected]>
Key fingerprint = 2524E3FEF0922A84 A27BDEDB38EBB95A
From
[email protected] Tue Jul 29 06:56:29 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id GAA04705;
Tue, 29 Jul 1997 06:50:03 -0500 (CDT)
Received: from gate.teledata.co.uk (
[email protected] [194.152.83.193])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id GAA02366
for <
[email protected]>; Tue, 29 Jul 1997 06:45:33 -0500 (CDT)
Received: from defcon1.prestel.net(really [193.114.49.208]) by gate.teledata.co.uk
via rsmtp with esmtp
id <
[email protected]>
for <
[email protected]>; Tue, 29 Jul 97 12:45:40 +0100 (BST)
(/\##/\ Smail3.1.30.13 #30.13 built 31-aug-95)
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 12:40:10 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: webadmin <
[email protected]>
To:
[email protected]
Subject: logins
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.0 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi
I have 700+ people using wuftpd.
When they login in ,it takes forever to check there password, is this to
do with wuftps or just the size of the password file
Iqbal
From
[email protected] Tue Jul 29 09:04:19 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA07256;
Tue, 29 Jul 1997 08:55:51 -0500 (CDT)
Received: from post.queensu.ca (post.QueensU.CA [130.15.126.6])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA15832
for <
[email protected]>; Tue, 29 Jul 1997 08:52:43 -0500 (CDT)
Received: from democracy.queensu.ca (democracy.QueensU.CA [130.15.78.126]) by post.queensu.ca (SMI-8.6/its9707)
with SMTP id JAA20080 for <
[email protected]>; Tue, 29 Jul 1997 09:54:37 -0400 (envelope from
[email protected])
Received: from localhost by democracy.queensu.ca (SMI-8.6/SMI-SVR4)
id JAA24922; Tue, 29 Jul 1997 09:52:46 -0500
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 09:52:46 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Troy <
[email protected]>
To:
[email protected]
Subject: Re: logins
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I've got wuftpd running on several machines with a total of about
15k users. The amount of time it takes for them to log in (ie.
for the user to be authenticated) is about the same as the stock
ftpd that came with our OS.
On Tue, 29 Jul 1997, webadmin wrote:
> Hi
>
> I have 700+ people using wuftpd.
>
> When they login in ,it takes forever to check there password, is this to
> do with wuftps or just the size of the password file
>
> Iqbal
>
From
[email protected] Tue Jul 29 09:15:32 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA02268;
Tue, 29 Jul 1997 09:07:36 -0500 (CDT)
Received: from Bahamut.dragonfire.net (Bahamut.dragonfire.net [209.70.16.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id JAA02707
for <
[email protected]>; Tue, 29 Jul 1997 09:01:42 -0500 (CDT)
Received: (from achurch@localhost) by Bahamut.dragonfire.net (8.8.5/8.7.5) id KAA28131; Tue, 29 Jul 1997 10:01:40 -0400
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 10:01:40 EDT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Andy Church)
To:
[email protected]
Subject: Re: Compilation error on Irix 6.2
X-Mailer: MMail v4.62
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
>I get the following error when compiling:
>
><when running ./build sgi - during the ftpd compile)
> ...
> cc -O -cckr _DDEBUG -I.. -I../support -L../support -c
>-hostacc.c
>don't know how to make /usr/lib/libc_s.a (bu42)
>
>Do I need another lib for this to be present or what?
I think this is the result of somebody going overboard on
dependencies; I encountered a similar problem when compiling beta 13 for
Linux because my libc.a wasn't in /usr/lib, where the Makefile expected it.
The solution is to simply remove all references to libc_s.a in the
Makefile (at least, that worked for me).
--Andy Church | If Bell Atlantic really is the heart
[email protected] | of communication, then it desperately
www.dragonfire.net/~achurch/ | needs a quadruple bypass.
From
[email protected] Tue Jul 29 09:15:56 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA13427;
Tue, 29 Jul 1997 09:09:24 -0500 (CDT)
Received: from mail.toppoint.de (LaForge.toppoint.de [193.174.3.6])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA13388
for <
[email protected]>; Tue, 29 Jul 1997 09:06:50 -0500 (CDT)
Received: by mail.toppoint.de (Smail3.1.29.1)
from wiesel (194.94.251.13) with smtp
id <m0wtCyH-00027BC>; Tue, 29 Jul 97 16:09 MET DST
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 16:07:12 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: Re: wu-ftpd beta-13 under AIX 4.1.4 with gui ftp clients
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
X-mailer: Pegasus Mail for Win32 (v2.54)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
> Am running wu-ftpd to restrict clients to specific directories.
> restriction works fine; clients can access their own directories, and only
> their own directories, but when using a GUI ftp (in our case, either
> cuteFTP or Hummingbird Exceed FTP, the files in the user's directory don't
> show up. We can go in via AIX and look at the directory; the files are
> there, and are owned by the client, but the client can't see them on
> his/her gui display. Any suggestions?
>
I guess the external ls is not set up right. GUI clients often use
"dir" dommand to get the listing. wuftpd has a build in ls, it can
be used by the command "ls". Thats why u can see the files on
a shell client by typing "ls" i guess. Check the Guests-HowTo for
information about the chroot dir. Probably uve set up the users
as a guestgroup and its made a chroot in their home dirs by
/home/user/./ . Then u may need to make a chroot-dir in each of the
users home directorys.
YT
Steve
From
[email protected] Tue Jul 29 09:41:39 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA07777;
Tue, 29 Jul 1997 09:33:58 -0500 (CDT)
Received: from interlock2.lexmark.com (interlock2.lexmark.com [192.146.101.10])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id JAA16884
for <
[email protected]>; Tue, 29 Jul 1997 09:26:27 -0500 (CDT)
Received: by interlock2.lexmark.com id AA11730
(InterLock SMTP Gateway 3.0 for
[email protected]);
Tue, 29 Jul 1997 10:26:26 -0400
Received: by interlock2.lexmark.com (Protected-side Proxy Mail Agent-1);
Tue, 29 Jul 1997 10:26:26 -0400
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 10:28:04 -0400
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Lotus-Fromdomain: LEXMARK@LEXMTA
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I start wu-ftpd in "inetd.conf" with -a -u 022. Whenever anyone ftp's to
box and creates a directory it's access's are 777. Whenever a file is
created within ftp the access rights are 666.. With the -u 022 on startup,
shouldn't the access right's be 755? Thanks Jim
From
[email protected] Tue Jul 29 10:13:13 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA15020;
Tue, 29 Jul 1997 10:06:27 -0500 (CDT)
Received: from Bahamut.dragonfire.net (Bahamut.dragonfire.net [209.70.16.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id KAA06862
for <
[email protected]>; Tue, 29 Jul 1997 10:02:44 -0500 (CDT)
Received: (from achurch@localhost) by Bahamut.dragonfire.net (8.8.5/8.7.5) id LAA00370; Tue, 29 Jul 1997 11:02:11 -0400
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 11:02:11 EDT
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Andy Church)
To: webadmin <
[email protected]>
Cc:
[email protected]
Subject: Re: logins
X-Mailer: MMail v4.62
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
>Andy Church wrote:
>>
>> >I have 700+ people using wuftpd.
>> >
>> >When they login in ,it takes forever to check there password, is this to
>> >do with wuftps or just the size of the password file
>>
>> Do you have many (>50 or so) "upload" directives in your ftpaccess
>> file? That could cause the kind of delay you mentioned, since wu-ftpd has
>> to do a getpwnam() and getgrnam() for each line.
>>
>> --Andy Church | If Bell Atlantic really is the heart
>>
[email protected] | of communication, then it desperately
>> www.dragonfire.net/~achurch/ | needs a quadruple bypass.
>
>
>Yes I have about 700+, but I don't know how I can reduce this. Does
>wuftpd goto the password file every time it sees a upload directive,
>can't it just skip until it finds the one it needs.
>
>How do I get around this, or do I just pray that we don't get anymore
>accounts on the nachine.
I ran into this problem myself a while back, and came up with the
patch below; it allows you to specify the user/group in upload lines
numerically, by using the string "%NNN" where NNN is the UID/GID. For
example:
upload /home/ftp /users/a/achurch/incoming yes %501 %100 0600 nodirs
The patch below is against beta 13, but should apply more or less
cleanly to most versions; and if it doesn't, the changes are still fairly
straightforward.
--Andy Church | If Bell Atlantic really is the heart
[email protected] | of communication, then it desperately
www.dragonfire.net/~achurch/ | needs a quadruple bypass.
*** src/extensions.c.old Mon Mar 3 04:39:54 1997
--- src/extensions.c Thu Jul 24 17:01:31 1997
***************
*** 809,824 ****
while (getaclentry("upload", &entry) && ARG0 && ARG1 && ARG2 != NULL) {
if (ARG3 && ARG4) {
! pwent = getpwnam(ARG3);
! grent = getgrnam(ARG4);
! if (pwent) sprintf(buf, "%d", pwent->pw_uid);
! else sprintf(buf, "%d", 0);
ARG3 = (char *) malloc(strlen(buf) + 1);
strcpy(ARG3, buf);
! if (grent) sprintf(buf, "%d", grent->gr_gid);
! else sprintf(buf, "%d", 0);
ARG4 = (char *) malloc(strlen(buf) + 1);
strcpy(ARG4, buf);
endgrent();
--- 809,828 ----
while (getaclentry("upload", &entry) && ARG0 && ARG1 && ARG2 != NULL) {
if (ARG3 && ARG4) {
! if (*ARG3 != '%')
! pwent = getpwnam(ARG3);
! if (*ARG4 != '%')
! grent = getgrnam(ARG4);
! if (*ARG3 == '%') sprintf(buf, "%s", ARG3+1);
! else if (pwent) sprintf(buf, "%d", pwent->pw_uid);
! else sprintf(buf, "%d", 0);
ARG3 = (char *) malloc(strlen(buf) + 1);
strcpy(ARG3, buf);
! if (*ARG4 == '%') sprintf(buf, "%s", ARG4+1);
! else if (grent) sprintf(buf, "%d", grent->gr_gid);
! else sprintf(buf, "%d", 0);
ARG4 = (char *) malloc(strlen(buf) + 1);
strcpy(ARG4, buf);
endgrent();
From
[email protected] Tue Jul 29 10:40:48 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA05232;
Tue, 29 Jul 1997 10:31:27 -0500 (CDT)
Received: from socks1.raleigh.ibm.com (socks1.raleigh.ibm.com [204.146.167.124])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA16013
for <
[email protected]>; Tue, 29 Jul 1997 10:29:54 -0500 (CDT)
Received: from rtpmail02.raleigh.ibm.com by socks1.raleigh.ibm.com (AIX 4.1/UCB 5.64/RTP-FW1.0)
id AA45594; Tue, 29 Jul 1997 11:29:34 -0400
Received: from madras.raleigh.ibm.com (madras.raleigh.ibm.com [9.67.166.15])
by rtpmail02.raleigh.ibm.com (8.8.5/8.8.5/RTP-ral-1.1) with SMTP id LAA30080;
Tue, 29 Jul 1997 11:29:36 -0400
Received: by madras.raleigh.ibm.com (AIX 4.1/UCB 5.64/4.03-RAL)
id AA32336; Tue, 29 Jul 1997 11:29:34 -0400
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 11:29:33 +22324610
Reply-To:
[email protected]
Sender:
[email protected]
From: Alexey Lef <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: logins
In-Reply-To: Your message of "Tue, 29 Jul 1997 12:40:10 EDT."
<
[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: exmh version 1.6.9 8/22/96
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
If you have many "upload" statements, you may want to look at:
http://www.landfield.com/wu-ftpd/mail-archive/1997/Jun/0108.html
Hope this helps,
Alexey
> Hi
>
> I have 700+ people using wuftpd.
>
> When they login in ,it takes forever to check there password, is this to
> do with wuftps or just the size of the password file
>
> Iqbal
>
From
[email protected] Tue Jul 29 10:46:05 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA21841;
Tue, 29 Jul 1997 10:38:42 -0500 (CDT)
Received: from socks2.raleigh.ibm.com (socks2.raleigh.ibm.com [204.146.167.123])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA19817
for <
[email protected]>; Tue, 29 Jul 1997 10:33:15 -0500 (CDT)
Received: from rtpmail02.raleigh.ibm.com by socks2.raleigh.ibm.com (AIX 4.1/UCB 5.64/RTP-FW1.0)
id AA90518; Tue, 29 Jul 1997 11:32:29 -0400
Received: from houns01.houston.ibm.com (houns01.houston.ibm.com [9.35.40.2])
by rtpmail02.raleigh.ibm.com (8.8.5/8.8.5/RTP-ral-1.1) with SMTP id LAA23772
for <
[email protected]>; Tue, 29 Jul 1997 11:32:28 -0400
Received: by houns01.houston.ibm.com(Lotus SMTP MTA v1.1 (385.6 5-6-1997)) id 862564E3.0055595C ; Tue, 29 Jul 1997 10:32:14 -0500
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 10:32:12 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected]
To:
[email protected]
Subject: access denied
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
X-Lotus-Fromdomain: HPSI
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi all
I'm getting access denied for real users running wu-ftp 2.4 on AIX 4.2.0.
Currently I'm not testing anonymous so inetd.conf does not have any option.
I'm testing with userid 'root' who is using /bin/ksh. My /etc/shells look
like this
/bin/csh
/bin/ksh
/usr/bin/csh
/usr/bin/ksh
My /etc/ftpusers file look like this:
bin
uucp
etc
My /usr/local/etc/ftphosts look like this:
allow * *
All other wu-ftp related files do not exist.
I retrieved the tigger.itc.virginia.edu:/pub/AIX/wu-ftpd.diffs.txt.gz and
implemented the changes mentioned with the same result of 'access denied'.
Any ideas what is wrong?
Thanks, Thuy
From
[email protected] Tue Jul 29 11:32:42 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA27440;
Tue, 29 Jul 1997 11:18:10 -0500 (CDT)
Received: from ihc.com (mail.ihc.com [159.212.96.58])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA10080
for <
[email protected].>; Tue, 29 Jul 1997 11:12:50 -0500 (CDT)
Received: from IHC_ROUTE-Message_Server by ihc.com
with Novell_GroupWise; Tue, 29 Jul 1997 10:11:04 -0600
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 09:48:01 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: Matt McClung <
[email protected]>
To:
[email protected]
Subject: Invisible with GUI client
X-Mailer: Novell GroupWise 4.1
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I have just setup wu_ftp on an SGi running irix 6.2. I can telnet
with a text client and everything seems to be working fine.
However, when I try to use a GUI client (ws_ftp, cuteFTP) I
cannot see anything listed in the remote files directory.
I can use the client to manually enter a file and it will transfer
and I have full access (write, mkdir etc) to the directory. I read
the guest howto but I don't see where it would work for a
standard text client and NOT for a GUI client.
Any thoughts? I have tried several configuration changes to
the GUI client to no avail...
Matt
From
[email protected] Tue Jul 29 14:04:10 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA07707;
Tue, 29 Jul 1997 13:56:43 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id NAA28092
for <
[email protected]>; Tue, 29 Jul 1997 13:50:28 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 13:51:01 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: List admin stuff
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: 8.0 -- ListProcessor(tm) by CREN
FWIW:
I am not empowered to make changed to the wu-ftpd list configuration.
If you have troubles with the list, please let me know out-of-band and
I will help you get the situation corrected.
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Tue Jul 29 14:13:32 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA06813;
Tue, 29 Jul 1997 14:06:44 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id OAA06387
for <
[email protected]>; Tue, 29 Jul 1997 14:05:51 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 14:06:19 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: Re: List admin stuff
In-Reply-To: <
[email protected]> from "Kent Landfield" at Jul 29, 97 01:51:01 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: 8.0 -- ListProcessor(tm) by CREN
# FWIW:
#
# I am not empowered to make changed to the wu-ftpd list configuration.
Doooh!
I am now empowered to make changes to the wu-ftpd list configuration.
# If you have troubles with the list, please let me know out-of-band and
# I will help you get the situation corrected.
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Tue Jul 29 19:18:35 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA29501;
Tue, 29 Jul 1997 19:11:39 -0500 (CDT)
Received: from mailer.sagar.gob.mx (mailer.sagar.gob.mx [198.139.10.39])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA24610
for <
[email protected]>; Tue, 29 Jul 1997 19:07:10 -0500 (CDT)
Received: from silvia.sagar.gob.mx by mailer.sagar.gob.mx (SMI-8.6/SMI-SVR4)
id TAA02976; Tue, 29 Jul 1997 19:04:43 -0600
Message-Id: <
[email protected]>
Date: Tue, 29 Jul 1997 19:10:04 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: "Ing. Silvia Beltr�n S." <
[email protected]>
To:
[email protected]
Subject: problem with log
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.01 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Dear Managers,
The wu-ftpd 2-4-2Beta is working fine, but the deamon doesn't send the
information to the syslog.
Have I to add specific lines in the syslog.conf ? what are those lines ?
By the way, I have solaris 2.5
Thanks in advance.
From
[email protected] Wed Jul 30 02:46:34 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id CAA15243;
Wed, 30 Jul 1997 02:38:17 -0500 (CDT)
Received: from opale (opale.cvf.fr [194.250.196.33])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id CAA03216
for <
[email protected]>; Wed, 30 Jul 1997 02:31:08 -0500 (CDT)
Received: from javier.online.fr by opale (SMI-8.6/SMI-SVR4)
id JAA27387; Wed, 30 Jul 1997 09:26:09 +0200
Received: by javier.online.fr with Microsoft Mail
id <
[email protected]>; Wed, 30 Jul 1997 09:27:46 +-200
Message-Id: <
[email protected]>
Date: Wed, 30 Jul 1997 09:27:45 +-200
Reply-To:
[email protected]
Sender:
[email protected]
From: Philippe Guyot <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Subject: TR: ftpd , AIX 4.1.4 & timestamp
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
>> well I have just installed the beta13 version on my AIX 4.1.4 and it works well except that hours and
times (displayed by "dir" for instance) are GMT and not NFT-1DFT as the rest of the AIX does.
>>
>> I tried to copy /etc/environment in ~ftp/etc/environment but it was no success.
>>
>> I also tried to set TZ in a .profile in ~ftp but it was the same (in fact I did not believe that it could
be successful).
>I believe you need to set TZ in whatever process spawns ftp
>(e.g. in the parent of inetd).
well this is a thing that AIX is supposed to do, no ?????
and the ftpd from AIX does use the right timezone!
any ideas from AIX's users?
Ph. Guyot
C.V.F
Bordeaux (France)
From
[email protected] Wed Jul 30 03:02:02 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id CAA00812;
Wed, 30 Jul 1997 02:55:51 -0500 (CDT)
Received: from baygate.bayarea.net (
[email protected] [204.71.212.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id CAA03820
for <
[email protected]>; Wed, 30 Jul 1997 02:50:12 -0500 (CDT)
Received: from flower ([202.96.213.103])
by baygate.bayarea.net (8.8.5/8.8.5) with SMTP id AAA20626
for <
[email protected]>; Wed, 30 Jul 1997 00:46:41 -0700 (PDT)
Message-Id: <
[email protected]>
Date: Wed, 30 Jul 1997 15:42:18 +0800
Reply-To:
[email protected]
Sender:
[email protected]
From: Steven Liu <
[email protected]>
To:
[email protected]
Subject: wu-ftp problem on Linux
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 3.0Gold (Win95; I)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I am using Red Hat Linux release 4.1 Kernel 2.0.27
when I ftp to it, if I use ftp or anon. as the user name
I can log in, but if I use the real user account name in /etc/passwd
such as my name steven, the result is:
331 Password required for steven.
Password:
then I input the right password, then..
530 Login incorrect.
Login failed.
Remote system type is UNIX
Using binary mode to transfer files
ftp>dir
530 Please login with USER adn PASS.
ftp: bind: Address already in use
ftp>
What's wrong??
I have read a article about this situation, and they say perhaps
the /etc/shells doesn't exist, but on my system, the /etc/shells is OK
I have tried to download wu-ftp source file from WU, and compilt it
on the system, but there are too many errors, and at last I had to
give it up :-(
so, anybody can give me some advise about the error? thanX!
steven
From
[email protected] Wed Jul 30 10:14:17 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA04200;
Wed, 30 Jul 1997 10:07:32 -0500 (CDT)
Received: from d06lmsgate.uk.ibm.com (d06lmsgate.uk.ibm.com [195.212.29.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA16467
for <
[email protected]>; Wed, 30 Jul 1997 10:05:50 -0500 (CDT)
Received: from d06lms01.emea.ibm.com by d06lmsgate.uk.ibm.com (AIX 4.1/UCB 5.64/4.03)
id AA32570; Wed, 30 Jul 1997 16:02:39 +0100
Received: by UK.IBM.COM (Soft-Switch LMS 2.0) with snapi via D06AU011
id 5060100004343359; Wed, 30 Jul 1997 15:02:37 +0000
Message-Id: <5060100004343359000002L092*@MHS>
Date: Wed, 30 Jul 1997 15:02:37 +0000
Reply-To:
[email protected]
Sender:
[email protected]
From: Gilles Ciselet <
[email protected]>
To: <
[email protected]>
Subject: TR: ftpd , AIX 4.1.4 & timestamp
Mime-Version: 1.0
Content-Type: text/plain
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
My beta13 works fine on AIX 4, and I did nothing special.
Try "ps axewww PID" to see theTZ variable.
---------------------- Forwarded by Gilles Ciselet/Belgium/IBM on 30/07/97
16:37 ---------------------------
[email protected]
30/07/97 09:04
Please respond to
[email protected] @ internet
To:
[email protected] @ internet
cc:
Subject: TR: ftpd , AIX 4.1.4 & timestamp
>> well I have just installed the beta13 version on my AIX 4.1.4 and it works
well except that hours and times (displayed by "dir" for instance) are GMT and
not NFT-1DFT as the rest of the AIX does. >> >> I tried to copy
/etc/environment in ~ftp/etc/environment but it was no success. >> >> I also
tried to set TZ in a .profile in ~ftp but it was the same (in fact I did not
believe that it could be successful).
>I believe you need to set TZ in whatever process spawns ftp
>(e.g. in the parent of inetd).
well this is a thing that AIX is supposed to do, no ?????
and the ftpd from AIX does use the right timezone!
any ideas from AIX's users?
Ph. Guyot
C.V.F
Bordeaux (France)
From
[email protected] Wed Jul 30 11:09:06 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA08174;
Wed, 30 Jul 1997 11:02:41 -0500 (CDT)
Received: from ns.wzrd.com (
[email protected] [206.99.165.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id KAA09996
for <
[email protected]>; Wed, 30 Jul 1997 10:57:25 -0500 (CDT)
Received: from localhost (potatoe@localhost) by ns.wzrd.com (8.8.5/8.7.3) with SMTP id MAA02255; Wed, 30 Jul 1997 12:02:49 -0400 (EDT)
Message-Id: <
[email protected]>
Date: Wed, 30 Jul 1997 12:02:49 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Robert Glover <
[email protected]>
To: "Matt W." <
[email protected]>
Cc:
[email protected]
Subject: Re: Invalid Login
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Did you install shadow and forget to recompile wu-ftpd for shadow support?
-Rob
On Mon, 28 Jul 1997, Matt W. wrote:
> I know this has come up before but I just started getting this error
> today. Whenever I have users login through ftp they get 'invalid login'.
> Users that come in anon. are able to get in. Is there a place where I can
> get the wu-ftp list archive, or if someone could e-mail me a quick fix for
> this problem.
>
> Thank You very much in advance!!
>
> Matt
>
[email protected]
>
From
[email protected] Wed Jul 30 12:35:18 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA08209;
Wed, 30 Jul 1997 10:44:47 -0500 (CDT)
Received: from opale (opale.cvf.fr [194.250.196.33])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA02294
for <
[email protected]>; Wed, 30 Jul 1997 10:43:04 -0500 (CDT)
Received: from javier.online.fr by opale (SMI-8.6/SMI-SVR4)
id RAA05369; Wed, 30 Jul 1997 17:36:01 +0200
Received: by javier.online.fr with Microsoft Mail
id <
[email protected]>; Wed, 30 Jul 1997 17:37:37 +-200
Message-Id: <
[email protected]>
Date: Wed, 30 Jul 1997 17:37:36 +-200
Reply-To:
[email protected]
Sender:
[email protected]
From: Philippe Guyot <
[email protected]>
To: "'
[email protected]'" <
[email protected]>
Subject: TR:ftpd, AIX 4.1.4 & timestamp
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by wugate.wustl.edu id KAA06342
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
>My beta13 works fine on AIX 4, and I did nothing special.
>Try "ps axewww PID" to see theTZ variable.
>---------------------- Forwarded by Gilles Ciselet/Belgium/IBM on 30/07/97
16:37 ---------------------------
I did it for inetd and found NFT-1DFT,and so on , of course!
but I am unable to find a PID dealing whith ftpd, even when I am logged on it with a remote client...... I must miss something in my unix knowledge!
Ph. Guyot
CVF
Bordeaux FRANCE
From
[email protected] Wed Jul 30 13:56:41 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA20935;
Wed, 30 Jul 1997 13:47:51 -0500 (CDT)
Received: from mailer.sagar.gob.mx (mailer.sagar.gob.mx [198.139.10.39])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id NAA05369
for <
[email protected]>; Wed, 30 Jul 1997 13:44:38 -0500 (CDT)
Received: from silvia.sagar.gob.mx by mailer.sagar.gob.mx (SMI-8.6/SMI-SVR4)
id NAA06467; Wed, 30 Jul 1997 13:40:06 -0600
Message-Id: <
[email protected]>
Date: Wed, 30 Jul 1997 13:45:26 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: "Ing. Silvia Beltr�n S." <
[email protected]>
To:
[email protected]
Subject: ftpaccess
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.01 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Dear Managers,
I have a large structure of directories under /pub/CEA, I want to permit
uploads in those directory.I wrote in the ftpaccess:
upload /services/ftpadm/ftp /pub/CEA yes root other 0777 dirs
upload /services/ftpadm/ftp /pub/CEA/* yes root other 0777 dirs
upload /services/ftpadm/ftp/pub/CEA * yes root other 0777 dirs
upload /services/ftpadm/ftp /incoming/* yes ftp ftp 0555 dirs
upload /services/ftpadm/ftp * no
upload /services/ftpadm/ftp /bin no
upload /services/ftpadm/ftp /etc no
but, when I want to upload under /pub/CEA/indics/indexel the access is
denied.
I hope somebody can help me.
Regards.
Silvia.
From
[email protected] Wed Jul 30 15:42:37 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id PAA05079;
Wed, 30 Jul 1997 15:35:54 -0500 (CDT)
Received: from relay2.smtp.psi.net (relay2.smtp.psi.net [38.8.188.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id PAA30253
for <
[email protected]>; Wed, 30 Jul 1997 15:30:54 -0500 (CDT)
Received: from extsvr.aptix.com by relay2.smtp.psi.net (8.8.3/SMI-5.4-PSI)
id QAA21507; Wed, 30 Jul 1997 16:30:44 -0400 (EDT)
Received: from [38.229.247.10] (gatekeeper.aptix.com [38.229.247.10]) by extsvr.aptix.com (8.8.4/8.8.3) with SMTP id NAA02550 for <
[email protected]>; Wed, 30 Jul 1997 13:30:58 -0700 (PDT)
Received: from intsvr ([132.147.160.93]) by [38.229.247.10]
via smtpd (for extsvr [38.229.247.20]) with SMTP; 30 Jul 1997 20:27:36 UT
Received: from axws2.aptix.com (axws2.aptix.com [132.147.160.16]) by intsvr.aptix.com (8.8.4/8.8.3) with SMTP id NAA09090; Wed, 30 Jul 1997 13:36:02 -0700 (PDT)
Received: by axws2.aptix.com (SMI-8.6/SMI-SVR4)
id NAA08711; Wed, 30 Jul 1997 13:32:32 -0700
Message-Id: <
[email protected]>
Date: Wed, 30 Jul 1997 13:32:32 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Jeffrey Liu)
To:
[email protected]
Cc:
[email protected]
Subject: messages
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-MD5: XBciGmuOD8MfELMr0Tofiw==
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by wugate.wustl.edu id PAA32568
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I just created a wu-ftpd 2.4 server on SunOS 4.1.4.
Here are simple questions on configuration.
1. Do I need to keep both ftpaccess and ftpaccess.heavy files?
And what's email user@hostname means?
2. I've defined welcome messages on ftpaccess, ftpaccess.heavy
on message: /path/welcome login entry
But only real user ftp login can see it, but not anonymous login.
Thanks in advance.
Jeffrey
From
[email protected] Thu Jul 31 05:47:34 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id FAA20790;
Thu, 31 Jul 1997 05:40:09 -0500 (CDT)
Received: from epiphore.francenet.fr (
[email protected] [193.149.97.10])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id FAA03793
for <
[email protected]>; Thu, 31 Jul 1997 05:36:09 -0500 (CDT)
Received: from epiphore.francenet.fr (
[email protected] [127.0.0.1])
by epiphore.francenet.fr (8.8.5/8.8.5) with ESMTP id MAA09275
for <
[email protected]>; Thu, 31 Jul 1997 12:36:08 +0200 (MET DST)
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 12:36:08 +0200
Reply-To:
[email protected]
Sender:
[email protected]
From: Gildas Perrot <
[email protected]>
To:
[email protected]
Subject: Anonymous homedir and virtual FTP
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-Mailer: exmh version 1.6.9 8/22/96
X-Face: '%)H7X3>"mU[aaPz3aZ`^e{*DV1&W;+P-Wx*Yk)Ah[e(-AO&EB\D.gq2y{kH73Q29}_A4H,eykdf!9dj[m\gwFgZOTt?=7gI+RBN,I({A32-MyZrmtrD%8*L/boGS0,+Lj$H|@
X-Url:
http://www.francenet.fr/
X-MIME-Autoconverted: from quoted-printable to 8bit by wugate.wustl.edu id FAA25103
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi everybody,
I set a wu-ftpd-2.4.2-beta-12 server on my system and virtual hosts like :
# Virtual Server at 10.10.10.10
virtual 10.10.10.10 root /var/ftp/virtual/ftp-serv
virtual 10.10.10.10 banner /var/ftp/virtual/ftp-serv/banner.msg
virtual 10.10.10.10 logfile /var/log/ftp/virtual/ftp-serv/xferlog
Furthermore, I would like to be able to do anonymous ftp with that virtual
host and I have set a ftp user in /etc/passwd with homedir /ftp.
Now, if I ftp to *real* host as anonymous, I go in that /ftp directory.
My problem is that I don't know in which directory I go when ftp to *virtual*
host as anonymous. In fact, I can see any file with 'ls' in the root dir.
Any idea about that problem ? TIA. Gildas.
--
Gildas PERROT,
[email protected] __o
FranceNet, 28 rue Desaix, 75015 Paris ---_ \<,_
http://www.francenet.fr ---- (_)/ (_)
From
[email protected] Thu Jul 31 08:31:00 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA01583;
Thu, 31 Jul 1997 08:23:58 -0500 (CDT)
Received: from mozart.si.ualg.pt (mozart.si.ualg.pt [193.136.224.2])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id IAA12132
for <
[email protected]>; Thu, 31 Jul 1997 08:18:35 -0500 (CDT)
Received: by mozart.si.ualg.pt; id AA29737; Thu, 31 Jul 1997 14:24:32 GMT
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 14:23:48 +0100
Reply-To:
[email protected]
Sender:
[email protected]
From: Joao Rochate <
[email protected]>
To:
[email protected]
Subject: Restricting filesystem to normal users
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-Sender:
[email protected]
X-Mailer: Windows Eudora Pro Version 3.0 (32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
HI..
I need to make the following:
* About 80 users on my server have $HOME/public_html dirs.
* They will update their Web pages by FTP using wu-ftpd.
The problem is that they have access to all the filesystem, even if it's
only with reading rights.
Is there a way to restrict them only to their $HOME dir or $HOME/public_html ?
Even if it's impossible, please let me know by EMail or by the list.
Thank you for the possible help.
Joao Rochate
-------------------------------------------------------
Joao Pedro Rochate | EMail:
[email protected]
Servicos de Informatica | URL: w3.ualg.pt/~jrochate
Universidade do Algarve | Phone: +351 (0)89 800 961
8000 Gambelas - FARO | ISDN: +351 (0)89 860 125
P O R T U G A L (pt) | Mobile:+351 (0)936 660 662
-=[
http://www.ualg.pt ]=- | Fax: +351 (0)89 860 129
-------------------------------------------------------
Eng. de Sistemas e Computacao - UCEH - Univ. do Algarve
From
[email protected] Thu Jul 31 10:29:55 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA27337;
Thu, 31 Jul 1997 10:19:28 -0500 (CDT)
Received: from mail.microserve.net (mail.microserve.net [207.44.0.4])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id KAA25869
for <
[email protected]>; Thu, 31 Jul 1997 10:14:35 -0500 (CDT)
Received: from reality (handley@reality [207.44.0.9])
by mail.microserve.net (8.8.5/naISPa) with SMTP id LAA15776
for <
[email protected]>; Thu, 31 Jul 1997 11:14:14 -0400 (EDT)
Message-Id: <Pine.UW2.3.95.970731111352.20897A-100000@reality>
Date: Thu, 31 Jul 1997 11:14:33 -0400 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Mike Handley <
[email protected]>
To:
[email protected]
Subject: Wild card (*) problems under SCO Unixware 2.1
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Sender: handley@reality
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hi,
I are running wu-ftpd 2.4 Release 2 Beta 13 on a SCO Unixware 2.1
machine. I have found that the "*" wildcard does not work. Here is a
quick example.
ftp> mget *
*: No such file or directory.
can't find list of remote files, oops
ftp> ls
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
total 32
drwxr-xr-x 2 handley other 1024 Jul 28 18:08 .
drwxrwxr-x 3 root sys 96 Jun 25 09:33 ..
-rw-r--r-- 1 handley other 0 Jun 24 10:49 .UpgradeVer2.1
-rw-r--r-- 1 handley other 0 Jun 26 12:56 .UpgradeVer2.1.1
-rw-r--r-- 1 handley other 0 Jun 26 13:01 .UpgradeVer2.1.2
-rw-r--r-- 1 handley other 673 Jun 26 12:56 .login
-rw-r--r-- 1 handley other 674 Jun 26 12:56 .profile
-rw------- 1 handley other 1004 Jul 28 19:58 .sh_history
-rw-r--r-- 1 handley other 51 Dec 11 1995 .vtlrc
-rwxr-xr-x 1 handley other 7112 Jul 22 15:26 a.out
-rw-r----- 1 handley other 2236 Jul 22 15:26 leakme.c
-rwxr-xr-x 1 root sys 74 Jul 28 18:08 msg.banner
The "ls" shows the available files:
ftp> ls le* - to show me the leakme.c file.
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
226 Transfer complete.
I surfed thu the code some and found that the problem may lie in
the NLST variable in ftpd.c or one of the following defines:
#define HAVE_REGEX_H
#define HAVE_DIRENT
#define HAVE_D_NAMLEN
I have tried removing and undefining these variables with no luck.
I was hoping someone else had this problem or you know of a solution?
TIA
Mike
~
----------------------------------------------------------------------------
Mike Handley
MicroServe Information Systems Mail:
[email protected]
Engineering
Tip of the Week/Month by Mike Handley:
---If you could unknow anyone you already know, whom would it be?----
------------------------------------------------------------------------------
From
[email protected] Thu Jul 31 10:48:50 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA24643;
Thu, 31 Jul 1997 10:38:12 -0500 (CDT)
Received: from perkin-elmer.com (firewall.perkin-elmer.com [204.255.73.2])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id KAA27195
for <
[email protected]>; Thu, 31 Jul 1997 10:35:05 -0500 (CDT)
Received: by perkin-elmer.com; id GAA20934; Thu, 7 Aug 1997 06:56:11 -0400
Received: from unknown(192.43.251.41) by firewall.perkin-elmer.com via smap (V3.1)
id xma020723; Thu, 7 Aug 97 06:56:03 -0400
Received: from texsys.abd.perkin-elmer.com by nucleus.abd.perkin-elmer.com (SMI-8.6/SMI-SVR4)
id IAA15929; Thu, 31 Jul 1997 08:35:36 -0700
Received: by texsys.abd.perkin-elmer.com (SMI-8.6/SMI-SVR4)
id IAA15070; Thu, 31 Jul 1997 08:35:35 -0700
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 08:35:35 -0700
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Yale Rosenblatt)
To:
[email protected]
Subject: misunderstood log entry
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I am running Version wu-2.4.2-academ[BETA-13] and it seems to be running
pretty well.
I have only one problem. We have a web site that that has a download button
that links into my server anonymously. Some users say that they are given
permission denied to download the software.
Now ftp or fetch to the server works fine, so I am not sure why
some people are having this problem. My log file does show one error
often. It could be a generic message or my problem.
Can someone tell me what the below "deny" message means? And as a
side issue, what is PASV and the associated numbers?
Yale Rosenblatt
Networking Manager
PE Applied Biosystems - Genetic Analysis Division
Jul 30 15:51:00 proteus ftpd[903]: ANONYMOUS FTP LOGIN FROM [user info]
Jul 30 15:51:00 proteus ftpd[903]: command: SYST
Jul 30 15:51:00 proteus ftpd[903]: SYST
Jul 30 15:51:00 proteus ftpd[903]: <--- 215
Jul 30 15:51:00 proteus ftpd[903]: UNIX Type: L8
Jul 30 15:51:00 proteus ftpd[903]: command: PASV
Jul 30 15:51:00 proteus ftpd[903]: PASV
Jul 30 15:51:00 proteus ftpd[903]: <--- 425
Jul 30 15:51:00 proteus ftpd[903]: Can't open passive connection: Permission denied.
Jul 30 15:51:00 proteus ftpd[903]: <--- 221
Jul 30 15:51:00 proteus ftpd[903]: You could at least say goodbye.
Jul 30 15:51:00 proteus ftpd[903]: FTP session closed
Jul 30 15:51:07 proteus ftpd[904]: <--- 220
Jul 30 15:51:07 proteus ftpd[904]: proteus FTP server (Version wu-2.4.2-academ[BETA-13](3) Wed May 7 00:13:17 PDT 1997) ready.
Jul 30 15:51:08 proteus ftpd[904]: command: USER anonymous
Jul 30 15:51:08 proteus ftpd[904]: <--- 331
Jul 30 15:51:08 proteus ftpd[904]: Guest login ok, send your complete e-mail address as password.
Jul 30 15:51:08 proteus ftpd[904]: USER anonymous
Jul 30 15:51:08 proteus ftpd[904]: command: PASS password
Jul 30 15:51:08 proteus ftpd[904]: PASS bobby@
Jul 30 15:51:08 proteus ftpd[904]: <--- 230
Jul 30 15:51:08 proteus ftpd[904]: Guest login ok, access restrictions apply.
Jul 30 15:51:08 proteus ftpd[904]: ANONYMOUS FTP LOGIN FROM [user info]
Jul 30 15:51:08 proteus ftpd[904]: command: SYST
Jul 30 15:51:08 proteus ftpd[904]: SYST
Jul 30 15:51:08 proteus ftpd[904]: <--- 215
Jul 30 15:51:08 proteus ftpd[904]: UNIX Type: L8
Jul 30 15:51:08 proteus ftpd[904]: command: PASV
Jul 30 15:51:08 proteus ftpd[904]: PASV
Jul 30 15:51:08 proteus ftpd[904]: <--- 425
Jul 30 15:51:08 proteus ftpd[904]: Can't open passive connection: Permission denied.
Jul 30 15:51:08 proteus ftpd[904]: <--- 221
Jul 30 15:51:08 proteus ftpd[904]: You could at least say goodbye.
Jul 30 15:51:08 proteus ftpd[904]: FTP session closed
From
[email protected] Thu Jul 31 11:41:43 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA30900;
Thu, 31 Jul 1997 11:34:40 -0500 (CDT)
Received: from landfield.com (ns.landfield.com [208.196.145.2])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id LAA01228
for <
[email protected]>; Thu, 31 Jul 1997 11:31:41 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 11:32:15 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Kent Landfield <
[email protected]>
To:
[email protected]
Subject: virtual hosting on linux
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: 8.0 -- ListProcessor(tm) by CREN
This question is for people who are running virtual hosting on Linux..
There was a message a month back about someone that was having trouble
getting beta-13 virtual support working on Linux due to a getsockname()
call failing.
Is there anyone using virtual hosting on linux ? If so please drop me a
note as to what you had to do to get it working. I don't have the time
to put up linux here at the moment but the question has come up. Thanks!
--
Kent Landfield Phone: 1-817-545-2502
The Landfield Group FAX: 1-817-545-7650
Email:
[email protected] http://www.landfield.com/
Please send comp.sources.misc related mail to
[email protected].
Search the Usenet Hypertext FAQ Archive at
http://www.faqs.org/faqs/
From
[email protected] Thu Jul 31 11:47:22 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id LAA04716;
Thu, 31 Jul 1997 11:41:01 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id LAA00162
for <
[email protected]>; Thu, 31 Jul 1997 11:37:47 -0500 (CDT)
Received: from ns1.fni.com (ns1.fni.com [204.181.104.1])
by ns1.fni.com (8.8.6/8.8.6) with SMTP id LAA16593;
Thu, 31 Jul 1997 11:37:15 -0500
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 11:37:15 -0500 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: Michael Brennen <
[email protected]>
To: Joao Rochate <
[email protected]>
Cc:
[email protected]
Subject: Re: Restricting filesystem to normal users
In-Reply-To: <
[email protected]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
guest FTP; the howto and other resources are below.
-- Michael
On Thu, 31 Jul 1997, Joao Rochate wrote:
> I need to make the following:
> * About 80 users on my server have $HOME/public_html dirs.
> * They will update their Web pages by FTP using wu-ftpd.
>
> The problem is that they have access to all the filesystem, even if it's
> only with reading rights.
>
> Is there a way to restrict them only to their $HOME dir or $HOME/public_html ?
This is the location for the latest wu-ftpd. You can't see the
directory contents, but get the file anyway. It's there.
ftp://ftp.academ.com/pub/wu-ftpd/private/wu-ftpd-2.4.2-beta-13.tar.Z
wu-ftpd FAQ:
http://www.cetis.hvu.nl/~koos/wu-ftpd-faq.html
OR
send mail to
[email protected]
with a subject line: send faq
guest howto:
ftp://ftp.fni.com/pub/wu-ftpd/guest-howto
OR
send mail to "
[email protected]"
(immediate autoresponder; subject does not matter)
wu-ftpd Resource Center:
http://www.landfield.com/wu-ftpd/
wu-ftpd list archive:
http://www.landfield.com/wu-ftpd/mail-archive/
There are additional security references in the above docs.
From
[email protected] Thu Jul 31 14:19:57 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA17814;
Thu, 31 Jul 1997 14:12:03 -0500 (CDT)
Received: from mailer.sagar.gob.mx (mailer.sagar.gob.mx [198.139.10.39])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id OAA19075
for <
[email protected]>; Thu, 31 Jul 1997 14:11:12 -0500 (CDT)
Received: from silvia.sagar.gob.mx by mailer.sagar.gob.mx (SMI-8.6/SMI-SVR4)
id OAA12052; Thu, 31 Jul 1997 14:08:57 -0600
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 14:14:15 -0600
Reply-To:
[email protected]
Sender:
[email protected]
From: "Ing. Silvia Beltr�n S." <
[email protected]>
To:
[email protected]
Subject: Summary: access denied, log, ftpaccess
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.01 [en] (Win95; I)
X-Priority: 3 (Normal)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Dear Managers,
This is the summary about the problems that I had in my ftp-server. I
hope it will be useful for the people with similars problems.
Regards
Silvia.
******
Problem:
"I installed the wu-ftpd2.4 but nobody can access, cause the server
always denied the access."
----
Sucessfull Answer:
"You should consider upgrading to the lastest beta version for both bug
and security fixes.(wu-ftpd2.4.2beta13)"
----
From: Michael Brennen <
[email protected]>
*********************
Problem:
---
the deamon doesn't send the information to the syslog.
---
Sucessfull Answsers:
I have the following lines in my file syslog.conf:
# FTPD Server Log Entries
#daemon.debug /var/log/ftpd.log
daemon.err /var/log/ftpd.log
daemon.info /var/log/ftpd.log
daemon.notice /var/log/ftpd.log
daemon.warning /var/log/ftpd.log
daemon.warning /dev/console
From: Kent Landfield
[email protected]>
so, I added to the inetd.conf the line:
ftp stream tcp nowait root
/usr/local/ftpanonimo/bin/in.ftpd in.ftpd -v -a
********************
Problem:
I have a large structure of directories under /pub/CEA, I want to permit
uploads in those directory.
---
Answer:
I wrote in the ftpaccess:
upload /services/ftpadm/ftp /pub/CEA yes ftp ftp 0777 dirs
upload /services/ftpadm/ftp /pub/CEA/*/* yes ftp ftp 0777 dirs
upload /services/ftpadm/ftp /pub/CEA/*/*/* yes ftp ftp 0777 dirs
upload /services/ftpadm/ftp /incoming/* yes ftp ftp 0555 dirs
upload /services/ftpadm/ftp * no
upload /services/ftpadm/ftp /bin no
upload /services/ftpadm/ftp /etc no
* thanks for the comments of Geoff Terry <
[email protected]>
From
[email protected] Thu Jul 31 17:34:54 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA32305;
Thu, 31 Jul 1997 17:27:50 -0500 (CDT)
Received: from o2.towery.com (ws-30.towery.com [207.15.173.30])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id RAA30329
for <
[email protected]>; Thu, 31 Jul 1997 17:21:25 -0500 (CDT)
Received: from o2 (localhost [127.0.0.1]) by o2.towery.com (950413.SGI.8.6.12/950213.SGI.AUTOCF) via SMTP id RAA15612; Thu, 31 Jul 1997 17:14:52 -0500
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 17:14:51 -0500
Reply-To:
[email protected]
Sender:
[email protected]
From: Ernest Mueller <
[email protected]>
To:
[email protected],
[email protected]
Cc:
[email protected]
Subject: wu-ftpd 2.4.2 beta 13 under IRIX 6.3
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Sender:
[email protected]
X-Mailer: Mozilla 3.01SGoldC-SGI (X11; I; IRIX 6.3 IP32)
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
I've just compiled and installed wu-ftpd-2.4.2-beta-13 on an SGI O2
running IRIX 6.4, and thought I'd share my experiences with you. I'll
follow the numbering of steps in the INSTALL file for convenience.
1. Compilation went great, using ./build sgi, with only a couple minor
warnings. I used the SGI compiler, since gcc and SGI don't mix too
happily right now. I also compiled it with -DVIRTUAL for the virtual
ftp server support, and that also went fine.
2. Installation was mostly OK - except for two things:
a. in makefiles/Makefile.sgi ETCDIR should be set to /usr/etc
because the default ftpd is /usr/etc/ftpd
b. in makefiles/Makefile.sgi the man page setup is wrong - here's
the deal. SGI man page setup under IRIX 6.x is evil. The default man
directories are /usr/share/catman/[agpu]_man - they've broken them up
into subdirectories where a_man includes sections 1,4, and 7, g_man
includes section 3, etc... It's not a lot of fun. Luckily, if you
stick man[1-8] directories straight into /usr/share/catman, man sees
them and is happy. So a quick fix is just changing
MANDIR=/usr/share/catman - but those man[1,5,8] directories don't exist
yet. In fact, in the base installation the SGI only ever has cat[1-8]
directories and not man[1-8] anywhere, even down in the grouped
subdirectories. So either the installer need to make them himself or
the install script needs to. I'm not sure if there's an elegant fix
here...
3. Editing /etc/inetd.conf went fine.
4. The "/etc/killall -HUP inetd" to restart the SGI inetd was required.
Here's where the plot thickens a little - SGI has no concept of an
/etc/shells file. My first ftp login was rejected with the message:
530 User ernestm access denied...(bad shell)
Login failed.
I just made an /etc/shells file and that fixed it - it might be nice if
ignoring this was compiled in since IRIX itself doesn't care. At least
there should be a note somewhere.
5-6. Skipped
7-9. ckconfig works fine.
I exercised all the ftpaccess options and the support programs, and all
work fine as best as I can tell.
Getting ls to work - as suggested in the FAQ, I had to generate dev/zero
usign MAKEDEV and copy over lib/libc.so.1 and lib/rld. Then all worked.
Virtual hosting - Not working yet, but I'll work on it tomorrow...
I'll let you all know how it turns out.
So in general, it's working fine out of the box. I plan to also install
it on some Origin 200's running IRIX 6.4 - should be much the same.
Ernest
--
Ernest C. Mueller
[email protected]
Webmaster Phone: (901) 251-7000
Towery Publishing
http://www.towery.com
From
[email protected] Thu Jul 31 19:54:08 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id TAA00167;
Thu, 31 Jul 1997 19:47:20 -0500 (CDT)
Received: from surveyor.aae.uiuc.edu (
[email protected] [128.174.156.125])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id TAA08597
for <
[email protected]>; Thu, 31 Jul 1997 19:46:31 -0500 (CDT)
Received: (from wwegner@localhost) by surveyor.aae.uiuc.edu (8.8.6/8.7.3) id TAA11670; Thu, 31 Jul 1997 19:45:46 -0500 (CDT)
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 19:45:46 +1900 (CDT)
Reply-To:
[email protected]
Sender:
[email protected]
From:
[email protected] (Wade Anthony Wegner)
To:
[email protected],
[email protected]
Subject: wu-ftpd on linux..
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: 8.0 -- ListProcessor(tm) by CREN
To any and all linux users -
Are there any special setups needed to build wu_ftpd on a linux system?
Even though there was the ./build lnx option, it didn't seems as if the
makefiles new where to search for certain librarys, and I wasn't able to
figure out where certain things were.
If anyone has had problems with setting up wu_ftpd on linux and discovered
anything, I would really appreciate some input. I'm at a loss as to what
I should do.
Thanks,
- Wade
--------------------------------------------------------------------------
Wade Wegner
[email protected]
UNIX Administrator Office Phone: (217) 265-0373
321F Talbot Lab Home Phone: (217) 344-5584
104 S. Wright Street Fax: (217) 244-0720
Urbana, IL 61801
http://www2.aae.uiuc.edu/~wwegner
From
[email protected] Thu Jul 31 22:06:21 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id VAA16097;
Thu, 31 Jul 1997 21:59:25 -0500 (CDT)
Received: from jester.ti.com (jester.ti.com [192.94.94.1])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id VAA18531
for <
[email protected]>; Thu, 31 Jul 1997 21:55:19 -0500 (CDT)
Received: from dadd.ti.com. ([156.117.179.59]) by jester.ti.com (8.8.5) with ESMTP id VAA09582; Thu, 31 Jul 1997 21:54:42 -0500 (CDT)
Received: from pavis.dadd.ti.com by dadd.ti.com. (8.8.4/)
id VAA28558; Thu, 31 Jul 1997 21:54:41 -0500 (CDT)
Received: by pavis.dadd.ti.com id <
[email protected]>; Thu, 31 Jul 1997 21:54:36 -0500
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 97 21:54:35 CDT
Reply-To:
[email protected]
Sender:
[email protected]
From: Bob Luckin <
[email protected]>
To:
[email protected]
Cc:
[email protected]
Subject: Re: misunderstood log entry
In-Reply-To: <
[email protected]>; from "Yale Rosenblatt" at Jul 31, 97 8:35 am
X-Mimi-Options: HEADERS TI2
X-Listprocessor-Version: 8.0 -- ListProcessor(tm) by CREN
Hello Yale,
I haven't seen any replies to your query on the mailing list yet, so I'll
try :-
You don't say what Operating System you are running on, but it might be
Solaris 2. Solaris 2 requires the permissions on ~ftp/dev/tcp to be set
to world writable in order for ftpd to be able to make passive connections.
Some FTP clients (usually Web browsers) try to establish a passive connection
with the server - that's what the PASV command in your log is. So if you
are running Solaris 2, try setting the permissions on ~ftp/dev/tcp to 666.
If you're running another OS, then I can't help...
This problem (and others) is documented in the FAQ which you can find on
the Web in Kent Landfield's excellent WU-FTPD Resource Centre at
http://www.landfield.com/wu-ftpd/
(The FAQ itself is at
http://www.hvu.nl/~koos/wu-ftpd-faq.html; look at
question 9.10)
The PASV command is basically a request to the server to move communication
to a non-default port on the server machine. You can find more detail in
the RFC at
http://www.landfield.com/rfcs/rfc959.html
The numbers in your log are the 3-digit codes the server uses at the
start of every response to the client to categorise the response type...
So for example, 425 implies (roughly) :
4 - negative completion, but you may retry as it _might_ be transient
2 - a control or data connection was involved
5 - more specific detail on the area indicated by the second digit of
the triad; in this case meaning it can't open the data connection.
These are also documented in the RFC.
I hope this helps !
Cheers, Bob
--
Bob Luckin
[email protected] "Rats live on no evil planet"
> I have only one problem. We have a web site that that has a download button
> that links into my server anonymously. Some users say that they are given
> permission denied to download the software.
>
> Now ftp or fetch to the server works fine, so I am not sure why
> some people are having this problem. My log file does show one error
> often. It could be a generic message or my problem.
>
> Can someone tell me what the below "deny" message means? And as a
> side issue, what is PASV and the associated numbers?
>
> Yale Rosenblatt
> Networking Manager
> PE Applied Biosystems - Genetic Analysis Division
>
> Jul 30 15:51:00 proteus ftpd[903]: ANONYMOUS FTP LOGIN FROM [user info]
> Jul 30 15:51:00 proteus ftpd[903]: command: SYST
> Jul 30 15:51:00 proteus ftpd[903]: SYST
> Jul 30 15:51:00 proteus ftpd[903]: <--- 215
> Jul 30 15:51:00 proteus ftpd[903]: UNIX Type: L8
> Jul 30 15:51:00 proteus ftpd[903]: command: PASV
> Jul 30 15:51:00 proteus ftpd[903]: PASV
> Jul 30 15:51:00 proteus ftpd[903]: <--- 425
> Jul 30 15:51:00 proteus ftpd[903]: Can't open passive connection: Permission denied.
> Jul 30 15:51:00 proteus ftpd[903]: <--- 221
> Jul 30 15:51:00 proteus ftpd[903]: You could at least say goodbye.
> Jul 30 15:51:00 proteus ftpd[903]: FTP session closed
> Jul 30 15:51:07 proteus ftpd[904]: <--- 220
[Snip...]
From
[email protected] Thu Jul 31 23:21:08 1997
Received: from host (wugate.wustl.edu [128.252.120.1])
by wugate.wustl.edu (8.8.5/8.8.5) with SMTP id XAA27487;
Thu, 31 Jul 1997 23:16:11 -0500 (CDT)
Received: from pop.cybernex.net (
[email protected] [207.198.151.60])
by wugate.wustl.edu (8.8.5/8.8.5) with ESMTP id XAA31751
for <
[email protected]>; Thu, 31 Jul 1997 23:15:05 -0500 (CDT)
Received: from gate.cybernex.net (
[email protected] [204.141.116.17])
by pop.cybernex.net (Mail-clerk/Homer) with ESMTP id XAA17453
for <
[email protected]>; Thu, 31 Jul 1997 23:33:14 -0400
Received: (from bug@localhost)
by gate.cybernex.net (8.8.5/8.8.5) id XAA05371
for
[email protected]; Thu, 31 Jul 1997 23:27:49 -0400
Message-Id: <
[email protected]>
Date: Thu, 31 Jul 1997 23:27:49 +2000 (EDT)
Reply-To:
[email protected]
Sender:
[email protected]
From: "Matt W." <
[email protected]>
To:
[email protected]
Subject: RE: Invalid Login
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: 8.0 -- ListProcessor(tm) by CREN
> Did you install shadow and forget to recompile wu-ftpd for shadow
support?
I have gone through the install files and I am not sure how to compile it
for Shadow support. Could you please tell me?
>> On Mon, 28 Jul 1997, Matt W. wrote:
>> Whenever I have users login through ftp they get 'invalid login'.
Thank You again
Matt
[email protected]