Ein lokaler User, soll sich legendlich auf dem Server in einem für ihn eingerichteten Ordner via SCP einloggen und dort seine files kopieren, löschen und verwalten können. (Er darf sich nicht auf eine Shell verbinden!)
Create a new user (sftptest) and make their shell /sbin/nologin:
# useradd -s /sbin/nologin sftptest
Add a new group (sftponly) and add the user to that group:
# groupadd sftponly # usermod -g sftponly sftptest
Change permissions of the users home dir to be as follows:
# chown root:root /home/sftptest # chmod 755 /home/sftptest
Make a directory for the user (sftptest) to be able to scp to (a destination directory):
# mkdir /home/sftptest/incoming # chown sftptest:sftptest /home/sftptest/incoming
Set the password for the sftptest user.
# passwd sftptest
Add the following to /etc/ssh/sshd_config:
# vim /etc/ssh/sshd_config
Match group sftponly ChrootDirectory %h X11Forwarding no AllowTcpForwarding no ForceCommand internal-sftpNOTE: The sshd stanza can be adjusted in three basic modes:
%h
directive to lock each user into their own home directory (see above example)ChrootDirectory /home/user/
After all changes, restart sshd!
# systemctl restart sshd