- 리눅스 SSH 패스워드 없이 자동 로그인
- SSH 암호 없이 자동 로그인 종합 안내
- authorized_keys와 SSH Config를 이용한 비밀번호 없이 SSH 로그인하기
- Can you set passwords in .ssh/config to allow automatic login?
- Simplify Your Life With an SSH Config File
- ~/.ssh/config で簡単に複数ホストへのSSH接続を管理する
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 |