OpenSSH : SFTP only + Chroot2026/04/24 |
|
Configure SFTP only + Chroot. |
|
| [1] | For example, Set [/home] as the Chroot directory. |
|
root@dlp:~#
vi /etc/ssh/sshd_config # line 138 : comment out and add a line like below # Subsystem sftp /usr/lib/openssh/sftp-serverSubsystem sftp internal-sftp
# add to last line
Match Group sftp_users
X11Forwarding no
AllowTcpForwarding no
ChrootDirectory /home
ForceCommand internal-sftp
systemctl restart ssh
|
| [2] | Try to access with a user and verify the settings. |
|
ubuntu@node01:~$ ssh ubuntu@dlp.srv.world
Enter passphrase for key '/home/ubuntu/.ssh/id_ed25519':
This service allows sftp connections only.
Connection to dlp.srv.world closed. # denied as settings
ubuntu@node01:~$ sftp ubuntu@dlp.srv.world Enter passphrase for key '/home/ubuntu/.ssh/id_ed25519': Connected to dlp.srv.world. sftp> |
| Sponsored Link |
|
|