본문 바로가기
OS/mac OS

mac OS에서 telnet 명령어 설치 방법

by ganyga 2024. 2. 13.

기본적으로 macOS에서는 기본적으로 Telnet 클라이언트가 설치되어 있지 않음

 

mac OS 패키지 관리자 Homebrew 설치하기

Homebrew는 Apple에서 제공하지 않는 패키지들을 설치할 수 있는 유용한 패키지 관리자임

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

 

Telnet 설치

brew install telnet

 

설치 확인

telnet 명령어 입력 시 telnet>으로 바뀌면 설치가 된 것임

telnet

telnet>

 

telnet 명령어를 통해 웹 서버가 잘 작동하는지 확인

telnet google.com 80을 입력하여 Connected to google.com 이 나오면 접속이 잘 되는 것임

telnet google.com 80

Trying 216.58.203.78...
Connected to google.com.
Escape character is '^]'.

# control+C를 누르고 엔터 눌러서 빠져나오기
^C
Connection closed by foreign host.