web-dev-qa-db-fra.com

Erreur de connexion ssh après avoir emprisonné l'utilisateur de ssh-sftp

Ce que je veux:

Je veux créer un utilisateur pour accéder à/var/www/laravel Je crée une démo d'utilisateur, j'ai suivi ce tutoriel https://support.rackspace.com/how-to/how-to-add-linux -user-with-document-root-permissions /

Je peux me connecter et voir le répertoire, le dossier, éditer, ouvrir, télécharger, etc. mais je ne veux pas que cet utilisateur obtienne ce répertoire, ni aller à la maison ou à un autre répertoire ...

quand je suis un tuto sur la façon d'emprisonner un utilisateur

J'ai suivi ce tuto https://askubuntu.com/a/14409

à la fin du fichier

/etc/ssh/sshd_config

Je dois mettre ça ...

Subsystem sftp internal-sftp
    Match User demo
    ChrootDirectory %h
    ForceCommand internal-sftp
    AllowTcpForwarding no

et commenter cette ligne

#Subsystem sftp /usr/lib/openssh/sftp-server

PD: et redémarrez ssh service ssh restart

mais quand je fais ça, je ne peux pas me connecter via ssh-sftp, j'utilise Bitvise et cela me montre une erreur:

windows error 10054

http://kb.globalscape.com/KnowledgebaseArticle10235.aspx

Mon fichier/etc/ssh/sshd_config

    # Package generated configuration file
    # See the sshd_config(5) manpage for details

    # What ports, IPs and protocols we listen for
    Port 22
    # Use these options to restrict which interfaces/protocols sshd will bind to
    #ListenAddress ::
    #ListenAddress 0.0.0.0
    Protocol 2
    # HostKeys for protocol version 2
    HostKey /etc/ssh/ssh_Host_rsa_key
    HostKey /etc/ssh/ssh_Host_dsa_key
    HostKey /etc/ssh/ssh_Host_ecdsa_key
    HostKey /etc/ssh/ssh_Host_ed25519_key
    #Privilege Separation is turned on for security
    UsePrivilegeSeparation yes

    # Lifetime and size of ephemeral version 1 server key
    KeyRegenerationInterval 3600
    ServerKeyBits 1024

    # Logging
    SyslogFacility AUTH
    LogLevel INFO

    # Authentication:
    LoginGraceTime 120
    PermitRootLogin without-password
    StrictModes yes

    RSAAuthentication yes
    PubkeyAuthentication yes
    #AuthorizedKeysFile %h/.ssh/authorized_keys

    # Don't read the user's ~/.rhosts and ~/.shosts files
    IgnoreRhosts yes
    # For this to work you will also need Host keys in /etc/ssh_known_hosts
    RhostsRSAAuthentication no
    # similar for protocol version 2
    HostbasedAuthentication no
    # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
    #IgnoreUserKnownHosts yes

    # To enable empty passwords, change to yes (NOT RECOMMENDED)
    PermitEmptyPasswords no

    # Change to yes to enable challenge-response passwords (beware issues with
    # some PAM modules and threads)
    ChallengeResponseAuthentication no

    # Change to no to disable tunnelled clear text passwords
    #PasswordAuthentication yes

    # Kerberos options
    #KerberosAuthentication no
    #KerberosGetAFSToken no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes

    # GSSAPI options
    #GSSAPIAuthentication no
    #GSSAPICleanupCredentials yes

    X11Forwarding yes
    X11DisplayOffset 10
    PrintMotd no
    PrintLastLog yes
    TCPKeepAlive yes
    #UseLogin no

    #MaxStartups 10:30:60
    #Banner /etc/issue.net

    # Allow client to pass locale environment variables
    AcceptEnv LANG LC_*

    #Subsystem sftp /usr/lib/openssh/sftp-server

    # Set this to 'yes' to enable PAM authentication, account processing,
    # and session processing. If this is enabled, PAM authentication will
    # be allowed through the ChallengeResponseAuthentication and
    # PasswordAuthentication.  Depending on your PAM configuration,
    # PAM authentication via ChallengeResponseAuthentication may bypass
    # the setting of "PermitRootLogin without-password".
    # If you just want the PAM account and session checks to run without
    # PAM authentication, then enable this but set PasswordAuthentication
    # and ChallengeResponseAuthentication to 'no'.
    UsePAM yes

    Subsystem sftp internal-sftp
        Match User demo
            ChrootDirectory %h
            ForceCommand internal-sftp
            AllowTcpForwarding no
1
DarckBlezzer

Il existe une page de manuel pour sshd_config(5) et elle contient toutes les informations pour tout ce que vous souhaitez configurer votre serveur. Pour vous, il y a une partie importante sur le répertoire chroot:

ChrootDirectory

Spécifie le chemin d'accès d'un répertoire à chroot (2) après l'authentification. Au démarrage de la session, sshd (8) vérifie que tous les composants du chemin d'accès sont des répertoires appartenant à la racine qui ne sont accessibles en écriture par aucun autre utilisateur ou groupe. Après la chroot, sshd (8) change le répertoire de travail en répertoire personnel de l'utilisateur.

Cela signifie que vous devez exécuter:

chown root:root /var/www
chmod go-w /var/www

Telle est la réponse

https://stackoverflow.com/a/32653528/5287072

1
DarckBlezzer