Pure-FTP - Befehlsübersicht

LPI und MCSA Prüfung
Verfügbare Informationen zu "Pure-FTP - Befehlsübersicht"

  • Qualität des Beitrags: 0 Sterne
  • Beteiligte Poster: Drudenfuss
  • Forum: LPI und MCSA Prüfung
  • Forenbeschreibung: Kursteilnehmer für LPI Linux und MSCA/MSCE Prüfung
  • aus dem Unterforum: FTP-Server
  • Antworten: 1
  • Forum gestartet am: Montag 13.11.2006
  • Sprache: deutsch
  • Link zum Originaltopic: Pure-FTP - Befehlsübersicht
  • Letzte Antwort: vor 17 Jahren, 1 Monat, 19 Tagen, 11 Stunden, 27 Minuten
  • Alle Beiträge und Antworten zu "Pure-FTP - Befehlsübersicht"

    Re: Pure-FTP - Befehlsübersicht

    Drudenfuss - 28.02.2007, 10:03

    Pure-FTP - Befehlsübersicht
    Allgemein
    =========

    pure-ftpwho angemeldete Benutzer / Datei / Geschwindifkeit



    pure-pw useradd <Benutzername> User anlegen
    pure-pw usermod <Benutzername> User modifizieren ( '' => Beschänkung aufheben )
    pure-pw userdel <Benutzername> User löchen
    pure-pw passwd <Benutzername> Passwort fr User ädern
    pure-pw show <Benutzername> Infos ber den Benutzer
    pure-pw list angelegte User und deren Verzeichnissen anzeigen




    User anlegen
    ============

    1. pure-pw useradd username -u ftpuser -d /home/ftpusers/username
    2. pure-pw mkdb
    3. rcpure-ftpd start / restart



    !!! Nach jeder Änderung !!!

    pure-pw mkdb
    rcpureftpd restart











    Beschreibung pure-pw
    ====================


    NAME
    pure-pw - Manage virtual users files for Pure-FTPd

    SYNTAX
    pure-pw useradd login [-f passwd_file] -u uid [-g gid]
    -D/-d home_directory [-c gecos]
    [-t download_bandwidth] [-T upload_bandwidth]
    [-n max number_of_files] [-N max_Mbytes]
    [-q upload_ratio] [-Q download_ratio]
    [-r <allow>/<mask>[,<ip>/<mask>]...] [-R <deny>/<mask>[,<ip>/<mask>]...]
    [-i <allow>/<mask>[,<ip>/<mask>]...] [-I <deny>/<mask>[,<ip>/<mask>]...]
    [-y <max>]
    [-z <hhmm>-<hhmm>] [-m]
    pure-pw usermod login -f passwd_file -u uid [-g gid]
    -D/-d home_directory -[c gecos]
    [-t download_bandwidth] [-T upload_bandwidth]
    [-n max_number_of_files] [-N max_Mbytes]
    [-q upload_ratio] [-Q download_ratio]
    [-r <allow>/<mask>[,<ip>/<mask>]...] [-R <deny>/<mask>[,<ip>/<mask>]...]
    [-i <allow>/<mask>[,<ip>/<mask>]...] [-I <deny>/<mask>[,<ip>/<mask>]...]
    [-y <max>]
    [-z <hhmm>-<hhmm>] [-m]
    pure-pw userdel login [-f passwd_file] [-m]
    pure-pw passwd login [-f passwd_file] [-m]
    pure-pw show login [-f passwd_file] [-m]
    pure-pw mkdb [<puredb_database_file> [-f passwd_file]]
    pure-pw list [-f passwd_file]

    DESCRIPTION
    Virtual users is a simple mechanism to store a list of users, with their password, name, uid, directory, etc. It's just like /etc/passwd. But it's
    not /etc/passwd. It's a different file, only for FTP.
    It means that you can easily create FTP-only accounts without messing your system accounts.
    Additionnaly, virtual users files can store individual quotas, ratios, bandwidth, etc. System accounts can't do this.
    Thousands of virtual users can share the same system user, as long as they all are chrooted, and they have their own home directory.

    FILES
    /etc/pureftpd.passwd
    /etc/pureftpd.pdb

    ENVIRONMENT VARIABLES
    PURE_PASSWDFILE If this variable is defined, this is the default value for the text password file. Without thie variable, /etc/pureftpd.passwd is
    assumed.
    PURE_DBFILE If this variable is defined, this is the default value for the PureDB password file. Without thie variable, /etc/pureftpd.pdb is
    assumed.

    EXAMPLES
    Please read http://www.pureftpd.org/README.Virtual-Users

    AUTHORS
    Frank DENIS <j>


    SEE ALSO
    ftp(1), pure-ftpd(8) pure-ftpwho(8) pure-mrtginfo(8) pure-uploadscript(8) pure-statsdecode(8) pure-pw(8) pure-quotacheck(8) pure-authd(8)





    Beschreibung pure-ftpwho
    ========================


    NAME
    pure-ftpwho - Report current FTP sessions

    SYNTAX
    pure-ftpwho [-c] [-h] [-H] [-n] [-p] [-s] [-v] [-w] [-W] [-x]

    DESCRIPTION
    pure-ftpwho shows current Pure-FTPd client sessions. Only the system administrator may run this. Output can be text (default), HTML, XML data
    and parser-optimized. The server has to be compiled with --with-ftpwho to support this command.

    OPTIONS
    -c the program is called via a web server (CGI interface) . Output is a full HTML page with the initial content-type header. This option is
    automatically enabled if an environment variable called GATEWAY_INTERFACE is found. This is the default if you can the program from a
    CGI-enabled web server (Apache, Roxen, Caudium, WN, ...) .

    -h Output help information and exit.

    -H Don't resolve host names, and only show IP addresses (faster).

    -n A synonym for -H.

    -p Output Apple / GNUStep plist data.

    -s Output only one line per client, with only numeric data, delimited by a | character. It's not very human-readable, but it's designed for
    easy parsing by shell scripts (cut/sed) .

    -v Output an ASCII table (just like the default mode), with more info. The verbose output includes the local IP, the local port, the total
    size of transfered files and the current number of transfered bytes.

    -w Output a complete HTML page (web mode).

    -W Output an HTML page with no header and no footer. This is an embedded mode, suitable for inline calls from CGI, SSI or PHP scripts.

    -x Output well-formed XML data for post-processing.


    FILES
    /var/run/pure-ftpd/ Scoreboard directory. Should always owned by root and on a lockable filesystem.


    ENVIRONMENT VARIABLES
    GATEWAY_INTERFACE
    If found, automatically run in CGI mode and output HTML data.


    AUTHORS
    Frank DENIS <j>


    SEE ALSO
    ftp(1), pure-ftpd(8) pure-ftpwho(8) pure-mrtginfo(8) pure-uploadscript(8) pure-statsdecode(8) pure-pw(8) pure-quotacheck(8) pure-authd(8)

    RFC 959, RFC 2389, RFC 2228 and RFC 2428.



    Mit folgendem Code, können Sie den Beitrag ganz bequem auf ihrer Homepage verlinken



    Weitere Beiträge aus dem Forum LPI und MCSA Prüfung

    Pure-FTP - FTP-Server mit Pure-FTP und virtuellen User - gepostet von Drudenfuss am Mittwoch 27.12.2006
    Bestanden mit 820 punkten - gepostet von necati09 am Montag 16.07.2007
    72-290 Prüfung in Essen bestanden - gepostet von mcsalinux am Mittwoch 02.05.2007
    Bestanden 70-350 - gepostet von necati09 am Montag 30.07.2007
    Wurm und dann? Sicherheit und ? - gepostet von mcsalinux am Mittwoch 19.09.2007



    Ähnliche Beiträge wie "Pure-FTP - Befehlsübersicht"

    FTP Zugangsdaten - StormRaven (Samstag 09.07.2005)
    Pure Potter Alchemist - Cpt. Chaos (Donnerstag 20.12.2007)
    Kaufe 1k Pure Ess 110k - sternchen (Sonntag 21.01.2007)
    anonym ftp - Cakir_89 (Donnerstag 15.06.2006)
    17.06.'06 Tripple X im Pure, Bad Kreuznach - RedEye (Dienstag 30.05.2006)
    FTP Daten - chris19 (Freitag 16.07.2004)
    23.09.2006 Red Eye @ Pure Bad Kreuznach - Anonymous (Donnerstag 17.08.2006)
    FTP Server 24/7 - Status - frenzy (Montag 08.05.2006)
    **FTP Program ** - islamboard (Dienstag 10.01.2006)
    FTP-Server vs. YouSendIt und ähnliche - Rossano (Sonntag 08.01.2006)