< 문제 >
The goal of this level is for you to log into the game using SSH. The host to which you need to connect is bandit.labs.overthewire.org, on port 2220. The username is bandit0 and the password is bandit0. Once logged in, go to the Level 1 page to find out how to beat Level 1.
ssh -p 2220 bandit0@bandit.labs.overthewire.org
ssh를 사용하는 방법이었다.
-p : 포트번호를 입력하는 의미
bandit.labs.overthewire.org 이 링크에 접속해야하는데 id를 줬기 때문에 앞에 bandit0를 붙여서 작성해준다.

그럼 이렇게 뜬다!