# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName "Ftp Default Server"
#ServerIdent on "FTP Server ready."
#ServerAdmin root@localhost
#Set the mode proftpd runs in
ServerType standalone
# Set the default server
DefaultServer on
#AccessGrantMsg "User %u logged in."
#Set the file to display on login
DisplayLogin .ftpmotd
#Set the file to display on quit
DisplayQuit .ftpgoaway
#Don't show welcome message until user has authenticated
DeferWelcome off
#allow root to login
RootLogin On
#Sets default chroot directory
DefaultRoot ~
# Use this to excude users from the chroot
DefaultChdir /
# Use pam to authenticate by default
AuthPAMAuthoritative on
# Do not perform ident nor DNS lookups (hangs when the port is filtered)
IdentLookups off
UseReverseDNS off
# Sets the idle connection timeout,Setting TimeoutIdle to 0 disables the idle timer completely
TimeoutIdle 120
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# Default to show dot files in directory listings
ListOptions "-a"
#Limits the connections per client machine
MaxClientsPerHost 10
# Allow to resume not only the downloads but the uploads too
AllowRetrieveRestart on
AllowStoreRestart on
# This is where we want to put the pid file
ScoreboardFile /var/proftpd.pid
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances 30
# Set the user and group that the server normally runs at.
User nobody
Group nobody
AllowOverwrite yes
AllowAll
# Limit WRITE everywhere in the anonymous chroot, allow READ everywhere
AllowAll
DenyAll
#allow login from all ip address
Order Deny,Allow
Allow from all
# Limit the maximum number of anonymous logins
MaxClients 100 "Sorry, max %m users -- try again later"
# Logging options
TransferLog /var/log/proftpd/xferlog.regacy
# Some logging formats
LogFormat default "%h %l %u %t \"%r\" %s %b"
LogFormat auth "%v [%P] %h %t \"%r\" %s"
LogFormat write "%h %l %u %t \"%r\" %s %b"
# A basic anonymous configuration, no upload directories.
User ftp
Group ftp
UserAlias anonymous ftp
DirFakeUser on ftpadm
DirFakeGroup on ftpadm
AccessGrantMsg "Anonymous login ok, restrictions apply."
# Put the user into / right after login
DefaultChdir /
DisplayLogin /.ftpmotd
DisplayQuit /.ftpgoaway
DisplayReadme README*
# Limit WRITE everywhere in the anonymous chroot, allow READ everywhere
AllowAll
DenyAll
# An upload directory that allows storing files but not retrieving
# or creating directories.
AllowOverwrite no
DenyAll
AllowAll
Order Deny,Allow
Allow from all
# Don't write anonymous accesses to the system wtmp file (good idea!)
WtmpLog off
# Loggin for the anonymous transfers
ExtendedLog /var/log/proftpd/access.log WRITE,READ default
ExtendedLog /var/log/proftpd/auth.log AUTH auth
ServerName "mp3"
Port 21
DisplayLogin .ftpmotd
DisplayQuit .ftpgoaway
MaxClients 100 "Sorry, max %m users -- try again later"
MaxClientsPerHost 10
DefaultRoot /root/mp3
AllowAll
DenyAll
Order Deny,Allow
Allow from all
User ftp
Group ftp
UserAlias anonymous ftp
dirFakeUser on ftpadm
dirFakeGroup on ftpadm
DisplayLogin .ftpmotd
DisplayQuit .ftpgoaway
AllowAll
DenyAll
报错信息为:
- getaddrinfo 'heaton.localdomain' error: Name or service not known
- error: unable to determine IP address of 'heaton.localdomain'
- getaddrinfo 'heaton.localdomain' error: Name or service not known
- error: unable to determine IP address of 'heaton.localdomain'
请高手们不吝赐教!!!小弟谢谢拉