有没有办法将用户限制在 Ubuntu OS 20.04 上使用 sftp 的某些主目录中,并授予他们对其目录的写权限?'
我能够让每个用户只能看到自己的目录,而不能浏览任何其他目录。但是,他们现在无法写入自己的目录。以下是 /etc/ssh/sshd_config 的配置
Match User XXXXXXXXX
ForceCommand internal-sftp
PasswordAuthentication yes
ChrootDirectory %h
PermitTunnel no
AllowAgentForwarding no
AllowTcpForwarding no
X11Forwarding no
提前感谢你的帮助!