본문 바로가기
Mac

맥(Mac)에서 ssh로 접속 시, no matching cipher found 에러

by 루에 2021. 4. 12.
반응형

맥에서 ssh로 다른 pc에 연결하려 할 때 아래와 같은 메세지가 발생한다.

원인은 암호화 방식이 맞지 않기 때문이며, 몇가지 제공되는 방식 중 선택하여 지정해 주면 정상적으로 접근이 가능하다.

 

Last login: Mon Apr 12 14:44:03 on ttys001

kygenesis@gwon-yeong-gag-ui-MacBookAir ~ % ssh dra@10.90.101.101 -p 22

Unable to negotiate with 10.90.101.101 port 22: no matching cipher found. Their offer: aes128-cbc,aes192-cbc,aes256-cbc,blowfish-cbc,arcfour

kygenesis@gwon-yeong-gag-ui-MacBookAir ~ % 

 

 

아래와 같이 명령어를 수정하여 접근한다.

 

kygenesis@gwon-yeong-gag-ui-MacBookAir ~ % ssh -c aes256-cbc dra@10.90.101.101 -p 22

dra@10.90.101.101's password: 

Welcome to Ubuntu 17.10 (GNU/Linux 3.14.44-rt-falinux-2.4 i686)

 

Last login: Mon Apr 12 14:46:57 2021 from 10.90.101.61

dra@dra-desktop:~$ 

 

정상적으로 접근되었다.

반응형

댓글