
SSH 클라이언트 사용법$ ssh username@hostname -p port command_line 여기서 username@ 과 -p port, command_line은 생략 가능! username을 명시하지 않을 시, windows/macOS/Linux 클라이언트의 username이 적용된다.-p는 포트번호를 지정하는 옵션으로, 지정하지 않을 시 기본으로 22번이 할당된다. (well-known port number)command_line을 명시하지 않으면 쉘을 사용할 것임을 암시하게 된다. # 예시ssh admin@abcde.net -p 10022 touch /tmp/i_am_alive 위 명령어는 abcde.net에 존재하는 admin 계정으로 로그인한 것이다.TCP port 10022를 lis..