Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Problemi da remoto con proftpd
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
supa_
n00b
n00b


Joined: 13 Apr 2006
Posts: 20

PostPosted: Mon Aug 14, 2006 10:34 am    Post subject: Problemi da remoto con proftpd Reply with quote

ho recentemente configurato un server ftp con proftpd installato dal portage, se lo avvio da locale non ho problemi ma se qualcuno entra da remoto il server si comporta in questo modo:
Code:

Connected to 151.46.101.76.
220 ProFTPD 1.2.10 Server (ProFTPD Default Installation) [192.168.1.4]
Name (151.46.101.76:root): USER
331 Password required for USER.
Password:
230 User USER logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
229 Entering Extended Passive Mode (|||39791|)
500 Illegal EPRT command
500 Illegal PORT command

421 Service not available, remote server timed out. Connection closed
ftp>


dove puo essere il problema?
thx
Back to top
View user's profile Send private message
Peach
Advocate
Advocate


Joined: 08 Mar 2003
Posts: 3686
Location: London, UK

PostPosted: Mon Aug 14, 2006 11:45 am    Post subject: Reply with quote

i log che dicono?
_________________
Gentoo user since 2004.
"It's all fun and games, until someone loses an eye" - mom
Back to top
View user's profile Send private message
supa_
n00b
n00b


Joined: 13 Apr 2006
Posts: 20

PostPosted: Mon Aug 14, 2006 1:23 pm    Post subject: Reply with quote

non ho log :S, devo configurare il syslog per averli?
Back to top
View user's profile Send private message
Peach
Advocate
Advocate


Joined: 08 Mar 2003
Posts: 3686
Location: London, UK

PostPosted: Tue Aug 15, 2006 11:53 am    Post subject: Reply with quote

supa_ wrote:
non ho log :S, devo configurare il syslog per averli?

beh al massimo proftpd, anche se penso che di default dovrebbe dare in output su /var/log/messages prova a vedere
_________________
Gentoo user since 2004.
"It's all fun and games, until someone loses an eye" - mom
Back to top
View user's profile Send private message
battistis
Apprentice
Apprentice


Joined: 20 Jul 2006
Posts: 249

PostPosted: Mon Mar 26, 2007 8:08 am    Post subject: Reply with quote

supa_ wrote:
non ho log :S, devo configurare il syslog per averli?

nel proftpd.conf:
# It's better for debug to create log files ;-)
ExtendedLog /var/log/ftp_proftpd.log
TransferLog /var/log/ftp_xfer.log
SystemLog /var/log/ftp_syslog.log
_________________
\\ba7/
Back to top
View user's profile Send private message
Manuelixm
l33t
l33t


Joined: 03 Apr 2004
Posts: 832
Location: Brescia

PostPosted: Fri Mar 30, 2007 11:52 am    Post subject: Reply with quote

Potrebbe essere un problema dovuto al firewall che blocca delle porte, se non erro in proftp puoi settare un range di porte su cui far passare i dati.
In locale da quello che vedo funziona correttamente.
_________________
Linux user#370732
Back to top
View user's profile Send private message
battistis
Apprentice
Apprentice


Joined: 20 Jul 2006
Posts: 249

PostPosted: Fri Mar 30, 2007 12:20 pm    Post subject: Reply with quote

Manuelixm wrote:
Potrebbe essere un problema dovuto al firewall che blocca delle porte, se non erro in proftp puoi settare un range di porte su cui far passare i dati.
In locale da quello che vedo funziona correttamente.

PassivePorts 65000 65534

il range lo decidi tu in base al numero di connessioni di trasferimento dati che occorrono per il tuo ftp
dovrebbero aprirsi dinamicamente tramite il modulo
ip_conntrack_ftp
e
ip_nat_ftp se l'ftp è nattato dietro il firewall
verifica di averli caricati con lsmod
in realtà con tls io le ho dovute aprire tutte verso l'esterno :(

cmq. tutte le direttive si trovano in questa ottima doc
http://www.proftpd.org/docs/directives/configuration_full.html

proftpd+tls+porte passive
il mio incubo nn ancora risolto :?
https://forums.gentoo.org/viewtopic-p-3982661.html#3982661
mi sa che passo a vftsd
_________________
\\ba7/
Back to top
View user's profile Send private message
Manuelixm
l33t
l33t


Joined: 03 Apr 2004
Posts: 832
Location: Brescia

PostPosted: Fri Mar 30, 2007 12:31 pm    Post subject: Reply with quote

Dovrebbero aprirsi, ma dipende come è configurato il firewall tra lan/dmz e wan.
_________________
Linux user#370732
Back to top
View user's profile Send private message
battistis
Apprentice
Apprentice


Joined: 20 Jul 2006
Posts: 249

PostPosted: Fri Mar 30, 2007 3:13 pm    Post subject: Reply with quote

Manuelixm wrote:
Dovrebbero aprirsi, ma dipende come è configurato il firewall tra lan/dmz e wan.

uso shorewall se hai un po' di tempo di posto la conf
_________________
\\ba7/
Back to top
View user's profile Send private message
lucapost
Veteran
Veteran


Joined: 24 Nov 2005
Posts: 1419
Location: <ud|me|ts> - Italy

PostPosted: Fri Mar 30, 2007 3:27 pm    Post subject: Reply with quote

hai creato la directory /home/ftp con i giusti permessi?
la mia è così:
Code:
lucapost@jarod ~ $ ll /home/ |grep ftp
drwxr-xr-x  3 ftp      users 4096 2007-03-26 15:18 ftp

_________________
LP
Back to top
View user's profile Send private message
battistis
Apprentice
Apprentice


Joined: 20 Jul 2006
Posts: 249

PostPosted: Fri Mar 30, 2007 3:58 pm    Post subject: Reply with quote

si, non è un problema di cartelle, anzi ho anche creato uno script che mi ripristina i permessi ad hoc
il problema è a priori
ovvero quando il client cerca di connettersi ad una porta passiva (comando PORT)
dal log del firewall i pacchetti diretti alle p.passive vengono droppati
mentre se tolgo il firewall funziona tutto
esattamente come supa_
supa_ wrote:

Code:

...
tp> ls
229 Entering Extended Passive Mode (|||39791|)
500 Illegal EPRT command
500 Illegal PORT command
421 Service not available, remote server timed out. Connection closed
ftp>


_________________
\\ba7/
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum