新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
How to enable SFTP access on Gaia OS
10余年建站经验, 网站设计、成都做网站客户的见证与正确选择。成都创新互联公司提供完善的营销型网页建站明细报价表。后期开发更加便捷高效,我们致力于追求更美、更快、更规范。
【参考KB:sk82281】
https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&solutionid=sk82281&partition=General&product=Security
Solution:
1) 登录专家模式: HostName> expert
2) 备份当前的SSHD配置文件:
[Expert@HostName]# cp /etc/ssh/sshd_config /etc/ssh/sshd_config_ORIGINAL
3) 在Vi编辑器中编辑当前的SSHD配置文件:
[Expert@HostName]# vi /etc/ssh/sshd_config
4) 使用以下两个选项之一修改当前配置:
要么以这种方式修改:
from
#Subsystem sftp /usr/libexec/openssh/sftp-server
to
Subsystem sftp /usr/libexec/openssh/sftp-server
或者以这种方式修改:
from
#Subsystemsftp /usr/libexec/openssh/sftp-server
to
Subsystemsftp internal-sftp
5) 保存更改并退出Vi编辑器
6) 重新启动SSHD服务:
[Expert@HostName]# /etc/init.d/sshd restart
注:
运行"chsh -s /bin/bash admin"命令与上述程序完全相同,虽然它更改了默认shell,但它也启用了对安全网关的SFTP访问。
要返回默认shell,简单运行 "chsh -s /etc/cli.sh admin"命令即可。