리눅스 SSH 클라이언트

1 개요

리눅스 SSH 클라이언트
ssh
/usr/bin/ssh
  • CentOS 최소 설치 패키지에 SSH 서버(sshd)는 있지만, SSH 클라이언트(ssh)는 없다.
  • 최소 설치만 아니라면 대체로 설치되어 있다...

2 다른 서버 접속하기

명령어
ssh 아이디@호스트주소
실행예시
[root@jmnote ~]# ssh root@135.79.246.80
root@135.79.246.80's password: P@ssw0rd
Last login: Mon Mar 31 21:58:46 2014 from 246.80.135.79
[root@webserver1 ~]#

3 22번 이외 포트 사용

명령어
ssh 아이디@호스트주소 -p포트번호
실행예시
[root@jmnote ~]# ssh root@example.com -p1022
root@example.com's password: P@ssw0rd
Last login: Mon Mar 31 21:58:46 2014 from 246.80.135.79
[root@webserver2 ~]#

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}