Python Paramiko ways to implement SSH remote access

Source: Internet
Author: User
After installing Paramiko, look at the following example:

Import paramiko# Set the remote host address and Port T=paramiko of the SSH connection. Transport ((ip,port)) #设置登录名和密码t. Connect (username=username,password=password) #连接成功后打开一个channelchan =t.open_ Session () #设置会话超时时间chan. settimeout (session_timeout) #打开远程的terminalchan. Get_pty () #激活terminalchan. Invoke_shell () You can then execute commands remotely with chan.send (' command ') and CHAN.RECV (Recv_buffer) and get feedback locally. Example: Chan.send (' pwd ') print chan.recv (65535)

The point is that some commands are executed for a long time, inappropriate receive returns may not get the desired result, you can wait with time.sleep (), or use some condition loops.
For example:

STR=CHAN.RECV (Recv_buffer) and not Str.endswith (' # '):    str=chan.recv (Recv_buffer)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.