woshikid / blog

Apache License 2.0
8 stars 1 forks source link

sftp学习笔记 #199

Open woshikid opened 10 months ago

woshikid commented 10 months ago

安装sftp

apt install openssh-server
#apt install openssh-client

启动sftp

service ssh start

配置sftp vi /etc/ssh/sshd_config

#Subsystem sftp internal-sftp # 使用内部sftp进程
ChrootDirectory /data/%u # 限制路径(路径与父路径必须为root所有且仅root可写)(必须使用internal-sftp)
ForceCommand internal-sftp # 仅允许sftp登录,禁止ssh登录
#Match User test # 针对用户的配置
#Match Group test # 针对组的配置