Windows 10에서 ssh 연결 개선
4202 단어 SSHPowerShellWindows10
warning: agent returned different signature type ssh-rsa (expected rsa-sha2-512)
솔루션은 최신 OpenSSH를 설치하고 사용합니다.
Win32-OpenSSH
Download
설치
C:\a\OpenSSH-Win64\
에 확장 PowerShell에서 사용
관리자 권한으로 실행
Set-ExecutionPolicy Unrestricted
편집
New-item –type file –force $profile
notepad $Profile
$profile
function ssh() {
c:\a\OpenSSH-Win64\ssh.exe $args
}
function scp() {
c:\a\OpenSSH-Win64\scp.exe $args
}
동작 확인
# バージョンが8.1であることを確認。
ssh -V
Git for Windows와 함께 제공되는 OpenSSH를 사용하는 경우
$profile
function ssh() {
c:\PROGRA~1\Git\usr\bin\ssh.exe $args
}
function scp() {
c:\PROGRA~1\Git\usr\bin\scp.exe $args
}
Program Files
가 공백이 섞여 있기 때문에 PROGRA~1
로 다시 쓴다.단축명의 확인은
dir c:\ /x
로 알 수 있다.ssh-agent
windows 10 .ssh/config에서 사용할 수없는 것
ControlMaster
ControlPath
ControlPersist
GSSAPIAuthentication
~.conf 를 결합해 config 를 만드는 너
sshconfig.sh
set -e
sshconfig() {
cat *.conf > ../config
}
sshwinconfig() {
sed \
-e 's/ProxyCommand ssh /ProxyCommand C:\\a\\OpenSSH-Win64\\ssh.exe /' \
-e 's/ControlMaster/# ControlMaster/' \
-e 's/ControlPath/# ControlPath/' \
-e 's/ControlPersist/# ControlPersist/' \
-e 's/GSSAPIAuthentication/# GSSAPIAuthentication/' \
../config > ../config.win
}
sshconfig
sshwinconfig
Reference
이 문제에 관하여(Windows 10에서 ssh 연결 개선), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tukiyo3/items/5c0a19b4c1f9e89100d2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)