Sftp-server

Aus xinux.net
Zur Navigation springen Zur Suche springen
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

User und Home-Dir anlegen

root@ricky:~# mkdir /users/
root@ricky:~# groupadd sftponly
root@ricky:~# useradd -G sftponly -d /users/anton -s /bin/false anton
root@ricky:~# mkdir -p /users/anton/ablage
root@ricky:~# chown anton /users/anton/ablage

config

  • /etc/ssh/sshd.conf
Subsystem sftp /usr/lib/openssh/sftp-server
UsePAM yes
Match Group sftponly
        ChrootDirectory /users/%u
        ForceCommand internal-sftp
        AllowTcpForwarding no

Links