사용자 도구

사이트 도구


linux:ssh

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
linux:ssh [2019/06/10 12:29]
kwon37xi
linux:ssh [2019/06/20 15:53]
kwon37xi [~/.ssh/config]
줄 59: 줄 59:
     IdentityFile ~/.ssh/[private key]     IdentityFile ~/.ssh/[private key]
 </code> </code>
 +  * [[https://gist.github.com/jexchan/2351996|동일 HostName, 동일 User 다중 Key]] ''Host github.com-SSHID'' 에서 ''Host'' 의 값을 ''github.com-myid'' 형태로 특정 값을 줘서 처리할 수 있고, 그 뒤 부터 ssh ''github.com-myid'' 같은 호출이 정상 작동한다.
  
 ===== 접속 유지 Keep connection ===== ===== 접속 유지 Keep connection =====
줄 139: 줄 140:
 </code> </code>
  
 +=====  no matching cipher found. =====
 +아래와 같은 오류 발생시..
 +
 +>> no matching cipher found. Their offer: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc,rijndael128-cbc,rijndael192-cbc,rijndael256-cbc,rijndael-cbc@lysator.liu.se
 +
 +''~/ssh/ssh_config'' 마지막에 다음과 같은 설정 추가
 +<code>
 +Ciphers aes128-cbc,aes192-cbc,aes256-cbc
 +</code>
 +
 +혹은 명령행에 암호화 방식을 ''-c'' 옵션으로 직접 지정한다.
 +
 +<code sh>
 +ssh -c aes128-cbc kwon37xi@xxx.xx.xx.xx
 +</code>
  
linux/ssh.txt · 마지막으로 수정됨: 2023/01/30 17:19 저자 kwon37xi