안녕세계
[Linux] 쉘 스크립트로 간편하게 SSH 접속하기 본문
[Linux] 쉘 스크립트로 간편하게 SSH 접속하기
Junhong Kim 2018. 5. 9. 15:46728x90
반응형
SSH 접속 방법
일반적인 SSH 접속 방법
$ ssh -l [username] [ipaddress] [-p portnumber]
간편한 SSH 접속 방법
쉘 스크립트 파일에 해당 SSH 정보를 저장하고 실행합니다.
1. 쉘 생성
$ cd ~/bin
$ vi [filename].sh
2. 쉘 코드
#!/bin/sh
# 실행시 출력 메시지
echo "Welcome to [filename]"
# user명 입력받기
read -p "user: " user
# 실제 실행되는 쉘
ssh -l $user xxx.xxx.xxx.xxx [-p portnumber]
3. 쉘 실행
# 쉘 실행
$ sh [filename].sh
Welcome to [computer_name]
user: root
root@xxx.xxx.xxx.xxx`s password:
# 접속 성공시
[root@xxx.xxx.xxx.xxx ~]$
728x90
반응형
'Infra > Linux' 카테고리의 다른 글
[Linux] Apache(CentOS)와 Django 연동 (0) | 2018.04.10 |
---|---|
[Linux] Apache(CentOS) 설치 (0) | 2018.04.10 |
[Linux] CentOS 명령어 (0) | 2018.04.10 |
[Linux] CentOS 설치 (0) | 2018.04.10 |
[Linux] hosts 파일 (0) | 2018.04.02 |
Comments