当前位置:   article > 正文

Python_4-远程连接Linux

Python_4-远程连接Linux

使用Python通过SSH自动化Linux主机管理

系统管理与自动化运维中,SSH(Secure Shell)是一个常用的协议,用于安全地访问远程计算机。Python提供了一个名为paramiko的库,它使得通过SSH进行远程操作变得简单。本文将展示如何使用paramiko库实现远程Linux主机的命令执行和文件上传。

实现python编写代码远程登录linux主机,执行一条命令ls
实现python编写代码远程给linux主机上传一个文件

代码

import paramiko


def ssh_connect_and_execute_command(host, username, password, command):
    """
    连接到SSH服务器并执行命令。

    参数:
    - host: 远程主机的IP地址
    - username: SSH登录用户名
    - password: SSH登录密码
    - command: 要执行的命令

    返回:
    - 命令的输出结果
    """
    # 创建 SSH 客户端并连接
    client = paramiko.SSHClient()
    client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    client.connect(hostname=host, username=username, password=password)

    # 执行命令
    stdin, stdout, stderr = client.exec_command(command)

    # 获取命令输出和错误信息
    output = stdout.read().decode()
    error = stderr.read().decode()

    # 打印输出和错误信息
    print(output)
    if error:
        print(f"Error: {error}")

    # 关闭连接
    client.close()

    return output


def ssh_connect_and_upload_file(host, username, password, local_path, remote_path):
    """
    连接到SSH服务器并上传文件。

    参数:
    - local_path: 本地文件的路径
    - remote_path: 远程文件的目标路径
    """
    # 创建 SSH 客户端并连接
    client = paramiko.SSHClient()
    client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    client.connect(hostname=host, username=username, password=password)

    # 上传文件
    sftp = client.open_sftp()
    sftp.put(local_path, remote_path)

    # 关闭SFTP会话
    sftp.close()

    # 关闭SSH连接
    client.close()


# 使用示例
if __name__ == "__main__":
    # Linux 主机信息
    host = "192.168.204.133"
    username = "luruijie"
    password = "********"

    # 执行命令
    command = "ls"
    print("Executing command:", command)
    output = ssh_connect_and_execute_command(host, username, password, command)
    print("Command output:", output)

    # 上传文件
    local_path = "test_remote.txt"
    remote_path = "/home/luruijie/文档/test_remote.txt"
    print("Uploading file from", local_path, "to", remote_path)
    ssh_connect_and_upload_file(host, username, password, local_path, remote_path)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82

执行ls结果:

执行结果
Linux终端中验证
结果比对

文件传输:

传输文件


安全注意事项

  • 出于安全考虑,不建议在脚本中硬编码密码。考虑使用环境变量或配置文件来存储敏感信息。
  • 使用密钥认证代替密码认证可以提高安全性。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/603389
推荐阅读
相关标签
  

闽ICP备14008679号