Results 1 to 1 of 1
Hello,
I have installed ProFTPD and it seems to be working.. But when I login I get
blk-137-79-31.eastlink.ca UNKNOWN nobody [27/May/2007:20:05:10 +0000] "USER steve" 331 -
blk-137-79-31.eastlink.ca UNKNOWN nobody [27/May/2007:20:05:10 ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-27-2007 #1Just Joined!
- Join Date
- May 2007
- Posts
- 1
ProFTPD Help
Hello,
I have installed ProFTPD and it seems to be working.. But when I login I get
blk-137-79-31.eastlink.ca UNKNOWN nobody [27/May/2007:20:05:10 +0000] "USER steve" 331 -
blk-137-79-31.eastlink.ca UNKNOWN nobody [27/May/2007:20:05:10 +0000] "PASS (hidden)" 530 -
in my logfile..
My config file is
I have created a directory, and set the 755 premissions.Code:# To really apply changes reload proftpd after modifications. AllowOverwrite on AuthAliasOnly on # Choose here the user alias you want !!!! UserAlias steve userftp ServerName "VG-Radio" ServerType standalone DeferWelcome on MultilineRFC2228 on DefaultServer on ShowSymlinks off TimeoutNoTransfer 600 TimeoutStalled 100 TimeoutIdle 2200 DisplayFirstChdir .message ListOptions "-l" RequireValidShell off TimeoutLogin 10 RootLogin off UseReverseDNS off IdentLookups off # It's better for debug to create log files ;-) ExtendedLog /var/log/ftp.log TransferLog /var/log/xferlog SystemLog /var/log/syslog.log #DenyFilter \*.*/ # I don't choose to use /etc/ftpusers file (set inside the users you want to ban, not useful for me) UseFtpUsers off # Allow to restart a download AllowStoreRestart on # Port 21 is the standard FTP port, so you may prefer to use another port for security reasons (choose here the port you want) Port 21 # 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) # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances 8 # Set the user and group that the server normally runs at. User nobody Group nobody # Umask 022 is a good standard umask to prevent new files and dirs # (second parm) from being group and world writable. Umask 022 022 PersistentPasswd off MaxClients 8 MaxClientsPerHost 8 MaxClientsPerUser 8 MaxHostsPerUser 8 # Display a message after a successful login AccessGrantMsg "welcome !!!" # This message is displayed for each access good or not ServerIdent on "you're at home" # Set /home/FTP-shared directory as home directory DefaultRoot /home/shoutcast # Lock all the users in home directory, ***** really important ***** DefaultRoot ~ MaxLoginAttempts 5 #VALID LOGINS <Limit LOGIN> AllowUser steve DenyALL </Limit> <Directory /home/shoutcast> Umask 022 022 AllowOverwrite on <Limit MKD STOR DELE XMKD RNRF RNTO RMD XRMD> DenyAll </Limit> </Directory>
I did everything accord to HOWTO : Create a FTP server with user access (proftpd) - Ubuntu Forums only using CentOS stuff instead of Ubuntu.
Any help would be appreciated
Oh and yes I created a user
- Steve


Reply With Quote
