
SSH -> Secure shell protocol
1. 네트워크 프로토콜
2. pc와 pc간 퍼블릭 네트워크 이용시 보안적으로 안전하게 이용하기 위해 사용
3. 데이터 전송, 원격 제어에 많이 사용
4. ssh의 경우 안전한 채널 구성 후 정보 교환
5. 비밀번호가 아닌 public key, private key 를 통해 암호 복호
첫번째 시도
* 그냥 냅다 ssh 호스트 url 찍어버림
-> 당연히 안됨 : 공개키 사용권한 거부당함
!!! You are trying to log into this SSH server on port 22, which is not intended. : 포트 22로 시도했단 얘긴듯
제시한 포트는 2220임
== 그럼 포트 변경해보자
두번째 시도
* !!! You are trying to log into this SSH server on port 2220 with a username
!!! that does not match the bandit game.
이건 밴딧게임이 아니라고 함
-> 그러니까 당연히 패스워드도 맞을리 없음
== ssh 명령어 사용법이 아예 잘못됨
== ssh [user_name]@[domain] -p[port_number] 해당 명령어 사용해서 다시 해보자
세번째 시도
== 문제 해결
'▶ InfoSecurity' 카테고리의 다른 글
22.11.18 cloud (0) | 2022.11.21 |
---|---|
[클라우드 프로그래밍] (0) | 2022.09.30 |
[클라우드프로그래밍] (0) | 2022.09.23 |
[클라우드프로그래밍] 웹서버, node.js 초기 세팅 (0) | 2022.09.02 |
[Linux] web server setting (0) | 2022.07.07 |