Re: [newbie] FTP Access

2003-06-10 Thread Cody Harris
At 10:08 PM 6/9/2003 -0400, you wrote:
On Mon, 09 Jun 2003 18:29:31 -0300
Cody Harris [EMAIL PROTECTED] wrote:
 I need a second annoymous FTP account called r-and-e. I need it to
 be in folder /mnt/network/r-and-e. The conf file and documentation
 kinda confuses me. Oh, this folder can't be witeable either.
Well, first you'll need to create the user and group. You can do that
with UserDrake or whatever you prefer for that. For the shell, you want
to specify /sbin/nologin so they can't log in to your machine as a
regular user.
From proftpd documentation:
http://www.proftpd.org/docs/faq/linked/faq-ch5.html#AEN559
Add to your /etc/proftpd.conf file

Anonymous ~username
AnonRequirePassword off
User username
Group groupname
RequireValidShell off
Directory *
Limit WRITE
DenyAll
/Limit
/Directory
/Anonymous
That lets them log on using whatever username you give and will take an
email addy for a password. They are not allowed to write to any
directory.
The trick is to have the ftp look in a directory that's not in /var/ftp.
You can use another directory as ftp document root, but I think you have
tomount it as that. See
http://proftpd.linux.co.uk/localsite/Userguide/linked/chroot-symlinks.html
for instructions on that.
Thanks a lot. Have a good day.


HTH,
Todd
Want to buy your Pack or Services from MandrakeSoft?
Go to http://www.mandrakestore.com
-Cody Harris

++
| Linux Rox My Sox!  |
| Check out HCHS!|
| http://vectec.net  |
++--+
| Proud to use Mandrake Linux 8.1 as a server.  |
| Not proud to use Windows as a primary server. |
++--+
| Registered Linux user #315598  |
| Registered Linux Computer #200951  |
| Wrote on a Windoze Computer :( |
++

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] FTP Access

2003-06-10 Thread Cody Harris
Error:

+-Error +
¦ Invalid command interpreter   ¦
¦   ¦
¦   ¦
¦  +--+ ¦
¦  ¦Ok¦ ¦
¦  +--+ ¦
+---+
Settings:
   Username: r-and-e
  Group: hchs-user
   Home Dir: /mnt/network/r-and-e
Command interpreter: /sbin/nologin
This e-mail has been made for PLAIN TEXT

From proftpd documentation:
http://www.proftpd.org/docs/faq/linked/faq-ch5.html#AEN559
Add to your /etc/proftpd.conf file

Anonymous ~username
AnonRequirePassword off
User username
Group groupname
RequireValidShell off
Directory *
Limit WRITE
DenyAll
/Limit
/Directory
/Anonymous
That lets them log on using whatever username you give and will take an
email addy for a password. They are not allowed to write to any
directory.
The trick is to have the ftp look in a directory that's not in /var/ftp.
You can use another directory as ftp document root, but I think you have
tomount it as that. See
http://proftpd.linux.co.uk/localsite/Userguide/linked/chroot-symlinks.html
for instructions on that.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] FTP Access

2003-06-09 Thread Cody Harris


Could someone give me off list assistance with ProFTPD? I know this is
the wrong place but...

-Cody Harris
++
| Linux Rox My Sox! |
| Check out HCHS! |
|
http://vectec.net
 |
++--+
| Proud to use Mandrake Linux 8.1 as a server. |
| Not proud to use Windows as a primary server. |
++--+
| Registered Linux user #315598 |

| Registered Linux Computer #200951 |
| Wrote on a Windoze Computer :( |
++




Re: [newbie] FTP Access

2003-06-09 Thread Todd Slater
On Mon, Jun 09, 2003 at 04:44:25PM -0300, Cody Harris wrote:
 Could someone give me off list assistance with ProFTPD? I know this is the 
 wrong place but...
 
 -Cody Harris

I've used it before, whatcha need?

Todd

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] FTP Access

2003-06-09 Thread Cody Harris


I need a second annoymous FTP account called r-and-e. I need
it to be in folder /mnt/network/r-and-e. The conf file and documentation
kinda confuses me. Oh, this folder can't be witeable either.
At 05:03 PM 6/9/2003 -0400, you wrote:
On Mon, Jun 09, 2003 at 04:44:25PM
-0300, Cody Harris wrote:
 Could someone give me off list assistance with ProFTPD? I know this
is the 
 wrong place but...
 
 -Cody Harris
I've used it before, whatcha need?
Todd
Want to buy your Pack or Services from MandrakeSoft? 
Go to
http://www.mandrakestore.com

-Cody Harris
++
| Linux Rox My Sox! |
| Check out HCHS! |
|
http://vectec.net
 |
++--+
| Proud to use Mandrake Linux 8.1 as a server. |
| Not proud to use Windows as a primary server. |
++--+
| Registered Linux user #315598 |

| Registered Linux Computer #200951 |
| Wrote on a Windoze Computer :( |
++




Re: [newbie] FTP Access

2003-06-09 Thread Todd Slater
On Mon, 09 Jun 2003 18:29:31 -0300
Cody Harris [EMAIL PROTECTED] wrote:

 I need a second annoymous FTP account called r-and-e. I need it to
 be in folder /mnt/network/r-and-e. The conf file and documentation
 kinda confuses me. Oh, this folder can't be witeable either.

Well, first you'll need to create the user and group. You can do that
with UserDrake or whatever you prefer for that. For the shell, you want
to specify /sbin/nologin so they can't log in to your machine as a
regular user.

From proftpd documentation:
http://www.proftpd.org/docs/faq/linked/faq-ch5.html#AEN559

Add to your /etc/proftpd.conf file

Anonymous ~username
AnonRequirePassword off
User username
Group groupname
RequireValidShell off
Directory *
Limit WRITE
DenyAll
/Limit
/Directory
/Anonymous

That lets them log on using whatever username you give and will take an
email addy for a password. They are not allowed to write to any
directory.

The trick is to have the ftp look in a directory that's not in /var/ftp.
You can use another directory as ftp document root, but I think you have
tomount it as that. See
http://proftpd.linux.co.uk/localsite/Userguide/linked/chroot-symlinks.html
for instructions on that.

HTH,
Todd

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] FTP access with Linux Mandrake 8.1

2002-02-10 Thread Dan Lueders

On Thursday 07 February 2002 09:24, you wrote:

can someone please help

 hello, I am trying to set up an ftp site with 2 different user names but I
 am not real sure where to begin.  I have tried setting them up in KUSER but
 it seems that when I do that there is some kind of error with the password
 or if it goes through the user can access my entire / drive and not
 just their home directory.  Does anyone have any real good tips for setting
 up FTP sites that have limited access with Linux Mandrake 8.1?



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] FTP access with Linux Mandrake 8.1

2002-02-07 Thread Dan Lueders

hello, I am trying to set up an ftp site with 2 different user names but I am 
not real sure where to begin.  I have tried setting them up in KUSER but it 
seems that when I do that there is some kind of error with the password or if 
it goes through the user can access my entire / drive and not just their 
home directory.  Does anyone have any real good tips for setting up FTP sites 
that have limited access with Linux Mandrake 8.1?




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] FTP access to other folder

2001-10-29 Thread trus

Hi all

The FTP service on my Linux box defaults to /home/ftp which contains the
folders: bin, pub, 
I have some files in /home/abc and want to give FTP access to this folder.

I know that one option is to move /home/abc to /home/ftp/abc, but this will
be my last resort.

I tried creating a symbolic link:
 [root@linux /ftp]#ln -s /home/abc abc

However, when I try to access the folder with an FTP client, I get the
error message:

 Requested action not taken (e.g., file or directory not found, no
access).

Is it possible to give access both to the current folder in /home/ftp and
to /home/abc?
Else, how can I change the default folder which the FTP server accesses?

Thanks for your help.
TRUS




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[newbie] ftp access

2000-09-26 Thread Joel Stitzel

this question appears to have been asked a number of times on the mailing
list archives, but i can't seem to find any answers!

how do i change ftp access to my linux box for a given user (myself) so that
i can remotely update the files on my web page (under home/httpd/html)

any help would be greatly appreciated!
-joel





[newbie] FTP access

1999-11-21 Thread Richard G. Samuels

Any ideas why I can't access a Mandrake 6.0 server with an FTP client as
a "real" user when I can as an anonymous user? The ftpaccess file is set
for the default.