proftpd - nie można nawi

Konfiguracja serwerów, usług, itp.
antek95
Posty: 39
Rejestracja: 19 października 2007, 19:42
Lokalizacja: Warszawa-Rembertów

proftpd - nie można nawiązać połączenia

Post autor: antek95 »

Witam.
Ostatnio próbowałem uruchomić serwer ftp na podstawie tego artykułu: http://debian.linux.pl/content/338-prof ... w-15-minut, lecz nic nie działa. To znaczy kolega próbując zalogować na moim komputerze, podobno się łączy lecz nie loguje. Ja próbując zalogować się z mojego komputera dostaję komunikat, że dany adres jest zajęty. Jeśli ktoś wie co może być nie tak to proszę o odpowiedź i jakieś porady.
fnmirk
Senior Member
Posty: 8295
Rejestracja: 03 grudnia 2007, 06:37

Post autor: fnmirk »

Prosiłeś aby nie odsyłać Cię do: http://rtfm.killfile.pl/. Ja jednak odsyłam Cię do wspomnianego artykułu. Zawiera bardzo przydatne informacje. Gdybyś go przeczytał wcześniej, wiedziałbyś jak należy się zachować na forum.
http://rtfm.killfile.pl/#precyzja
http://rtfm.killfile.pl/#tematy
Awatar użytkownika
lakiluk
Posty: 14
Rejestracja: 26 sierpnia 2010, 21:48

Post autor: lakiluk »

Wklej trochę zrzutów jakichś (tekstu), komunikaty jakie się pojawiają u ciebie i u kolegi. Skąd kto ma wiedzieć co tam się u ciebie wyświetla? To chyba tytuł winien być "Nie można nawiązać połączenia z ProFTPD" albo "ProFTPD - nie można nawiązać połączenia" :p
antek95
Posty: 39
Rejestracja: 19 października 2007, 19:42
Lokalizacja: Warszawa-Rembertów

Post autor: antek95 »

Żadnych zrzutów nie podałem bo nie wiem co jest ważne a co jest niepotrzebne. Podam treść /etc/proftpd/proftpd.conf:

Kod: Zaznacz cały

#
# /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            "Debian"
ServerType            standalone
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                    ~

<IfModule !mod_sql_mysql.c>
      # If mod_sql_mysql is not yet loaded, load it!
      LoadModule mod_sql_mysql.c
    </IfModule>



SQLConnectInfo  proftpd@localhost:3306 proftpd naszehaslo
SQLUserInfo     users name pass uid gid home shell
SQLGroupInfo    groups name gid members
SQLAuthenticate         users* groups*
SQLAuthTypes    PlainText
SQLLogFile /var/log/proftpd/mod_sql.log
# 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?page=details&ID=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>
DefaultRoot                    ~

<IfModule !mod_sql_mysql.c>
      # If mod_sql_mysql is not yet loaded, load it!
      LoadModule mod_sql_mysql.c
    </IfModule>



SQLConnectInfo  proftpd@localhost:3306 proftpd naszehaslo
SQLUserInfo     users name pass uid gid home shell
SQLGroupInfo    groups name gid members
SQLAuthenticate         users* groups*
SQLAuthTypes    PlainText
SQLLogFile /var/log/proftpd/mod_sql.log
Co wyświetla komputer kolegi nie wiem, ale u mnie casablanca podaje komunikat

Kod: Zaznacz cały

 89.74.168.244 jest zajęty
Przepraszam za wczorajszy post ale byłem mocno zirytowany z powodu tych problemów z serwerem ftp
Awatar użytkownika
lakiluk
Posty: 14
Rejestracja: 26 sierpnia 2010, 21:48

Post autor: lakiluk »

Na razie nie potrafię Ci pomóc, wydaje mi się, że coś już siedzi na porcie 21 albo jakiś poprzedni proces ProFTPD nie umarł. Można sprawdzić dla świętego spokoju czy ProFTPD rzeczywiście działa poleceniem i sprawdzić czy coś nasłuchuje na porcie komendą

Kod: Zaznacz cały

netstat
Aha tak zerknąłem to instrukcja mówi żeby dodać tą sekcję SQL-ową na końcu konfigu, a Ty masz ze dwa razy to?
No i zobacz koniecznie plik /var/log/proftpd/proftpd.log!
antek95
Posty: 39
Rejestracja: 19 października 2007, 19:42
Lokalizacja: Warszawa-Rembertów

Post autor: antek95 »

Zajrzałem do proftpd.log i podaję jego zawartość:

Kod: Zaznacz cały

lip 25 17:07:51 debian proftpd[3767] debian.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
lip 25 22:25:03 debian proftpd[3767] debian.chello.pl: ProFTPD killed (signal 15)
lip 25 22:25:03 debian proftpd[3767] debian.chello.pl: ProFTPD 1.3.1 standalone mode SHUTDOWN
Jul 26 09:46:21 debian proftpd[2645] debian.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
Jul 26 10:34:05 debian proftpd[2645] debian.chello.pl: ProFTPD killed (signal 15)
Jul 26 10:34:06 debian proftpd[2645] debian.chello.pl: ProFTPD 1.3.1 standalone mode SHUTDOWN
Jul 26 10:34:58 debian proftpd[2646] debian.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
Jul 26 10:47:16 debian proftpd[2646] debian.chello.pl: ProFTPD killed (signal 15)
Jul 26 10:47:16 debian proftpd[2646] debian.chello.pl: ProFTPD 1.3.1 standalone mode SHUTDOWN
sie 03 13:18:28 debian proftpd[3496] debian.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
sie 03 15:45:29 debian proftpd[3496] debian.chello.pl: ProFTPD killed (signal 15)
sie 03 15:45:30 debian proftpd[3496] debian.chello.pl: ProFTPD 1.3.1 standalone mode SHUTDOWN
Aug 03 15:46:16 debian proftpd[2875] debian.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
Aug 03 17:19:23 debian proftpd[2875] debian.chello.pl: ProFTPD killed (signal 15)
Aug 03 17:19:23 debian proftpd[2875] debian.chello.pl: ProFTPD 1.3.1 standalone mode SHUTDOWN
sie 29 21:22:55 www.the-castle.no-ip.pl proftpd[3904] chello089074168244.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
sie 29 22:04:32 www.the-castle.no-ip.pl proftpd[3904] chello089074168244.chello.pl: ProFTPD killed (signal 15)
sie 29 22:04:32 www.the-castle.no-ip.pl proftpd[3904] chello089074168244.chello.pl: ProFTPD 1.3.1 standalone mode SHUTDOWN
sie 30 21:13:16 www.the-castle.no-ip.pl proftpd[3012] chello089074168244.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
Jeśli ktoś może podać przykładowe pliki conf proftpd i podać co i gdzie trzeba zmienić, bo już się pogubiłem, to byłbym wdzięczny.
kaworu
Posty: 72
Rejestracja: 05 lutego 2009, 20:20

Post autor: kaworu »

Używasz tego mysql z ftp ? Jeśli nie to wywal to z konfiga
Masz tu mojego totalnie standardowy beż żadnych udziwnień, działa prawidłowo:

Kod: Zaznacz cały

#
# /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                off
# If set on you can experience a longer connection delay in many cases.
IdentLookups            off

ServerName            "Hellfire FTP"
ServerType            standalone
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?page=details&ID=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>
antek95
Posty: 39
Rejestracja: 19 października 2007, 19:42
Lokalizacja: Warszawa-Rembertów

Post autor: antek95 »

Witam.
Stale nie działa.
Skopiowałem plik od Kaworu. Wyłączyłem firestarterem firewall portu 20-21 i stale nic :(
/proftpd.log:

Kod: Zaznacz cały

Aug 31 20:58:15 www.the-castle.no-ip.pl proftpd[3329] chello089074168244.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
Aug 31 21:04:34 www.the-castle.no-ip.pl proftpd[3329] chello089074168244.chello.pl: ProFTPD killed (signal 15)
Aug 31 21:04:34 www.the-castle.no-ip.pl proftpd[3329] chello089074168244.chello.pl: ProFTPD 1.3.1 standalone mode SHUTDOWN
wrz 01 13:18:52 www.the-castle.no-ip.pl proftpd[3172] chello089074168244.chello.pl: ProFTPD 1.3.1 (stable) (built Tue Oct 27 10:09:08 UTC 2009) standalone mode STARTUP
Mój kolega twierdzi, że łączy się ale nie może się zalogować:

Kod: Zaznacz cały

FTP Connection Test Results
server adress      ok.
Log In                   no
u mnie Kasablanka podaje, że serwer jest zajęty
Pacek
Beginner
Posty: 315
Rejestracja: 18 sierpnia 2009, 15:17
Lokalizacja: Gdynia

Post autor: Pacek »

A co zwraca:

Kod: Zaznacz cały

proftpd --configtest
antek95
Posty: 39
Rejestracja: 19 października 2007, 19:42
Lokalizacja: Warszawa-Rembertów

Post autor: antek95 »

Kod: Zaznacz cały

proftpd --configtest
zwraca

Kod: Zaznacz cały

www:/home/antek# proftpd --configtest
Checking syntax of configuration file
Syntax check complete.
Czy jeśli mam router, a do niego podpiętych kilka komputerów, a między nimi serwer ftp to coś to zmienia?
I jeśli tak to jak to rozwiązać?
ODPOWIEDZ