PDA

View Full Version : anonymous ftp without ispconfig


pyro
23rd April 2007, 13:20
Hi all!

i`m using opensuse 10.2 perfect setup with ISPConfig. I want use anonymous ftp different root directory that ISPConfig proftpd_ispconfig.conf. I cant put it to proftpd_ispconfig.conf file becaus when ftp service restarts it makeing new conf file every time. How can i add to proftpd.conf file anonymous ftp login?
Sorry my poor english.

falko
24th April 2007, 19:31
You can add your changes to the template in /root/ispconfig/isp/conf/.

pyro
26th April 2007, 11:50
i maked lines to /root/ispconfig/isp/conf/proftpd_ispconfig.conf.master


<VirtualHost IP>
<Anonymous /srvData/ftp>
User ftp
Group ftp
UserAlias anonymous ftp
UserAlias guest ftp
MaxClients 10 "Sorry, max %m users -- try again later"
<Directory /srvData/ftp>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
<Directory /srvData/ftp/incoming>
Umask 022
<Limit STOR>
AllowAll
</Limit>
<Limit READ>
DenyAll
</Limit>
</Directory>
</Anonymous>
</VirtualHost>

but its not worrking (Password required for anonymous - login incorrect)

falko
27th April 2007, 15:23
Do you see your changes in /etc/proftpd_ispconfig.conf? If not, you have to change something in the ISPConfig web interface so that ISPConfig rewrites the configuration files.

pyro
30th April 2007, 13:05
aah, now i understand, ispconfig writes second anonymous virtualhost - i replaced my settings first and ispconfig second and all works :)

sorry poor english