Difference between revisions of "WU-FTPD"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(→‎Reference: notes - linux - config files)
(→‎Reference: wikipedia)
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
==Reference==
 
==Reference==
 
* [http://www.wu-ftpd.org/  WU-FTPD Development Group]
 
* [http://www.wu-ftpd.org/  WU-FTPD Development Group]
 +
* {{wikipedia|WU-FTPD}}
 +
 
==Notes==
 
==Notes==
 
===Linux===
 
===Linux===
Line 15: Line 17:
 
* '''/etc/ftpusers''': list of system users not allowed to connect via ftp (typically "root" and other admin accounts)
 
* '''/etc/ftpusers''': list of system users not allowed to connect via ftp (typically "root" and other admin accounts)
 
* [[ftpaccess]]: main configuration file. Haven't found where this file lives yet; maybe it has to be created from scratch?
 
* [[ftpaccess]]: main configuration file. Haven't found where this file lives yet; maybe it has to be created from scratch?
 +
* Absolutely could not get wu-ftpd to work; this is what always happens, regardless of where I'm trying to connect from:
 +
'''woozle@rizzo:~$''' ftp localhost
 +
ftp: connect: Connection refused
 +
: Giving up and trying [[ProFTPD]]

Latest revision as of 23:34, 1 December 2006

Navigation

computing: software: WU-FTPD

Overview

WU-FTPD is a popular free/open-source FTP server.

This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!

Reference

Notes

Linux

Relevant configuration files:

  • /etc/inetd.conf: network configuration. Should include a line specifying wu-ftpd as the handler for ftp connections (e.g. the last line in this sample inetd.conf; "-a" added on recommendation of FAQ):
woozle@rizzo:~$ sudo cat /etc/inetd.conf
#<off># netbios-ssn     stream  tcp     nowait  root    /usr/sbin/tcpd  /usr/sbin/smbd
swat            stream  tcp     nowait.400      root    /usr/sbin/tcpd  /usr/sbin/swat
ftp             stream  tcp     nowait  root    /usr/sbin/tcpd  /usr/sbin/wu-ftpd -l -a
  • /etc/ftpusers: list of system users not allowed to connect via ftp (typically "root" and other admin accounts)
  • ftpaccess: main configuration file. Haven't found where this file lives yet; maybe it has to be created from scratch?
  • Absolutely could not get wu-ftpd to work; this is what always happens, regardless of where I'm trying to connect from:
woozle@rizzo:~$ ftp localhost
ftp: connect: Connection refused
Giving up and trying ProFTPD