Zeige Beiträge
|
Seiten: [1]
|
1
|
ProFTPD / ProFTPD - Deutsch / so .. die debug ausgabe
|
am: 08. März 2004, 22:09:19
|
x - RELINQUISH PRIVS at mod_core.c:201 x - ROOT PRIVS at mod_core.c:223 x - RELINQUISH PRIVS at mod_core.c:251 x - FS: using system lstat() x - (noteb[192.168.0.200]) - FTP no transfer timeout, disconnected x - (noteb[192.168.0.200]) - dispatching auth request "endpwent" to module mod_sql x - (noteb[192.168.0.200]) - dispatching auth request "endgrent" to module mod_sql x - (noteb[192.168.0.200]) - dispatching auth request "endgrent" to module mod_auth_file x - (noteb[192.168.0.200]) - dispatching auth request "endgrent" to module mod_auth_unix x - (noteb[192.168.0.200]) - FTP session closed.
ich habe aber folgenden start: x - Config for X: x- /opt/lampp/nrjweb/* x- AllowOverwrite x- Umask x- AllowStoreRestart x- AllowRetrieveRestart x- RootLogin x- TransferLog x- AllowForeignAddress x- MaxClientsPerHost x- MaxClients x- AccessGrantMsg x- AccessDenyMsg x- TimeoutSession x- UserPassword x- RequireValidShell x- UseFtpUsers x- SQLAuthTypes x- SQLAuthenticate x- SQLConnectInfo x- SQLMinID x- SQLHomedirOnDemand x- SQLLog_PASS x- SQLNamedQuery_updatecount x- SQLLog_STOR x- SQLLog_DELE x- SQLNamedQuery_modified x- SQLNamedQuery_get-quota-limit x- SQLNamedQuery_get-quota-tally x- SQLNamedQuery_update-quota-tally x- SQLNamedQuery_insert-quota-tally x- DefaultServer x- Umask x- AllowStoreRestart x- AllowRetrieveRestart x- UserID x- UserName x- RootLogin x- PassivePorts x- SyslogLevel x- TransferLog x- ExtendedLog x- ExtendedLog x- AllowForeignAddress x- MaxClientsPerHost x- MaxClients x- AccessGrantMsg x- AccessDenyMsg x- TimeoutStalled x- TimeoutSession x- TimeoutIdle x- TimeoutLogin x- ServerIdent x- DeferWelcome x- MaxLoginAttempts x- DefaultRoot x- UserPassword x- RequireValidShell x- UseFtpUsers x- IdentLookups x- SQLAuthTypes x- SQLAuthenticate x- SQLConnectInfo x- SQLUserTable x- SQLUsernameField x- SQLPasswordField x- SQLUidField x- SQLGidField x- SQLHomedirField x- SQLShellField x- SQLGroupTable x- SQLGroupnameField x- SQLGroupGIDField x- SQLGroupMembersField x- SQLMinID x- SQLHomedirOnDemand x- SQLLog_PASS x- SQLNamedQuery_updatecount x- SQLLog_STOR x- SQLLog_DELE x- SQLNamedQuery_modified x- QuotaEngine x- QuotaDirectoryTally x- QuotaDisplayUnits x- QuotaShowQuotas x- QuotaLimitTable x- QuotaTallyTable x- SQLNamedQuery_get-quota-limit x- SQLNamedQuery_get-quota-tally x- SQLNamedQuery_update-quota-tally x- SQLNamedQuery_insert-quota-tally . .
was soll ich tun ?? lg tom
|
|
|
2
|
ProFTPD / ProFTPD - Deutsch / Verbindung beendet durch Remotehost. Trotz hohem Timeout
|
am: 07. März 2004, 19:05:25
|
Hi Stonki und co ;-)
Habe alle Timeouts auf 3600 gestellt, fliege aber nach ca. 3 minuten raus.. bei Verbindungen zu Proftpd .. irgendeine Idee .. Hier meine Config:
ServerType standalone DefaultServer on Port 21 Umask 022 MaxInstances 30 AllowStoreRestart on AllowRetrieveRestart on User root RootLogin on PassivePorts 60000 60050 SyslogLevel crit SystemLog /var/log/proftpsys.log TransferLog /var/log/proftpxfer.log LogFormat default "%h %l %u %t \"%r\" %s %b" LogFormat auth "%v [%P] %h %t \"%r\" %s" LogFormat write "%h %l %u %t \"%r\" %s %b" ExtendedLog /var/log/proftpaccess.log WRITE,READ write ExtendedLog /var/log/proftpauth.log AUTH auth AllowForeignAddress on MaxClientsPerHost 30 "Nicht mehr als %m Verbindungen" MaxClients 100 "Leider sind schon %m Clients verbunden" AccessGrantMsg "Bei Problemen bitte Email an ************" AccessDenyMsg "Zugriff verweigert"
# Timeout Einstellungen TimeoutStalled 3600 # Sekunden, eine Verbindung ohne "Datentransfer" bestehen darf TimeoutSession 3600 # Sekunden, eine Verbindung ohne "Datentransfer" bestehen darf TimeoutIdle 3600 # Sekunden, wielange eine Idle Verbindung bestehen darf TimeoutLogin 3600 # max Zeit fuer anmeldung # Serveridentitaet und andere Infos DeferWelcome on MaxLoginAttempts 3 DefaultRoot ~ #!users RequireValidShell off UseFtpUsers off UseReverseDNS on IdentLookups on
SQLAuthTypes Plaintext Crypt SQLAuthenticate users* SQLConnectInfo ****** SQLUserInfo ftpuser userid passwd uid gid homedir shell SQLGroupInfo ftpgroup groupname gid members SQLMinID 500 SQLHomedirOnDemand off SQLLog PASS updatecount SQLNamedQuery updatecount UPDATE "count=count+1, accessed=now() WHERE userid='%u'" ftpuser SQLLog STOR,DELE modified SQLNamedQuery modified UPDATE "modified=now() WHERE userid='%u'" ftpuser
QuotaEngine on QuotaDirectoryTally on QuotaDisplayUnits Mb QuotaShowQuotas on
QuotaLimitTable sql:/get-quota-limit QuotaTallyTable sql:/get-quota-tally/update-quota-tally/insert-quota-tally
....
lg tom Danke
|
|
|
3
|
ProFTPD / ProFTPD - Deutsch / hi .. hmm hab mich bei C't schlau gemacht
|
am: 07. März 2004, 19:00:05
|
und jetzt funktioniert es die syntax ist ein bissal anders:
#!/bin/sh # #Shell-Skript fuer Quality of Service mit HTB # INTIF=eth0
########### # Incoming ########### /sbin/tc qdisc add dev $INTIF root handle 2:0 htb default 20 /sbin/tc class add dev $INTIF parent 2:0 classid 2:2 htb rate 1750kbit ceil 1750kbit /sbin/tc class add dev $INTIF parent 2:2 classid 2:20 htb rate 1500kbit ceil 1500kbit prio 0 /sbin/tc class add dev $INTIF parent 2:2 classid 2:21 htb rate 30kbit ceil 30kbit prio 1
iptables -A OUTPUT -t mangle -o $INTIF -p tcp --sport 20 -j MARK --set-mark 21 iptables -A OUTPUT -t mangle -o $INTIF -p tcp --sport 60000:60050 -j MARK --set-mark 21
tc filter add dev $INTIF parent 2:0 prio 0 protocol ip handle 21 fw flowid 2:21
Danke nochmal !!
servus aus wien
|
|
|
4
|
ProFTPD / ProFTPD - Deutsch / nun ich habs so eingetragen:
|
am: 06. März 2004, 17:53:30
|
iptables -t mangle -A OUTPUT -p tcp -s 192.168.0.101 --sport 60000:60050 -j MARK --set-mark 101 iptables -t mangle -A OUTPUT -p tcp -s 192.168.0.101 --sport 20 -j MARK --set-mark 102
tc qdisc add dev eth0 root handle 1: htb default 1 tc class add dev eth0 parent 1: classid 1:1 htb rate 10kbit ceil 10kbit tc class add dev eth0 parent 1:1 classid 1:10 htb rate 10kbit ceil 10kbit
tc filter add dev eth0 protocol ip parent 1:1 prio 5 handle 101 fw flowid 1:10 tc filter add dev eth0 protocol ip parent 1:1 prio 5 handle 102 fw flowid 1:10
was ist da genau falsch ... ich versteh die syntax auch nicht wirklich .. aber was so im internet zu finden ist, versteht die eigentlich sowieso nicht sehr viele leute ;-))
|
|
|
6
|
ProFTPD / ProFTPD - Deutsch / Danke TOMES
|
am: 26. Februar 2004, 15:32:14
|
-- Tolle Information, klar und einfach formuliert -- solche Leute fehlen leider zu oft im Internet.. lg Tom PS: eine Frage hab ich da noch ... Wie kann ich verhindern das ein User von seinem Homedir rauskommt ?? verwende das MOD_SQL mit Homedir eintrag, wenn ich mich connecte, kann ich mit cd .. ins darüber gelegene Directorie wechseln .. Danke !!
|
|
|
7
|
ProFTPD / ProFTPD - Deutsch / habs gefunden ..
|
am: 23. Februar 2004, 19:41:06
|
nach make sollte man auch make install machen ..
kommt davon wenn man zuviele verschieden manuals liest ;-))
servus aus wien
|
|
|
8
|
ProFTPD / ProFTPD - Deutsch / hi
|
am: 23. Februar 2004, 18:34:43
|
fuser liefert keinen output
werd dich kontaktieren um 22 uhr, wenns dann noch immer nicht geht ... ohne mysql gehts auch nicht ..
ich werds nochmal runterladen .. vielleicht hab ich dann mehr glück ;-))
danke tom
|
|
|
9
|
ProFTPD / ProFTPD - Deutsch / habe mich eingeloggt
|
am: 23. Februar 2004, 18:01:27
|
ich habe mich auf einem anderen terminal eingeloggt, keine debug informationen.. ich verwende die bash und das ganze rennt auf RH9 leider hab ich keine hinweise auf logfile oder dergleichen..
|
|
|
10
|
ProFTPD / ProFTPD - Deutsch / was ich da tue ??
|
am: 23. Februar 2004, 17:46:36
|
Nun ich habe proftp mit mod_sql und mod_quta compiliert, habe zwar proftpd kopiert ins xampp verzeichnis, aber dort starte ich ihn nicht, sondern nur dort wo ich proftpd compiliert habe.
Kann ich irgendetwas tun, als alles zu löschen und neu zu installieren ?? make distclean ./configure --with-modules=mod_sql:mod_sql_mysql:mod_sql_mysql:mod_quotatab:mod_quotatab_sql --with-includes=/opt/lampp/include --with-libraries=/opt/lampp/lib/mysql
hat funktioniert .. aber no response .. hilft dir diese information ??
|
|
|
12
|
ProFTPD / ProFTPD - Deutsch / nun...
|
am: 23. Februar 2004, 10:52:01
|
Ich habe den Xampp installiert, und da ist proftpd compiliert ohne mysql, also hab ich proftpd runtergeladen, compiliert und dann nach xampp kopiert... aber proftpd geht dort wos installiert ist genauso wenig wie jetzt beim xampp..
ich schau mal ins mini faq
sers aus wien
|
|
|
|