[SOLVED] Cannot login to ftp - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: System Setup & Installation (/forum-32.html) +--- Thread: [SOLVED] Cannot login to ftp (/thread-8235.html) Pages: 1 2 |
[SOLVED] Cannot login to ftp - krzd - 10-26-2009 08:01 PM Hello, I cannot login to FTP. Neither with user nor user@domain.tld. What can I do? It is a fresh install. //edit: my FQDN is vadmin714.krzd.net and my domain is krzd.net RE: Cannot login to ftp - kilburn - 10-26-2009 09:33 PM You can check the docs. RE: Cannot login to ftp - krzd - 10-26-2009 09:50 PM I have got none of the symptons, regenerating config file does not help to. If I try to connect there via console I get the following error: 39-bash3.2 [12:48:40][root@krzd:~]$ ftp 84.23.64.192 Connected to 84.23.64.192. 421 Service not available, remote server has closed connection RE: Cannot login to ftp - kilburn - 10-26-2009 09:58 PM docs Wrote:No way to make it work, what next? RE: Cannot login to ftp - krzd - 10-26-2009 10:03 PM 1. Your OS/Distribution/version (for example: GNU/Linux Debian Lenny or FreeBSD 4.1). Gnu/Linux Debian Lenny 2. Otput of the ”proftpd -n -d5” shown above. (why axteris.eu? this is not my main domain) [...] axteris.eu - mod_lang/0.8: binding to text domain 'proftpd' using locale path '/usr/share/locale' axteris.eu - ProFTPD 1.3.1 (stable) (built Fri Feb 27 21:34:04 UTC 2009) standalone mode STARTUP axteris.eu - mod_lang/0.8: binding to text domain 'proftpd' using locale path '/usr/share/locale' axteris.eu - ProFTPD 1.3.1 (stable) (built Fri Feb 27 21:34:04 UTC 2009) standalone mode STARTUP 3. Path (i.e: /etc/proftpd/proftpd.conf) and contents of the proftpd.conf file. Path: /etc/proftpd/proftpd.conf # # ispCP ω (OMEGA) a Virtual Hosting Control System # # @copyright 2001-2006 by moleSoftware GmbH # @copyright 2006-2008 by ispCP | http://isp-control.net # @version SVN: $Id$ # @link http://isp-control.net # @author ispCP Team # # @license # This program is free software; you can redistribute it and/or modify it under # the terms of the MPL General Public License as published by the Free Software # Foundation; either version 1.1 of the License, or (at your option) any later # version. # You should have received a copy of the MPL Mozilla Public License along with # this program; if not, write to the Open Source Initiative (OSI) # http://opensource.org | osi@opensource.org # ################################################################################ # Includes DSO modules (this is mandatory in proftpd 1.3) Include /etc/proftpd/modules.conf # Set off to disable IPv6 support which is annoying on IPv4 only boxes. UseIPv6 off ServerName "krzd.net" ServerType standalone DeferWelcome off MultilineRFC2228 on DefaultServer on ShowSymlinks on AllowOverwrite on UseReverseDNS off IdentLookups off AllowStoreRestart on AllowForeignAddress on LogFormat traff "%b %u" TimeoutLogin 120 TimeoutNoTransfer 600 TimeoutStalled 600 TimeoutIdle 1200 DisplayLogin welcome.msg DisplayChdir message ListOptions "-l" #LsDefaultOptions "-l" DenyFilter \*.*/ DefaultRoot ~ # Uncomment this if you are using NIS or LDAP to retrieve passwords: # PersistentPasswd 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 # 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 nobody Group nogroup # Normally, we want files to be overwriteable. <Directory /*> # 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 HideNoAccess on </Directory> <Limit ALL> IgnoreHidden on </Limit> # 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 <Global> RootLogin off TransferLog /var/log/proftpd/xferlog ExtendedLog /var/log/proftpd/ftp_traff.log read,write traff PathDenyFilter "\.quota$" </Global> # Loading required modules <IfModule !mod_sql.c> LoadModule mod_sql.c </IfModule> <IfModule !mod_sql_mysql.c> LoadModule mod_sql_mysql.c </IfModule> <IfModule !mod_quotatab.c> LoadModule mod_quotatab.c </IfModule> <IfModule !mod_quotatab_sql.c> LoadModule mod_quotatab_sql.c </IfModule> # # SSL via TLS # #<IfModule mod_tls.c> # TLSEngine off # on for use of TLS # TLSLog /var/log/proftpd/ftp_ssl.log # where to log to # TLSProtocol SSLv23 # SSLv23 or TLSv1 # TLSOptions NoCertRequest # either to request the certificate or not # TLSRSACertificateFile /etc/proftpd/ssl.crt # SSL certfile # TLSRSACertificateKeyFile /etc/proftpd/ssl.key # SSL keyfile # TLSVerifyClient off # client verification #</IfModule> # # ISPCP Quota management; # <IfModule mod_quotatab.c> QuotaEngine on QuotaShowQuotas on QuotaDisplayUnits Mb SQLNamedQuery get-quota-limit SELECT "name, quota_type, per_session, limit_type, bytes_in_avail, bytes_out_avail, bytes_xfer_avail, files_in_avail, files_out_avail, files_xfer_avail FROM quotalimits WHERE name = '%{0}' AND quota_type = '%{1}'" SQLNamedQuery get-quota-tally SELECT "name, quota_type, bytes_in_used, bytes_out_used, bytes_xfer_used, files_in_used, files_out_used, files_xfer_used FROM quotatallies WHERE name = '%{0}' AND quota_type = '%{1}'" SQLNamedQuery update-quota-tally UPDATE "bytes_in_used = bytes_in_used + %{0}, bytes_out_used = bytes_out_used + %{1}, bytes_xfer_used = bytes_xfer_used + %{2}, files_in_used = files_in_used + %{3}, files_out_used = files_out_used + %{4}, files_xfer_used = files_xfer_used + %{5} WHERE name = '%{6}' AND quota_type = '%{7}'" quotatallies SQLNamedQuery insert-quota-tally INSERT "%{0}, %{1}, %{2}, %{3}, %{4}, %{5}, %{6}, %{7}" quotatallies QuotaLock /var/run/proftpd/tally.lock QuotaLimitTable sql:/get-quota-limit QuotaTallyTable sql:/get-quota-tally/update-quota-tally/insert-quota-tally </IfModule> <IfModule mod_ratio.c> Ratios on </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 on ControlsMaxClients 2 ControlsLog /var/log/proftpd/controls.log ControlsInterval 5 ControlsSocket /var/run/proftpd/proftpd.sock </IfModule> <IfModule mod_ctrls_admin.c> AdminControlsEngine on </IfModule> # ispCP SQL Managment SQLBackend mysql SQLAuthTypes Crypt SQLAuthenticate on SQLConnectInfo ispcp@localhost vftp :z:}.X&&_z%0FrVdo6 SQLUserInfo ftp_users userid passwd uid gid homedir shell SQLGroupInfo ftp_group groupname gid members SQLMinUserUID 2000 SQLMinUserGID 2000 # 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 # DisplayFirstChdir .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> Include /etc/proftpd/ispcp/* RE: Cannot login to ftp - kilburn - 10-26-2009 10:13 PM Your config looks right, so I would bet it's either an IP binding problem or some middle firewall refusing connections. Quote:2. Otput of the ”proftpd -n -d5” shown above. Please include *all* the information that you get from executing "proftpd -n -d5" please (from launching it until after trying to connect with the external client), not just a tiny part of it showing that something started... RE: Cannot login to ftp - krzd - 10-26-2009 10:19 PM The problem is, that this is to long to be shown into the terminal and if i try to outpit it to a file like proftpd -n -d5 > output.log it just creates an empty output.log and shows all information into the terminal RE: Cannot login to ftp - kilburn - 10-26-2009 10:22 PM Try with the following (the 2>&1 part redirects stderr to stdout, so everything is captured into the file): Code: proftpd -n -d5 > output.log 2>&1 RE: Cannot login to ftp - krzd - 10-26-2009 10:31 PM EDIT: ==== ok, because it is an vserver i could access it via the master server, so here we go: - mod_tls/2.1.2: using OpenSSL 0.9.8g 19 Oct 2007 - disabling runtime support for IPv6 connections - DenyFilter: compiling deny regex '\*.*/' - <Directory /*>: deferring resolution of path - PathDenyFilter: compiling deny regex '.quota$' - <IfModule>: using '!mod_sql.c' section at line 108 - <IfModule>: using '!mod_sql_mysql.c' section at line 111 - <IfModule>: skipping '!mod_quotatab.c' section at line 114 - <IfModule>: using '!mod_quotatab_sql.c' section at line 117 - <IfModule>: using 'mod_quotatab.c' section at line 138 - <IfModule>: skipping 'mod_ratio.c' section at line 153 - <IfModule>: using 'mod_delay.c' section at line 160 - <IfModule>: using 'mod_ctrls.c' section at line 164 - <IfModule>: using 'mod_ctrls_admin.c' section at line 172 - processing configuration directory '/etc/proftpd/ispcp' - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/backups>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/backups/*>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/cgi-bin>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/cgi-bin/*>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/htdocs>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/htdocs/*>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/errors>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/errors/*>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/logs>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/logs/*>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/phptmp>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/phptmp/*>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/statistics>: deferring resolution of path - <Directory /var/www/virtual/martin-der-gangsta.eu/aschuler/statistics/*>: deferring resolution of path - <Directory ~/backups>: deferring resolution of path - <Directory ~/backups/*>: deferring resolution of path - <Directory ~/cgi-bin>: deferring resolution of path - <Directory ~/cgi-bin/*>: deferring resolution of path - <Directory ~/htdocs>: deferring resolution of path - <Directory ~/htdocs/*>: deferring resolution of path - <Directory ~/errors>: deferring resolution of path - <Directory ~/errors/*>: deferring resolution of path - <Directory ~/logs>: deferring resolution of path - <Directory ~/logs/*>: deferring resolution of path - <Directory ~/phptmp>: deferring resolution of path - <Directory ~/phptmp/*>: deferring resolution of path - <Directory ~/statistics>: deferring resolution of path - <Directory ~/statistics/*>: deferring resolution of path axteris.eu - axteris.eu - Config for krzd.net: axteris.eu - ~/statistics/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/statistics axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/phptmp/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/phptmp axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/logs/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/logs axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/errors/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/errors axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/htdocs/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/htdocs axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/cgi-bin/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/cgi-bin axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/backups/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - ~/backups axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/statistics/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/statistics axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/phptmp/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/phptmp axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/logs/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/logs axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/errors/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/errors axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/htdocs/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/htdocs axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/cgi-bin/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/cgi-bin axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/backups/* axteris.eu - Limit axteris.eu - AllowAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - /var/www/virtual/martin-der-gangsta.eu/aschuler/backups axteris.eu - Limit axteris.eu - DenyAll axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - Limit axteris.eu - IgnoreHidden axteris.eu - /* axteris.eu - Umask axteris.eu - DirUmask axteris.eu - AllowOverwrite axteris.eu - HideNoAccess axteris.eu - ShowSymlinks axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - PathDenyFilter axteris.eu - DeferWelcome axteris.eu - DefaultServer axteris.eu - ShowSymlinks axteris.eu - AllowOverwrite axteris.eu - IdentLookups axteris.eu - AllowStoreRestart axteris.eu - AllowForeignAddress axteris.eu - TimeoutLogin axteris.eu - TimeoutNoTransfer axteris.eu - TimeoutStalled axteris.eu - TimeoutIdle axteris.eu - DisplayLogin axteris.eu - DisplayChdir axteris.eu - ListOptions axteris.eu - DenyFilter axteris.eu - DefaultRoot axteris.eu - UserID axteris.eu - UserName axteris.eu - GroupID axteris.eu - GroupName axteris.eu - QuotaEngine axteris.eu - QuotaShowQuotas axteris.eu - QuotaDisplayUnits axteris.eu - SQLNamedQuery_get-quota-limit axteris.eu - SQLNamedQuery_get-quota-tally axteris.eu - SQLNamedQuery_update-quota-tally axteris.eu - SQLNamedQuery_insert-quota-tally axteris.eu - QuotaLock axteris.eu - QuotaLimitTable axteris.eu - QuotaTallyTable axteris.eu - DelayEngine axteris.eu - SQLBackend axteris.eu - SQLAuthTypes axteris.eu - SQLAuthenticate axteris.eu - SQLConnectInfo axteris.eu - SQLUserTable axteris.eu - SQLUsernameField axteris.eu - SQLPasswordField axteris.eu - SQLUidField axteris.eu - SQLGidField axteris.eu - SQLHomedirField axteris.eu - SQLShellField axteris.eu - SQLGroupTable axteris.eu - SQLGroupnameField axteris.eu - SQLGroupGIDField axteris.eu - SQLGroupMembersField axteris.eu - SQLMinUserUID axteris.eu - SQLMinUserGID axteris.eu - RootLogin axteris.eu - TransferLog axteris.eu - ExtendedLog axteris.eu - PathDenyFilter axteris.eu - mod_lang/0.8: binding to text domain 'proftpd' using locale path '/usr/share/locale' axteris.eu - ProFTPD 1.3.1 (stable) (built Fri Feb 27 21:34:04 UTC 2009) standalone mode STARTUP axteris.eu - ProFTPD terminating (signal 2) axteris.eu - ProFTPD 1.3.1 standalone mode SHUTDOWN axteris.eu - deleting existing scoreboard '/var/run/proftpd/proftpd.scoreboard' ==== Hmm, i can't download the file from the server: krzd@ubuntu:~$ scp root@84.23.64.192:/var/www/output.log . Password: TERM environment variable not set. .-"""-. krzd@ubuntu:~$ TERM environment variable not set. ^C edit: but it is set: 61-bash3.2 [13:31:30][root@krzd:/var/www]$ export -p declare -x HOME="/root" declare -x LANG="de_DE@euro" declare -x LANGUAGE="de_DEe:en_GB:en" declare -x LOGNAME="root" declare -x MAIL="/var/mail/root" declare -x OLDPWD="/var/www/ispcp" declare -x PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11" declare -x PWD="/var/www" declare -x SHELL="/bin/bash" declare -x SHLVL="1" declare -x SSH_CLIENT="85.216.124.193 44729 22" declare -x SSH_CONNECTION="85.216.124.193 44729 84.23.64.192 22" declare -x SSH_TTY="/dev/pts/0" declare -x TERM="xterm" declare -x USER="root" RE: Cannot login to ftp - kilburn - 10-26-2009 11:30 PM As there's no connection attempt shown in the ProFTPD log, your problem should be related to a networking problem. Do you have any firewall that may be blocking the connection? Another thing that you can try to ensure that it's a firewall/network issue is to stop the proftpd daemon, launch "nc -l -p21" and then try to login again. If the terminal running "nc" displays some things (basically the commands issued by the ftp client), then it's *not* a connectivity issue. Otherwise it is and you should check your firewalls / virtual machine NAT configuration / whatever. |