|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Enable FXP On Proftpd
i have been trying to enable it on are server i was told to do the following:
need to SSH into your server as root then pico /etc/proftpd.conf and change : AllowForeignAddress to on i tried that but AllowForeignAddress didnt exist in the file, below is the file contents login as: root root@multitech-support.com's password: Last login: Fri Nov 25 21:53:11 2005 from 82-42-29-31.cable.ubr02.knor.blueyonde r.co.uk root@n3o [~]# pico /etc/proftpd.conf GNU nano 1.2.1 File: /etc/proftpd.conf # from being group and world writable. Umask 022 # 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 under which the server will run. User nobody Group proftpd # To cause every FTP user to be "jailed" (chrooted) into their home # directory, uncomment this line. #DefaultRoot ~ # Normally, we want files to be overwriteable. <Directory /> AllowOverwrite on </Directory> # A basic anonymous configuration, no upload directories. If you do not # want anonymous users, simply delete this entire <Anonymous> section. ######################################################################### # # # Uncomment lines with only one # to allow basic anonymous access # # # ######################################################################### #<Anonymous ~ftp> # User ftp # Group ftp ### We want clients to be able to login with "anonymous" as well as "ftp" # UserAlias anonymous ftp ### Limit the maximum number of anonymous logins # MaxClients 10 ### We want 'welcome.msg' displayed at login, and '.message' displayed ### in each newly chdired directory. # DisplayLogin welcome.msg # DisplayFirstChdir .message ### Limit WRITE everywhere in the anonymous chroot # <Limit WRITE> # DenyAll # </Limit> #</Anonymous> DefaultRoot ~ !wheel |
|
#2
|
|||
|
|||
|
Example 4-4. Configuration fragment
ServerName "Frostbite FTPserver" ServerType standalone . . . <Global> . . . ExtendedLog /var/spool/syslog/proftpd/fascist.log ALL default ServerIdent on "Linux.co.uk server" AllowForeignAddress on PathDenyFilter "(\.htaccess)|(\.ftpaccess)$" </Global> . . . <VirtualHost 195.200.4.15> ServerAdmin zathras@linux.co.uk ServerName "Linux.co.uk FTP Archive" . . . <Anonymous /ftp/ftp.linux.co.uk> User ftp Group ftp UserAlias anonymous ftp RequireValidShell no AllowForeignAddress on . . . |
|
#3
|
|||
|
|||
|
Quote:
Have you seen this? http://forums.devshed.com/ftp-help-113/proftp-and-fxp-145935.html |
![]() |
| Viewing: Dev Shed Forums > System Administration > FTP Help > Enable FXP On Proftpd |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|