在windows上使用PuTTY 自带的 pscp 工具从Linux 上传下载文件,遇到 Password authentication failed
1、从linux上下载文件到windows
linux_down.bat 文件中:
pscp -P 22 -v -l root 192.168.1.1:/home/test.ini E:/export/test.ini
@pause
2、从windows上传文件到linux
linux_up.bat文件中
pscp -P 22 -v E:/export/t2.ini root@192.168.1.1:/home/t2.ini
@pause
3、遇到 Password authentication failed.
通过以下方法解决
vi /etc/ssh/sshd_config
打开以下配置(去掉#号)
AddressFamily any
PermitRootLogin yes
PasswordAuthentication yes
GSSAPIAuthentication yes
UseDNS no
$ systemctl restart sshd.service
发布时间:2021-12-28 00:00:00
关键词:PuTTY
浏览量:34