os/Linux

ssh 자동연결

C/H 2017. 2. 10. 08:30

ssh-keygen

ssh-keygen 은 다른곳(ssh-keygen 자동 로그인)도 많으니 넘어가고, ...

expect

#!/usr/bin/expect -f
spawn ssh useranme@domain.com
expect "assword:"
send "password\r"
interact

~/.ssh/config

ssh test
비밀번호 입력이 필요함.

Host test
    HostName domain.com
    Port 22
    User username


반응형

'os > Linux' 카테고리의 다른 글

ssh-keygen 자동 로그인  (0) 2017.03.23
curl -kvLS https://google.co.kr 에러  (0) 2017.02.20
ssh proxy  (0) 2016.12.26
CentOS yum epel 저장소 에러  (0) 2016.06.03
CentOs "No package htop available."  (0) 2016.01.04