Python Language
파이썬에서의 보안 쉘 연결
수색…
매개 변수
매개 변수 | 용법 |
---|---|
호스트 이름 | 이 매개 변수는 연결을 설정해야하는 호스트를 알려줍니다. |
사용자 이름 | 호스트에 액세스하는 데 필요한 사용자 이름 |
포트 | 호스트 포트 |
암호 | 계정 암호 |
SSH 연결
from paramiko import client
ssh = client.SSHClient() # create a new SSHClient object
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) #auto-accept unknown host keys
ssh.connect(hostname, username=username, port=port, password=password) #connect with a host
stdin, stdout, stderr = ssh.exec_command(command) # submit a command to ssh
print stdout.channel.recv_exit_status() #tells the status 1 - job failed
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow