서버

Mac Telnet 설치

놋수저 2022. 6. 5. 20:12
반응형

AWS EC2 생성 후 EC2 접속을 위해 터미널에서 telnet 명령어를 이용해 접속을 시도하였다.

telnet xxx.xxx.xxx.xxx 22
-bash: telnet: command not found

하지만 -bash: telnet: command not found ...

telnet 명령어를 찾을 수 없다고 나온다.

 

왜일까?

이유는 High Sierra 이후 기본적으로 Telnet을 제공하지 않기 때문에, Homebrew로 Telnet을 설치 해야한다.

 

1. Homebrew 설치

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"​

2. telnet 설치

brew tap theeternalsw0rd/telnet
brew install telnet

 

다시 telnet 명령어를 실행해보자..

telnet xxx.xxx.xxx.xxx 22
Trying xxx.xxx.xxx.xxx...
Connected to ec2-xxx-xxx-xxx-xxx.ap-northeast-2.compute.amazonaws.com.

정상적으로 연결되었다 !

 

소소한 지식 오늘도 Get 😊

반응형
LIST

'서버' 카테고리의 다른 글

bash: ll: command not found 해결 방법  (0) 2022.06.05