Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- port
- tomcat
- grep
- lsof
- Source
- ssh
- 단축키
- resource
- Mac
- maVen
- 줄바꿈 문자
- context
- vscode
- Quartz
- Windows
- JavaScript
- Windows 10
- import
- netsh
- bash
- profile
- plugin
- IntelliJ
- VirtualBox
- xargs
- GIT
- 네트워크
- Eclipse
- find
- web.xml
Archives
- Today
- Total
develog
[bash] ssh protocol version 확인 본문
## protocol 버전 1로 접속, 버전 1은 지원되지 않음
$ ssh -1 user01@localhost -p 22
SSH protocol v.1 is no longer supported
## protocol 버전 2로 접속
$ ssh -2 user01@localhost -p 22
user01@localhost's password:
Comments