


Share an example of using Python to write an automatic SSH login to a remote server
Many times we like to directly ssh to the Linux server from the terminal of our own computer, rather than using the tool area with a UI interface to connect to our server. However, when using ssh in the terminal, we need to enter the account number and password every time, which is also a trouble, so we can simply create a small tool that runs on Linux/Mac os to automatically log in to the remote server through ssh.
Here is a GIF animation Let’s start with the example:

Overview
Let’s first sort out what functions we need:
1. 添加/删除连接服务器需要的IP,端口,密码2. 自动输入密码登录远程服务器
Yes, we will do it as simple as that Function
Start writing code
The code is relatively long, so I also put it on Github and Code Cloud. The address is at the bottom of the article:
1. Let’s create a module directory osnssh (Open source noob ssh), and then create two more directories below, one for storing the main program and call it bin, and one for saving login data (IP, port, password) called data.
-osnssh -bin -data
1. Setup program: add/delete IP, port, password. Create py file bin/setting.py:
#!/usr/bin/env python#-*-coding:utf-8-*-import re, base64, os, sys path = os.path.dirname(os.path.abspath(sys.argv[0]))''' 选项配置管理 __author__ = 'allen woo' '''def add_host_main():while 1:if add_host():break print("\n\nAgain:")def add_host():''' 添加主机信息 :return: ''' print("================Add=====================") print("[Help]Input '#q' exit")# 输入IP host_ip = str_format("Host IP:", "^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])$")if host_ip == "#q":return 1# 输入端口 host_port = str_format("Host port(Default 22):", "[0-9]+")if host_port == "#q":return 1# 输入密码 password = str_format("Password:", ".*")if password == "#q":return 1# 密码加密 password = base64.encodestring(password)# 输入用户名 name = str_format("User Name:", "^[^ ]+$")if name == "#q":return 1elif not name: os.system("clear") print("[Warning]:User name cannot be emptyg")return 0# The alias# 输入别名 alias = str_format("Local Alias:", "^[^ ]+$")if alias == "#q":return 1elif not alias: os.system("clear") print("[Warning]:Alias cannot be emptyg")return 0# 打开数据保存文件 of = open("{}/data/information.d".format(path)) hosts = of.readlines()# 遍历文件数据,查找是否有存在的Ip,端口,还有别名for l in hosts: l = l.strip("\n")if not l:continue l_list = l.split(" ")if host_ip == l_list[1] and host_port == l_list[2]: os.system("clear") print("[Warning]{}:{} existing".format(host_ip, host_port))return 0if alias == l_list[4]: os.system("clear") print("[Warning]Alias '{}' existing".format(alias))return 0 of.close()# save# 保存数据到数据文件 of = open("{}/data/information.d".format(path), "a") of.write("\n{} {} {} {} {}".format(name.strip("\n"), host_ip.strip("\n"), host_port, password.strip("\n"), alias.strip("\n"))) of.close() print("Add the success:{} {}@{}:{}".format(alias.strip("\n"), name.strip("\n"), host_ip.strip("\n"), host_port, password.strip("\n")))return 1def remove_host():''' 删除主机信息 :return: '''while 1:# 打开数据文件 of = open("{}/data/information.d".format(path)) hosts = of.readlines() of.close l = len(hosts)if l <= 0: os.system("clear") print("[Warning]There is no host")return print("================Remove================") print("+{}+".format("-"*40)) print("| Alias UserName@IP:PORT") hosts_temp = [] n = 0# 遍历输出所以信息(除了密码)供选择for i in range(0, l):if not hosts[i].strip():continue v_list = hosts[i].strip().split(" ") print("+{}+".format("-"*40)) print("| {} | {} {}@{}:{}".format(n+1, v_list[4], v_list[0], v_list[1], v_list[2])) n += 1 hosts_temp.append(hosts[i]) hosts = hosts_temp[:] print("+{}+".format("-"*40)) c = raw_input("[Remove]Choose the Number or Alias('#q' to exit):") is_alias = False is_y = Falsetry: c = int(c)if c > l or c < 1: os.system("clear") print("[Warning]:There is no")continuedel hosts[c-1] is_y = Trueexcept: is_alias = Trueif is_alias:if c.strip() == "#q": os.system("clear")break n = 0for l in hosts:if c.strip() == l.split(" ")[4].strip():del hosts[n] is_y = True n += 1if not is_y: os.system("clear") print("[Warning]:There is no")continueelse: # save# 再次确认是否删除 c = raw_input("Remove?[y/n]:")if c.strip().upper() == "Y": of = open("{}/data/information.d".format(path), "w")for l in hosts: of.write(l) print("Remove the success!") of.close()def str_format(lable, rule):''' 用于验证输入的数据格式 :param lable: :param rule: :return: '''while 1: print("{} ('#q' exit)".format(lable)) temp = raw_input().strip() m = re.match(r"{}".format(rule), temp)if m:breakelif "port" in lable: temp = 22breakelif temp.strip() == "#q": os.system("clear")break os.system("clear") print("[Warning]:Invalid format")return temp
2. Let’s add another function in setting.py for Output our information, that is, about me.
def about():''' 输出关于这个程序的信息 :return: ''' of = open("{}/bin/about.dat".format(path)) rf = of.read()try: info = eval(rf) os.system("clear") print("================About osnssh================")for k,v in info.items(): print("{}: {}".format(k, v))except: print("For failure.")return
Then create a file about.dat under the bin directory and write some of our information, such as:
{"auther":"Allen Woo","Introduction":"In Linux or MAC using SSH, do not need to enter the IP and password for many times","Home page":"","Download address":"https://github.com/osnoob/osnssh","version":"1.1.0","email":"xiaopingwoo@163.com" }
Now the setup program is like this:
2. Automatically log in to the remote server program: Create a py file in bin called auto_ssh.py:
Note: Here we need to install a package called: pexpect, user terminal interaction, capture interaction information to automatically enter passwords.
Install pexpect:
pip install pexpect
Then start writing code:
#!/usr/bin/env python#-*-coding:utf-8-*-import os, sys, base64import pexpect path = os.path.dirname(os.path.abspath(sys.argv[0]))def choose():# 打开我们的数据文件 of = open("{}/data/information.d".format(path)) hosts = of.readlines() hosts_temp = []for h in hosts:if h.strip(): hosts_temp.append(h) hosts = hosts_temp[:] l = len(hosts)if l <= 0: os.system("clear") print("[Warning]Please add the host server")returnwhile 1: print("=================SSH===================") print("+{}+".format("-"*40)) print("| Alias UserName@IP:PORT")for i in range(0, l): v_list = hosts[i].strip().split(" ") print("+{}+".format("-"*40)) print("| {} | {} {}@{}:{}".format(i+1, v_list[4], v_list[0], v_list[1], v_list[2])) print("+{}+".format("-"*40)) c = raw_input("[SSH]Choose the number or alias('#q' exit):") is_alias = False is_y = Falsetry: c = int(c)if c > l or c < 1: os.system("clear") print("[Warning]:There is no")continue l_list = hosts[c-1].split(" ") name = l_list[0] host = l_list[1] port = l_list[2] password = l_list[3] is_y = Trueexcept: is_alias = Trueif is_alias:if c.strip() == "#q": os.system("clear")returnfor h in hosts:if c.strip() == h.split(" ")[4].strip(): l_list = h.split(" ") name = l_list[0] host = l_list[1] port = l_list[2] password = l_list[3] is_y = Trueif not is_y:continue# ssh# 将加密保存的密码解密 password = base64.decodestring(password) print("In the connection...")# 准备远程连接,拼接ip:port print("{}@{}".format(name, host))if port == "22": connection("ssh {}@{}".format(name, host), password)else: connection("ssh {}@{}:{}".format(name, host, port), password)def connection(cmd, pwd):''' 连接远程服务器 :param cmd: :param pwd: :return: ''' child = pexpect.spawn(cmd) i = child.expect([".*password.*", ".*continue.*?", pexpect.EOF, pexpect.TIMEOUT])if( i == 0 ):# 如果交互中出现.*password.*,就是叫我们输入密码# 我们就把密码自动填入下去 child.sendline("{}\n".format(pwd)) child.interact()elif( i == 1):# 如果交互提示是否继续,一般第一次连接时会出现# 这个时候我们发送"yes",然后再自动输入密码 child.sendline("yes\n") child.sendline("{}\n".format(pwd))#child.interact() else:# 连接失败 print("[Error]The connection fails")
Okay, now we only need to start the file, which is the first menu after opening the program
3 .Create an osnssh.py file in the osnssh directory:
#!/usr/bin/env python#-*-coding:utf-8-*-import os, sys sys.path.append("../")from bin import setting, auto_ssh path = os.path.dirname(os.path.abspath(sys.argv[0]))''' 方便在LINUX终端使用ssh,保存使用的IP:PORT , PASSWORD 自动登录 __author__ = 'allen woo' '''def main():while 1: print("==============OSNSSH [Menu]=============") print("1.Connection between a host\n2.Add host\n3.Remove host\n4.About\n[Help]: q:quit clear:clear screen") print("="*40) c = raw_input("Please select a:")if c == 1 or c == "1": auto_ssh.choose()if c == 2 or c == "2": setting.add_host_main()if c == 3 or c == "3": setting.remove_host()if c == 4 or c == "4": setting.about()elif c == "clear": os.system("clear")elif c == "q" or c == "Q" or c == "quit": print("Bye") sys.exit()else: print("\n")if __name__ == '__main__':try: of = open("{}/data/information.d".format(path))except: of = open("{}/data/information.d".format(path), "w") of.close() main()
Finally finished writing, we can give it a try:
$python osnssh.py
The specific demonstration is that I put a GIF at the beginning of the article Animation picture source code group
If you encounter any problems during the learning process or want to obtain learning resources, welcome to join the learning exchange group
626062078, let’s learn Python together!
The above is the detailed content of Share an example of using Python to write an automatic SSH login to a remote server. For more information, please follow other related articles on the PHP Chinese website!

Python and C each have their own advantages, and the choice should be based on project requirements. 1) Python is suitable for rapid development and data processing due to its concise syntax and dynamic typing. 2)C is suitable for high performance and system programming due to its static typing and manual memory management.

Choosing Python or C depends on project requirements: 1) If you need rapid development, data processing and prototype design, choose Python; 2) If you need high performance, low latency and close hardware control, choose C.

By investing 2 hours of Python learning every day, you can effectively improve your programming skills. 1. Learn new knowledge: read documents or watch tutorials. 2. Practice: Write code and complete exercises. 3. Review: Consolidate the content you have learned. 4. Project practice: Apply what you have learned in actual projects. Such a structured learning plan can help you systematically master Python and achieve career goals.

Methods to learn Python efficiently within two hours include: 1. Review the basic knowledge and ensure that you are familiar with Python installation and basic syntax; 2. Understand the core concepts of Python, such as variables, lists, functions, etc.; 3. Master basic and advanced usage by using examples; 4. Learn common errors and debugging techniques; 5. Apply performance optimization and best practices, such as using list comprehensions and following the PEP8 style guide.

Python is suitable for beginners and data science, and C is suitable for system programming and game development. 1. Python is simple and easy to use, suitable for data science and web development. 2.C provides high performance and control, suitable for game development and system programming. The choice should be based on project needs and personal interests.

Python is more suitable for data science and rapid development, while C is more suitable for high performance and system programming. 1. Python syntax is concise and easy to learn, suitable for data processing and scientific computing. 2.C has complex syntax but excellent performance and is often used in game development and system programming.

It is feasible to invest two hours a day to learn Python. 1. Learn new knowledge: Learn new concepts in one hour, such as lists and dictionaries. 2. Practice and exercises: Use one hour to perform programming exercises, such as writing small programs. Through reasonable planning and perseverance, you can master the core concepts of Python in a short time.

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version
Useful JavaScript development tools