Titel: Probleme mit IPCop + ProFTPD Beitrag von: Unfähigkeit am 01. November 2004, 16:32:57 Hallo sehr geehrte Community, :o
ich hab mich mal dran gemacht, wie das Zusatzmodul Proftpd im IPCop Forum gepostet wurde, ein ProFTPD Server auf diese IPCop Router Distribution zu fetzen... :o So weit sogut... Jetzte sitze ich schon seit Tagen an diesem Ding (per putty) und hatte unzählige versuche gestartet, das ding vom Internet erreichen zu können... Ich bin am Ende meines, nicht ganz unbescholdenen, Linux Lateins!!!! Zunächst meine "proftpd.conf": Code: # (C) Me # updated 2004-11-01 # by me ServerName "ProFTPD" ServerType standalone DefaultServer on MasqueradeAddress *.dyndns.org UseReverseDNS off # PassivePorts 65000 65001 # AllowForeignAddress on # We want the main server instance to listen on a specific IP DefaultAddress 192.168.1.1 # Port 21 is the standard FTP port. Port 21 # Root Login verbieten | erlauben RootLogin off # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 022 # Note that this ONLY works in standalone mode MaxInstances 30 # Set the user and group under which the server will run. User ftp Group ftp # To cause every FTP user to be "jailed" (chrooted) into their home # directory, uncomment this line. DefaultRoot ~ # Normally, we want files to be overwriteable. <Directory /%HOME%> <Limit LOGIN> AllowUser Me AllowUser You AllowUser reader DenyAll </Limit> <Limit ALL> AllowUser Me AllowUser You DenyAll </Limit> <Limit READ> AllowUser reader DenyAll </Limit> # <Limit READ,WRITE,DIRS> # AllowAll # </Limit> </Directory> Ich muss dazu sagen, aus dem lokalen Intranet funktionierts zwar, aber sehr sehr sehr behäbig (langsam)... k.A. warum... Ich würde mich über jederlei Hilfe freuen! :shock: Thx 4 reading ... :) Titel: Probleme mit IPCop + ProFTPD Beitrag von: Unfähigkeit am 01. November 2004, 17:02:43 Ach ja... Gestern hab ichs mit einem Windows FTP Server vom Internet aus probiert, der auch Lokal an dieser Router FW anhängt, ging wunderbar (andere private IP)!
Aber sonst die gleiche Konfiguration! Nur ging beim lokalen windoof rechner keine site - to - site transfer *schnief* Deswegen der erhoffte Wechsel :wink: Titel: Probleme mit IPCop + ProFTPD Beitrag von: Wörsty am 01. November 2004, 17:33:01 Code: MasqueradeAddress *.dyndns.org Wieso * ? Code: AllowForeignAddress on Wieso auskommentiert? Bitte IdentLookups off (http://www.proftpd.de/index.php?id=28&directive_name=IdentLookups) hinzufügen. Dann sehen wir weiter. Versuchst du es "passiv"? Titel: Probleme mit IPCop + ProFTPD Beitrag von: Unfähigkeit am 02. November 2004, 13:35:56 Schon klar... *gg*
Code: MasqueradeAddress me.dyndns.org korrigiert = AllowForeignAddress on Wofür? IdentLookups off Ja passiv das ganze.. Server to Server transfer, wenn möglich!!! Titel: Probleme mit IPCop + ProFTPD Beitrag von: Wörsty am 02. November 2004, 14:10:46 Zitat von: "Unfähigkeit" Wofür? IdentLookups off http://www.proftpd.de/index.php?id=13&backPID=13&tx_faq_faq=16 Zitat von: "Unfähigkeit" Server to Server transfer, wenn möglich!!! Dafür hast du AllowForeignAddress Titel: Probleme mit IPCop + ProFTPD Beitrag von: Unfähigkeit am 02. November 2004, 18:21:31 Kann es sein dass es an der
Code: DefaultAddress 192.168.1.1 liegt. Vielleicht die lokale loopback adresse? Auf Port 21 abhorchen? Code: DefaultAddress 127.0.0.1 Titel: Probleme mit IPCop + ProFTPD Beitrag von: Unfähigkeit am 02. November 2004, 18:44:41 :shock: nööö nöööö nöööö
Zitat 227 Entering Passive Mode (80,121,32,64,4,176). Data Socket Error: Connection timed out List Error Titel: Probleme mit IPCop + ProFTPD Beitrag von: Anonymous am 02. November 2004, 19:30:31 Boah Ähnliches problem wie der typ hier:
http://www.proftpd.de/forum2/viewtopic.php?t=1268&highlight=data+socket+error Obwohl nu nich mehr? ipcop - 192.168.1.1:21 masquerading as 80.140.122.123 ipcop - setting default server address to 127.0.0.1 ipcop - ProFTPD 1.2.8 (stable) (built Wed Sep 24 14:21:05 CEST 2003) standalone mode STARTUP STRG + C ipcop - ProFTPD terminating (signal 2) ipcop - ProFTPD 1.2.8 standalone mode SHUTDOWN Is doch okay so oder? :arrow: Code: ServerName "ProFTPD" ServerType standalone DefaultServer on MasqueradeAddress me.dyndns.org UseReverseDNS off IdentLookups off PassivePorts 49152 65534 AllowForeignAddress on # We want the main server instance to listen on a specific IP DefaultAddress 127.0.0.1 # Port 21 is the standard FTP port. Port 21 # Root Login verbieten | erlauben RootLogin off # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 777 # Note that this ONLY works in standalone mode MaxInstances 30 # Set the user and group under which the server will run. User ftp Group ftp # To cause every FTP user to be "jailed" (chrooted) into their home # directory, uncomment this line. DefaultRoot ~ # Normally, we want files to be overwriteable. <Directory /%HOME%> <Limit LOGIN> AllowUser Me AllowUser You AllowUser reader DenyAll </Limit> <Limit ALL> AllowUser Me AllowUser You DenyAll </Limit> <Limit READ> AllowUser reader DenyAll </Limit> # <Limit READ,WRITE,DIRS> # AllowAll # </Limit> </Directory> |