|
Serwer FTP dla lamera
7PGXW - 29-03-2009 21:44
Próbowałem skonfigurować kilka serwerów FTP wg różnych poradników, ale jedyne czego się nabawiłem to zły humor. Cezar FTP pod wine nie chce się uruchomić albo już sam nie wiem, co się z nim dzieje. Niech ktoś po kolei napisze mi co mam zrobić, żebym mógł udostępniać pliki współlokatorom (dajmy na to konto sumo hasło sumo).
silentwr - 29-03-2009 23:20
Było o tym na forum wiele razy, próbowałeś z ProFTPd? Na temat tego programu znajdziesz najwięcej tematów i rozwiązań problemów, tu, na forum. Sam z doświadczenia wiem, że nie wymaga on wielkiej wiedzy jeśli mowa o konfiguracji, ponadto można do niego zainstalować GUI i wszystko staje się jeszcze prostsze.
Ister - 30-03-2009 08:33
Ostatnio (dwa dni temu) konfiguracja ProFTPd zajęła mi może 5 minut. Nie próbuj uruchamiać windowsowych programów tam, gdzie masz dobre (LEPSZE) programy linuksowe. FTP na pewno do tej grupy należy.
Doinstaluj paczkę ProFTPd i daj znać jakie są tego efekty.
Co do nazwy użytkownika i hasła - po prostu załóż odpowiednie konto na serwerze (ewentualnie ograniczając mu dostęp). I nie zapomnij tak nadać uprawnienia, żeby ten użytkownik mógł w ogóle pliki, które chesz mu udostępnić zobaczyć/ściągnąć.
Pozdrawiam
7PGXW - 30-03-2009 08:37
Próbowałem z pro, próbowałem z vsftpd, z pure-ftpd... i mnie już trafia.
Ister - 30-03-2009 09:01
Ok, zacznij od wywalenia wszystkich serwerów ftp jakie masz (może masz więcej niż jeden zainstalowany). Skoncentrujmy się na jednym - ja proponuję ProFTPd. Jak już wyrzucisz ,,co inne", sprawdź, czy nic nie nasłuchuje na porcie ftp:
netstat -a|grep ftp
Wynik powinien wyglądać mniej więcej tak:
shila:/home/tomek# netstat -a|grep ftp shila:/home/tomek#
Jeśli będzie wyglądał tak:
shila:/home/tomek# netstat -a|grep ftp tcp 0 0 *:ftp *:* LISTEN shila:/home/tomek#
to coś na tym porcie jeszcze chodzi. W razie czego przerwij w tym miejscu i napisz, poszukamy, ubijemy ;-)
A teraz do rzeczy - zainstaluj ProFTPd. Wejdź w edycję pliku
Sprawdź, czy teraz coś słucha na porcie ftp
netstat -a|grep ftp
Jeśli nie, to spróbuj poprawić nieco ustawień (i tak warto to zrobić)
/etc/proftpd/proftpd.conf swoim ulubionym edytorem (u mnie będzie to joe): joe /etc/proftpd/proftpd.conf
Wyłącz IPv6, chyba, że potrzebujesz (UseIPv6) Zmień nazwę serwera (ServerName) Upewnij się, że serwer jest uruchamiany jako inetd (ServerType) Upewnij się, że port jest ustawiony na 21 (Port)
Zapisz ustawienia.
Teraz pora na inetd.conf:
joe /etc/inetd.conf
i sprawdź, że jest tam linijka:
ftp stream tcp nowait root /usr/sbin/tcpd /usr/sbin/proftpd
Jak nie ma, dopisz. Teraz restartujesz inetd: inetd restart
i ponownie sprawdzasz czy działa. netstat -a|grep ftp
Jak dotąd dojdziesz to daj znać.
genobis - 30-03-2009 09:07
Mnie zwykły ftpd z marszu działa, bez jakiejkolwiek konfiguracji...
silentwr - 30-03-2009 12:09
lster tego typu poradników/tutoriali jest mnóstwo w sieci, chyba, że chcesz koledze napisać nowy :P 7PGXW napisz jakie problemy miałeś przy instalacji ProFTPd, co wyrzucała konsola, a najlepiej napisz: instalując taki i taki serwer ftp, korzystałem z takiego i takiego poradnika, nie udało się z powodu błędu takiego i takiego, etc. etc.
lis6502 - 30-03-2009 12:28
Sprawdź jeszcze
cat /etc/passwd | grep ftp
bo tyle krwi co ja sobie napsułem od wczoraj z powodu błędnego wpisu...
Ister - 30-03-2009 12:40
No tak, w sumie to wywarzanie otwartych drzwi. Dopóki 7PGXW nie wrzuci jakichś logów i nie napisze jak aktualnie wygląda sytuacja (czyli co jest zainstalowane), to nie pomożemy mu raczej.
7PGXW - 24-04-2009 22:17
Ostatnim razem współlokator jakimś cudem się połączył. Teraz znowu zainstalowałem proftpd, standardowe ustawienia - nic, odhaszowanie sekcji "Anonymous" - nic. :/ # # /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file. # To really apply changes reload proftpd after modifications. #
# Includes DSO modules Include /etc/proftpd/modules.conf
# Set off to disable IPv6 support which is annoying on IPv4 only boxes. UseIPv6 on # If set on you can experience a longer connection delay in many cases. IdentLookups off
ServerName "192.168.107" ServerType inetd DeferWelcome off
MultilineRFC2228 on DefaultServer on ShowSymlinks on
TimeoutNoTransfer 600 TimeoutStalled 600 TimeoutIdle 1200
DisplayLogin welcome.msg DisplayChdir .message true ListOptions "-l"
DenyFilter \*.*/
# Use this to jail all users in their homes # DefaultRoot ~
# Users require a valid shell listed in /etc/shells to login. # Use this directive to release that constrain. # RequireValidShell off
# Port 21 is the standard FTP port. Port 21
# In some cases you have to specify passive ports range to by-pass # firewall limitations. Ephemeral ports can be used for that, but # feel free to use a more narrow range. # PassivePorts 49152 65534
# If your host was NATted, this option is useful in order to # allow passive tranfers to work. You have to use your public # address and opening the passive ports used on your firewall as well. # MasqueradeAddress 1.2.3.4
# This is useful for masquerading address with dynamic IPs: # refresh any configured MasqueradeAddress directives every 8 hours <IfModule mod_dynmasq.c> # DynMasqRefresh 28800 </IfModule>
# 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 proftpd Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs # (second parm) from being group and world writable. Umask 022 022 # Normally, we want files to be overwriteable. AllowOverwrite on
# Uncomment this if you are using NIS or LDAP via NSS to retrieve passwords: # PersistentPasswd off
# This is required to use both PAM-based authentication and local passwords # AuthOrder mod_auth_pam.c* mod_auth_unix.c
# Be warned: use of this directive impacts CPU average load! # Uncomment this if you like to see progress and transfer rate with ftpwho # in downloads. That is not needed for uploads rates. # # UseSendFile off
TransferLog /var/log/proftpd/xferlog SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_quotatab.c> QuotaEngine off </IfModule>
<IfModule mod_ratio.c> Ratios off </IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in # http://security.lss.hr/index.php?pag...LSS-2004-10-02 # It is on by default. <IfModule mod_delay.c> DelayEngine on </IfModule>
<IfModule mod_ctrls.c> ControlsEngine off ControlsMaxClients 2 ControlsLog /var/log/proftpd/controls.log ControlsInterval 5 ControlsSocket /var/run/proftpd/proftpd.sock </IfModule>
<IfModule mod_ctrls_admin.c> AdminControlsEngine off </IfModule>
# # Alternative authentication frameworks # #Include /etc/proftpd/ldap.conf #Include /etc/proftpd/sql.conf
# # This is used for FTPS connections # #Include /etc/proftpd/tls.conf
# A basic anonymous configuration, no upload directories.
<Anonymous ~ftp> User ftp Group nogroup # We want clients to be able to login with "anonymous" as well as "ftp" UserAlias anonymous ftp # Cosmetic changes, all files belongs to ftp user DirFakeUser on ftp DirFakeGroup on ftp RequireValidShell off # # # 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 DisplayChdir .message # # Limit WRITE everywhere in the anonymous chroot <Directory *> <Limit WRITE> DenyAll </Limit> </Directory> # # # Uncomment this if you're brave. <Directory incoming> # # # Umask 022 is a good standard umask to prevent new files and dirs # # # (second parm) from being group and world writable. Umask 022 022 <Limit READ WRITE> DenyAll </Limit> <Limit STOR> AllowAll </Limit> </Directory> </Anonymous>
zanotowane.pldoc.pisz.plpdf.pisz.plminister.pev.pl
|