How Python automatically connects to SSH

Source: Internet
Author: User
The example in this article describes how Python automatically connects to SSH. Share to everyone for your reference. The implementation method is as follows:

#!/usr/bin/python#-*-coding:utf-8-*-import sys, time, ostry:  import pexpectexcept importerror:  print "" " You    must install Pexpect module  "" "  sys.exit (1) addr_map = {  ' v3 ':(' root@192.168.1.162 ', ' sina@2009 ') ,  ' dev ':(' test016@192.168.1.136 ', ' test016 '),}try:  key = sys.argv[1]  host = addr_map[key]except:  Print "" "    argv error, use it link    jssh v3, v3 must defined in Addr_map  " ""  sys.exit (1) Server = Pexpect . Spawn ('/usr/bin/ssh%s '% host[0]) server.expect ('. *ssword: ') server.sendline (host[1]) server.interact ()

Hopefully this article will help you with Python programming.

  • Related Article

    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.