凝思系统下⾯配置sftp服务以及ftp(proftpd)服务sftp和ftp是两种协议是不同的,sftp是ssh内含的协议,只要sshd服务器启动了,它就可⽤,它本⾝不需要ftp服务器启动。
男士脸部保养
1.查看openssh软件版本,想sftp服务⽤户只能访问特定的⽂件⽬录,版本需要4.8以上
[root@localhost ftp]# rpm -qa | grep openssh
裙子的英文是什么
openssh-rver-5.3p1-81.el6_3.x86_64
yuo
openssh-5.3p1-81.el6_3.x86_64
openssh-clients-5.3p1-81.el6_3.x86_64
2.新增⽤户,限制⽤户只能通过sftp访问
[root@localhost ftp]# uradd -m -d /home/uap -s /sbin/nologin uap
3.限制⽤户通过sftp登录进来时只能进⼊主⽬录,修改/etc/ssh/sshd_config⽂件
[root@localhost ftp]# vim /etc/ssh/sshd_config
#Subsystem sftp /usr/libexec/openssh/sftp-rver
Subsystem sftp internal-sftp
Match Ur uap
clear是什么意思ChrootDirectory /home/uap
X11Forwarding no
AllowTcpForwarding no
ForceCommand internal-sftp
重启ssh
4.测试访问
root@10.1.1.200:test# sftp -oPort=22 uap@127.0.0.1
Connecting to 127.0.
dave@127.0.0.1's password:
Read from remote host 10.1.6.175: Connection ret by peer
Couldn't read packet: Connection ret by peer
发现连接不上,查看⽇志
[root@localhost ftp]# tail /var/log/messages
Jan 6 11:41:41 localhost sshd[4907]: fatal: bad ownership or modes for chroot directory "/home/uap"
Jan 6 11:41:41 localhost sshd[4905]: pam_unix(sshd:ssion): ssion clod for ur uap
解决⽅法:
⽬录权限设置上要遵循2点:
ChrootDirectory设置的⽬录权限及其所有的上级⽂件夹权限,属主和属组必须是root;
ChrootDirectory设置的⽬录权限及其所有的上级⽂件夹权限,只有属主能拥有写权限,权限最⼤设置只能是755。
如果不能遵循以上2点,即使是该⽬录仅属于某个⽤户,也可能会影响到所有的SFTP⽤户。
[root@localhost ftp]# ll
total 4强壮的英文单词
drwxr-xr-x 3 uap uap 4096 Jan 5 13:06 uap留学语言
[root@localhost ftp]# chown root:root uap
[root@localhost ftp]# chmod 755 uap
好朋友的英文[root@localhost ftp]# ll
total 4
drwxr-xr-x 3 root root 4096 Jan 5 13:06 uap
然后在测试通过location什么意思
root@10.1.1.200:test# sftp -oPort=22 uap@127.0.0.1
Connecting to 10.1.
dave@10.1.6.175's password:
sftp> ls
test
sftp> cd ..
thereissftp> ls
test
sftp> cd test
sftp> ls
<
sftp>
Fetching /
/
可以看到已经限制⽤户在家⽬录,同时该⽤户也不能登录该机器。
凝思系统⽤的ftp服务为proftpd
具体配置,需要修改的地⽅
DefaultRoot /home/uap/ftp #注意ftp的所有者为uap 且需要777权限Ur uap
翰林学院
Group uap
/etc/init.d/proftpd restart