限制sftp服务用户登录

sftp和ftp是两种不同的协议,sftp是ssh内含的协议,只要sshd服务器启动了,它就可用,它本身不需要ftp服务器启动。

1、查看openssh软件版本,想sftp服务用户只能访问特定的文件目录,版本需要4.8以上
[root@localhostftp]# rpm -qa | grep openssh
openssh-server-5.3p1-81.el6_3.x86_64
openssh-5.3p1-81.el6_3.x86_64
openssh-clients-5.3p1-81.el6_3.x86_64

2、新增用户,限制用户只能通过sftp访问
[root@localhostftp]# useradd -m -d /home/useradmin -s /sbin/nologin useradmin

3、限制用户通过sftp登录进来时只能进入主目录,修改/etc/ssh/sshd_config文件
[root@localhostftp]# vim /etc/ssh/sshd_config
#Subsystem  sftp    /usr/libexec/openssh/sftp-server
Subsystem sftp internal-sftp
Match User cxjbb
ChrootDirectory /home/cxjbb
X11Forwarding no
AllowTcpForwarding no
ForceCommand internal-sftp

4、重启sshd服务
[root@localhostftp]#service sshd restart

5、测试访问
[email protected]:test# sftp -oPort=22 [email protected]
Connecting to 10.0.100.175...
[email protected]'s password: 
Read from remote host 10.1.6.175: Connection reset by peer
Couldn't read packet: Connection reset by peer
发现连接不上,查看日志
[root@localhostftp]# tail /var/log/messages
Jan  6 11:41:41 localhost sshd[4907]: fatal: bad ownership or modes forchroot directory "/opt/ftp/dave"
Jan  6 11:41:41 localhost sshd[4905]: pam_unix(sshd:session): session closed

6、解决方法:
目录权限设置上要遵循2点:
ChrootDirectory设置的目录权限及其所有的上级文件夹权限,属主和属组必须是root;
ChrootDirectory设置的目录权限及其所有的上级文件夹权限,只有属主能拥有写权限,权限最大设置只能是755。
如果不能遵循以上2点,即使是该目录仅属于某个用户,也可能会影响到所有的SFTP用户。
[root@localhostftp]# ll
total 4
drwxr-xr-x 3 dave dave 4096 Jan  5 13:06 useradmin
[root@localhostftp]# chown root:root useradmin
[root@localhostftp]# chmod 755 useradmin
[root@localhostftp]# ll
total 4
drwxr-xr-x 3 root root 4096 Jan  5 13:06 useradmin
然后在测试通过
[email protected]:test# sftp -oPort=22 [email protected]
Connecting to 10.0.100.175...
[email protected]'s password: 
sftp>ls
test 
sftp>cd..
sftp>ls
test 
sftp>cdtest
sftp>ls
1.txt 
sftp> get 1.txt
Fetching/test/1.txt to 1.txt
/test/1.txt
可以看到已经限制用户在家目录,同时该用户也不能登录该机器。
http://my.oschina.net/davehe/blog/100280

7、linux下sftp关闭步骤
linux下ftp分为ftp和sftp,sftp属于带权限的传输方式,传输过程加密,从原理上看,sftp属于ssh的一部分。
如果不需要sftp需要关闭,执行如下方法:
编辑 sshd_config 文件 (文件所在路径:/etc/ssh/ )
# vim /etc/ssh/sshd_config 
启用 PasswordAuthentication 项,值由yes 修改为no
以root 权限重启SSH,命令: /etc/init.d/ssh restart



你可能感兴趣的:(Linux随笔)