您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)使用python怎么檢測(cè)主機(jī)的連通性,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
Python是一種跨平臺(tái)的、具有解釋性、編譯性、互動(dòng)性和面向?qū)ο蟮哪_本語言,其最初的設(shè)計(jì)是用于編寫自動(dòng)化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發(fā)獨(dú)立的項(xiàng)目和大型項(xiàng)目。
目錄結(jié)構(gòu)
ping_test/ ├── bin │ ├── ping.py │ ├── ping_run.sh.origin │ └── ping.sh ├── conf │ └── ip.lst ├── logs │ ├── 10.10.37.196_2017-06-28_ping.log │ └── 10.10.62.229_2017-06-28_ping.log └── README.md
代碼
cat bin/ping.py
#!/usr/bin/env python #-*- coding: utf-8 from subprocess import Popen, PIPE import shlex import time import datetime import sys, os basedir = os.path.dirname( os.path.dirname( os.path.abspath(__file__) ) ) cnf = os.path.join( basedir, 'conf', 'ip.lst' ) # print cnf while True: today = datetime.datetime.strftime( datetime.datetime.now(), "%Y-%m-%d" ) with open(cnf) as f: for host in f: host = host.strip() cmd = 'sh ping.sh %s' % host args = shlex.split(cmd) p = Popen(args, stdout=PIPE, stderr=PIPE) stdout, stderr = p.communicate() filename = host + '_%s_ping.log' % today logfile = os.path.join(basedir, 'logs', filename) # print logfile if stdout: with open(logfile, 'ab') as fd: fd.write( stdout ) fd.flush() elif stderr: print('ping lost') time.sleep(1)
cat ping.sh
#!/bin/bash HOST=$1 ping -c 1 ${HOST} | grep 'bytes from' | awk '{print $0"\t" strftime("%T %F", systime())}'
以上就是使用python怎么檢測(cè)主機(jī)的連通性,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。