远程服务器批量管理员权限,110-并行批量管理远程服务器

脚本名为remote_comm.py,执行方式如下:

python3 remote_comm.py 服务器IP地址文件 "在远程服务器上要执行的命令"

如:

# python3 remote_comm.py serverips.txt "useradd zhangsan"

远程服务器的密码以交互方式获得

import sys

import getpass

import paramiko

import threading

import os

def remote_comm(host, pwd, command):

ssh = paramiko.SSHClient()

ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect(hostname=host, username='root', password=pwd)

stdin, stdout, stderr = ssh.exec_command(command)

out = stdout.read()

error = stderr.read()

if out:

print('[%s] OUT:\n%s' % (host, out.decode('utf8')))

if error:

print('[%s] ERROR:\n%s' % (host, error.decode('utf8')))

ssh.close()

if __name__ == '__main__':

if len(sys.argv) != 3:

print('Usage: %s ipaddr_file "command"' % sys.argv[0])

exit(1)

if not os.path.isfile(sys.argv[1]):

print('No such file:', sys.argv[1])

exit(2)

fname = sys.argv[1]

command = sys.argv[2]

pwd = getpass.getpass()

with open(fname) as fobj:

ips = [line.strip() for line in fobj]

for ip in ips:

t = threading.Thread(target=remote_comm, args=(ip, pwd, command))

t.start()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值