Python Paramiko ways to implement SSH remote access

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

The code is as follows:


Import Paramiko

#设置ssh连接的远程主机地址和端口
T=paramiko. Transport ((Ip,port))
#设置登录名和密码
T.connect (Username=username,password=password)
#连接成功后打开一个channel
Chan=t.open_session ()
#设置会话超时时间
Chan.settimeout (Session_timeout)
#打开远程的terminal
Chan.get_pty ()
#激活terminal
Chan.invoke_shell ()
You can then execute commands remotely with chan.send (' command ') and CHAN.RECV (Recv_buffer) and get feedback locally.
For 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:

The code is as follows:


STR=CHAN.RECV (Recv_buffer)
While 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.