AI智能
改变未来

sftp创建只能下载文件,不可登录用户的方法


1.修改/etc/ssh/sshd_config

注释:#Subsystem sftp /usr/libexec/openssh/sftp-server
添加:Subsystem sftp internal-sftp

2.添加用户

useradd -g test -s /sbin/nologin testuser

3.重启sshd服务

systemctl restart sshd

测试
su testuser 失败

用客户端sftp登录成功

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » sftp创建只能下载文件,不可登录用户的方法