www.ProFTPD.de
13. März 2007, 21:54:54 *
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: FTP Login  (Gelesen 394 mal)
0 Mitglieder und 1 Gast betrachten dieses Thema.
Linux-Newbie
Gast
« am: 18. Mai 2004, 17:12:14 »

Ich habe eine Frage bezueglich den Logins. Ich bin ein echter Linux Newbie, also bitte langsam erklaeren.

Ich habe den FTP Server installiert und er laeuft auch, wenn ich in den Services nachschaue. Jetzt will ich mich mit einem Windows Rechner zu dem Linux Server verbinden. Dies ist jedoch nicht moeglich, da ich einen User + Passwort adden muss.

Wie mache ich das? Ich dachte das der FTP Server auf die normale User confg im System zugreift. Also muesste ich mich doch mit meinem Username und Passwort anmelden koennen.

Vielen Dank!
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #1 am: 18. Mai 2004, 17:14:40 »

Zitat von: "Linux-Newbie"

Wie mache ich das? Ich dachte das der FTP Server auf die normale User confg im System zugreift. Also muesste ich mich doch mit meinem Username und Passwort anmelden koennen.

Vielen Dank!


das sollte er im Normalfall auch tun. Haengt nun von Deiner Config ab ...  Lege die mal ins Netz und poste hier die URL
Gespeichert

www.stonki.de:    the more I see, the more I know.......
www.proftpd.de:   Deutsche ProFTPD Dokumentation
www.krename.net:  Der Batch Renamer für KDE
www.kbarcode.net: Die Barcode Solution für KDE
Linux-Newbie
Gast
« Antwort #2 am: 18. Mai 2004, 17:20:00 »

Ich kann die nicht ins Internet stellen, da ich an meinem Linux Server kein Internet habe. :oops:

Das hier steht jedoch in meiner passwd file:

ftp:x:81:423: system user for proftpd:/var/ftp:bin/false

ich will mich mit folgendem Namen und passwort einloggen

secure:x:500:500:root-secure:/home/secure:/bin/bash

oder muss ich eine andere File nehmen?
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #3 am: 18. Mai 2004, 17:46:57 »

Zitat von: "Linux-Newbie"
Ich kann die nicht ins Internet stellen, da ich an meinem Linux Server kein Internet habe. :oops:

Das hier steht jedoch in meiner passwd file:

ftp:x:81:423: system user for proftpd:/var/ftp:bin/false

ich will mich mit folgendem Namen und passwort einloggen

secure:x:500:500:root-secure:/home/secure:/bin/bash

oder muss ich eine andere File nehmen?


username ist secure,  password steht ja da nicht, sondern in /etc/shadow.  Debug Mode bei ProFTPD (sieheMini Faq), Config posten
Gespeichert

www.stonki.de:    the more I see, the more I know.......
www.proftpd.de:   Deutsche ProFTPD Dokumentation
www.krename.net:  Der Batch Renamer für KDE
www.kbarcode.net: Die Barcode Solution für KDE
Linux-Newbie
Gast
« Antwort #4 am: 18. Mai 2004, 17:58:32 »

root:$1$Aa6I8CzQ$.lYkq/pw1d0P3nSeZH0ON/:12555:0:99999:7:::
bin:*:12555:0:99999:7:::
daemon:*:12555:0:99999:7:::
adm:*:12555:0:99999:7:::
lp:*:12555:0:99999:7:::
sync:*:12555:0:99999:7:::
shutdown:*:12555:0:99999:7:::
halt:*:12555:0:99999:7:::
mail:*:12555:0:99999:7:::
news:*:12555:0:99999:7:::
uucp:*:12555:0:99999:7:::
operator:*:12555:0:99999:7:::
games:*:12555:0:99999:7:::
nobody:*:12555:0:99999:7:::
rpm:!!:12555:0:99999:7:::
vcsa:!!:12555:0:99999:7:::
rpc:!!:12555:0:99999:7:::
xfs:!!:12555:0:99999:7:::
apache:!!:12555:0:99999:7:::
postfix:!!:12555:0:99999:7:::
rpcuser:!!:12555:0:99999:7:::
sshd:!!:12555:0:99999:7:::
secrue:$1$w8g0v1Uu$etp.FAtPqsx4Q3zoC11VF.:12555:0:99999:7:::
ftp:!!:12556:0:99999:7:::

-
das ist der Inhalt von der shadow - Datei

-
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use.  It establishes a single server
# and a single anonymous login.  It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.

ServerName         "ProFTPD Default Installation"
ServerType         standalone
DefaultServer         on

# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart      on

# Port 21 is the standard FTP port.
Port            21

# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask            022

# 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 under which the server will run.
User            nobody
Group            nogroup

# Normally, we want files to be overwriteable.
<Directory />
  AllowOverwrite      on
</Directory>

# Needed for NIS.
PersistentPasswd      off

# Default root can be used to put users in a chroot environment.
# As an example if you have a user foo and you want to put foo in /home/foo
# chroot environment you would do this:
#
# DefaultRoot /home/foo foo

-
das ist meine config file. Ich kann die nirgendwo hochladen.
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #5 am: 18. Mai 2004, 18:08:01 »

Zitat von: "Linux-Newbie"

secrue:$1$w8g0v1Uu$etp.

ich mag mich irren, aber hier steht secrue und oben secure...

Zitat

# Needed for NIS.
PersistentPasswd      off


nimm das mal raus, brauchst Du nicht.

cu
stonki

DEBUG MODE !
Gespeichert

www.stonki.de:    the more I see, the more I know.......
www.proftpd.de:   Deutsche ProFTPD Dokumentation
www.krename.net:  Der Batch Renamer für KDE
www.kbarcode.net: Die Barcode Solution für KDE
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.087 Sekunden mit 15 Zugriffen.