www.ProFTPD.de
13. März 2007, 21:41:03 *
Willkommen Gast. Bitte einloggen oder registrieren.
Haben Sie Ihre Aktivierungs E-Mail übersehen?

Einloggen mit Benutzername, Passwort und Sitzungslänge
News: SMF - Neu installiert!
 
   Übersicht   Hilfe Suche Login Registrieren  
Seiten: [1]   Nach unten
  Drucken  
Autor Thema: ip proplem  (Gelesen 341 mal)
0 Mitglieder und 1 Gast betrachten dieses Thema.
foxbo
ProFTPD
*
Offline Offline

Beiträge: 7

275844344
Profil anzeigen
« am: 04. April 2005, 21:02:40 »

hallo alle zusammen

wie bekomme ich die ip von proftp raus. Sodas ich local connecten kann. Wo kann ich sie ändern
Ich bin am verzweifel

Bin noch ein Anfänger schreibt bitte verständlich!!!!
Gespeichert
Wörsty
Moderator
ProFTPD
*****
Offline Offline

Beiträge: 1602


50772603
Profil anzeigen WWW E-Mail
« Antwort #1 am: 04. April 2005, 21:14:23 »

Verstehe kein Wort.

Aber mal so ins Blaue geraten:  ifconfig -a

Ansonsten: 127.0.0.1 wenn du nur Lokal ran willst.
Gespeichert

RedHat 8.0 (2.4er Kernel)
proftpd 1.2.10
-mod_sql_mysql
-mow_wrap
-mod_exec
-mod_ifsession[/size]
Anonymous
Gast
« Antwort #2 am: 05. April 2005, 12:40:46 »

Lächelnd  Lächelnd  Lächelnd Danke für die schnelle Antwort Lächelnd  Lächelnd  Lächelnd

gleich mal Probieren
Gespeichert
foxbo
ProFTPD
*
Offline Offline

Beiträge: 7

275844344
Profil anzeigen
« Antwort #3 am: 05. April 2005, 14:45:44 »

Zitat von: "Wörsty"
Verstehe kein Wort.

Aber mal so ins Blaue geraten:  ifconfig -a

Ansonsten: 127.0.0.1 wenn du nur Lokal ran willst.



 :oops:  :oops:  hab mich woll schlecht ausgedrückt.

Mein Proplem ist ich kann gar nicht auf Verzeichnisse zugreifen die Freigegeben sind. Habe schon mit den  Ports 20 ,21 Portforwarding betrieben (benuzte IpCop auf dem gleichen Rechner wo proftpd läuft) und die ports an die ip 127.0.0.1 weitergeleitet aber ohne Erfolg. Es kommt immer der Fehler kann nicht zugegriffen werden. Ich hab einfach keine idee mehr wieso ich keinen Zugriff bekomme :keinelust)
Gespeichert
Wörsty
Moderator
ProFTPD
*****
Offline Offline

Beiträge: 1602


50772603
Profil anzeigen WWW E-Mail
« Antwort #4 am: 05. April 2005, 14:47:42 »

:debug: proftpd -nd9
Gespeichert

RedHat 8.0 (2.4er Kernel)
proftpd 1.2.10
-mod_sql_mysql
-mow_wrap
-mod_exec
-mod_ifsession[/size]
foxbo
ProFTPD
*
Offline Offline

Beiträge: 7

275844344
Profil anzeigen
« Antwort #5 am: 05. April 2005, 15:35:13 »

Zitat von: "Wörsty"
:debug: proftpd -nd9


Ich poste mal die proftpd.conf vieleicht steckt hier ein fehler


#
# /etc/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#

ServerName         "Daniels Server"
ServerType         standalone
DeferWelcome         off

MultilineRFC2228      on
DefaultServer         on
ShowSymlinks         on

TimeoutNoTransfer      600
TimeoutStalled         600
TimeoutIdle         1200

DisplayLogin                    welcome.msg
DisplayFirstChdir               .message
ListOptions                   "-l"

DenyFilter         \*.*/

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
#PersistentPasswd      off

# Uncomment this if you would use TLS module:
#TLSEngine          on

# Uncomment this if you would use quota module:
#Quotas            on

# Uncomment this if you would use ratio module:
#Ratios            on

# Port 21 is the standard FTP port.
Port            21

# 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            daniel
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

# 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.
#DelayEngine          off


# 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>


Beim ausführen von proftpd -nd9 ist mir nichts komisches aufgefallen.
Normalerweise müsste doch da die ip stehen auf die proftpd lauscht bei mir steht da blos server.zuhause.xx und da hinter ein parr sachen.
Gespeichert
foxbo
ProFTPD
*
Offline Offline

Beiträge: 7

275844344
Profil anzeigen
« Antwort #6 am: 06. April 2005, 13:25:31 »

L&auml;chelnd  L&auml;chelnd  L&auml;chelnd  L&auml;chelnd Hab es jetzt zum laufen gebracht L&auml;chelnd  L&auml;chelnd  L&auml;chelnd  L&auml;chelnd  L&auml;chelnd  L&auml;chelnd
Gespeichert
Seiten: [1]   Nach oben
  Drucken  
 
Gehe zu:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.2 | SMF © 2006-2007, Simple Machines LLC Prüfe XHTML 1.0 Prüfe CSS
Seite erstellt in 0.062 Sekunden mit 16 Zugriffen.