SFTP-Server
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 /home/anton/ablage
root@ricky:~# chown anton /home/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