Windows 서버에서 Linux로 파일을 복사하려고 하면 다음 오류가 발생합니다.
command: scp C:\Users\arya\Videos\aaa [email protected]:/local/
scp command getting failed : Unable to negotiate with 10.100.10.10 port 55: no matching host key type found. Their offer: ssh-rsa,ssh-dss
비밀번호 없이 Windows에서 Linux 서버로 복사할 수 있는 방법이 있습니까?
답변1
오류 메시지에 따라 어떤 방법이 제공되고 사용 가능한지 설명하고 동일한 메시지가 포함된 여러 기사를 읽은 후 다음과 같이 설명하십시오.
scp
다음과 같이 상대 옵션을 설정하는 명령을 시도해 보는 것이 좋습니다 ssh
.
scp -o HostKeyAlgorithms=ssh-rsa,ssh-dss <source> <target>
기반논평, 다른 오류(권한 거부)가 발생하면 다음을 모두 사용해 보세요.
scp -o HostKeyAlgorithms=ssh-rsa,ssh-dss -o PubkeyAcceptedKeyTypes=+ssh-rsa <source> <target>