खोज…


पैरामीटर

पैरामीटर प्रयोग
होस्ट नाम यह पैरामीटर उस होस्ट को बताता है जिससे कनेक्शन स्थापित करने की आवश्यकता है
उपयोगकर्ता नाम होस्ट तक पहुंचने के लिए उपयोगकर्ता नाम आवश्यक है
बंदरगाह होस्ट पोर्ट
कुंजिका खाते के लिए पासवर्ड

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