码迷,mamicode.com
首页 > 其他好文 > 详细

This service allows sftp connections only

时间:2019-06-02 15:56:21      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:star   需要   tar   sshd_conf   art   rect   登陆   span   rom   

这是因为该用用户只开通了sftp,ssh被禁了

可以通过别的主机ssh登陆这台机器 

app@home:/iot>ssh mysftp@192.168.0.1
 Authorized only. All activity will be monitored and reported 
mysftp@192.168.0.1s password: 
This service allows sftp connections only.
Connection to 192.168.0.1 closed.
app@home:/iot>sftp mysftp@192.168.0.1 ##成功

这是因为在server端设置的/etc/ssh/sshd_config文件中,需要设置为:

AllowTcpForwarding 应该设置为yes才可。

如果没有设置为yes的话,用户就只能通过sftp访问指定目录,而且不能进行ssh登录.

只有把 AllowTcpForwarding no 改为 AllowTcpForwarding yes ,用户才能通过ssh登录然后访问目录。

同时ForceCommand internal-sftp也要注释掉 

#ChrootDirectory /iot/sftp
#ForceCommand internal-sftp
##AllowTcpForwarding no
AllowTcpForwarding yes

 

然后重启服务(roo用户 service sshd restart),重新再试就成功了

app@home:/iot>ssh mysftp@192.168.0.1
 Authorized only. All activity will be monitored and reported 
mysftp@192.168.0.1s password: 
Last login: Sun Jun  2 14:22:00 2019 from 192.168.102.82
mysftp@remoteServer:/home/ap/mysftp>ll

 

This service allows sftp connections only

标签:star   需要   tar   sshd_conf   art   rect   登陆   span   rom   

原文地址:https://www.cnblogs.com/pu20065226/p/10962906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!