要限制SSH用户仅能访问特定目录,可以通过使用chroot jail来实现。以下是在CentOS中限制SSH用户访问特定目录的步骤:
sudo groupadd restricted
sudo usermod -a -G restricted username
sudo vi /etc/ssh/sshd_config
在文件中添加以下内容:
Match Group restricted
ChrootDirectory /path/to/restricted/directory
sudo systemctl restart sshd
现在,限制用户将只能访问指定的目录,且无法访问其他目录。