Re: best choice FTP Server

2003-06-05 Thread Andrew I Baznikin
On Thu, 5 Jun 2003 01:40:20 -0800
admin [EMAIL PROTECTED] wrote:

 
 
 Hope this make sense.
 
 Looking for the best way for people to manage their websites.  Well I am
 hosting a bunch of virtually hosted websites based on hostname (single IP
 machine).  I am needing to set up many ftponly accounts (no shell access)
 which will drop users into the proper directory depending on which username is
 in use.  Is there a way to do host based ftp? I also want to lockout users
 from logging into the ftp site who have shell acounts but do not need access
 to update their websites via ftp.  what is the best software alternative out
 there for me?  


Look for proftpd (www.proftpd.org) - it's very configurable.

-- 
Andrew I Baznikin
http://d.scn.ru

#  /\ASCII ribbon
#  \/  campaign
#  /\  against
# /  \HTML email
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


libradius

2003-06-02 Thread Andrew I Baznikin
Hi!

According to RFC 2865, mandatory attributes in RADIUS request is User-Name and 
Service-Type.

But in radlib.c exists these lines:

} else {
/* Make sure the user gave us a password */
if (h-pass_pos == 0  !h-chap_pass) {
generr(h, No User or Chap Password attributes given);
return -1;
}
if (h-pass_pos != 0  h-chap_pass) {
generr(h, Both User and Chap Password attributes given
return -1;
}
}

I need to send a request with no User-Password field, but I can not do it with 
libradius.

This shoud be fixed or I need to write my own lib?


-- 
Andrew I Baznikin
http://d.scn.ru

#  /\ASCII ribbon
#  \/  campaign
#  /\  against
# /  \HTML email
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]