This service allows sftp connections only

Posted pu20065226

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了This service allows sftp connections only相关的知识,希望对你有一定的参考价值。

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

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

[email protected]:/iot>ssh [email protected]192.168.0.1
 Authorized only. All activity will be monitored and reported 
[email protected]192.168.0.1s password: 
This service allows sftp connections only.
Connection to 192.168.0.1 closed.
[email protected]:/iot>sftp [email protected]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),重新再试就成功了

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

 

以上是关于This service allows sftp connections only的主要内容,如果未能解决你的问题,请参考以下文章

远程连接MySQL提示 Host is not allowed to connect to this MySQL server

sftp ssh服务分离

使用SecureCRT远程链接Ubuntu出现 Change of username or service not allowed的问题

如何在上层文件夹中添加“Service-Worker-Allowed”来注册服务工作者范围

SpringBoot + SFTP 实现文件上传与下载实战

使用Docker快速搭建sftp服务