|
| 1 | +#!/usr/bin/python |
| 2 | + |
| 3 | +import socket |
| 4 | +import time |
| 5 | +import uuid |
| 6 | +import csv |
| 7 | +import io |
| 8 | +import os |
| 9 | +import subprocess |
| 10 | +from subprocess import Popen, PIPE |
| 11 | +from header import printHeader |
| 12 | +import re |
| 13 | + |
| 14 | +# ip = "codeserverbwn.duckdns.org" |
| 15 | +port = 4059 |
| 16 | +retry = 1 |
| 17 | +delay = 0.05 |
| 18 | +timeout = 1 |
| 19 | + |
| 20 | +data = list() |
| 21 | +tailingFilename = str(uuid.uuid4()) |
| 22 | + |
| 23 | +folder_name = 'output' |
| 24 | +# Create the folder, skip if exists |
| 25 | +if not os.path.exists(folder_name): |
| 26 | + os.makedirs(folder_name) |
| 27 | + |
| 28 | + |
| 29 | +def isOpen(ip, port): |
| 30 | + s = socket.socket(socket.AF_INET6, socket.SOCK_STREAM) |
| 31 | + s.settimeout(timeout) |
| 32 | + try: |
| 33 | + s.connect((ip, int(port), 0, 0)) |
| 34 | + s.shutdown(socket.SHUT_RDWR) |
| 35 | + return True |
| 36 | + except: |
| 37 | + return False |
| 38 | + finally: |
| 39 | + s.close() |
| 40 | + |
| 41 | + |
| 42 | +pingcount = raw_input("ENTER PACKET COUNTS: ") |
| 43 | +telnetretry = int(raw_input("ENTER TELNET RETRIES: ")) |
| 44 | + |
| 45 | + |
| 46 | +def pingStatistics(ip): |
| 47 | + print " > GETTING STATISTICS FOR [ ", ip, " ]" |
| 48 | + |
| 49 | + try: |
| 50 | + command = "ping6 -W 1 -c "+pingcount+" "+ip |
| 51 | + process = Popen(command, stdout=PIPE, stderr=None, shell=True) |
| 52 | + output = process.communicate()[0] |
| 53 | + |
| 54 | + regex = r"rtt min\/avg\/max\/mdev = ([.0-9]+)\/([.0-9]+)\/([.0-9]+)\/(.*)$" |
| 55 | + regex_per_loss = r"(\d+%)" |
| 56 | + stats = list() |
| 57 | + # min, avg, max, mdev |
| 58 | + for block in re.findall(regex, output, re.S): |
| 59 | + stats.append(block[0]) |
| 60 | + stats.append(block[1]) |
| 61 | + stats.append(block[2]) |
| 62 | + stats.append(block[3].strip('\n')) |
| 63 | + stats.append(re.search(regex_per_loss, output).group(1)) |
| 64 | + print " > STATISTICS FOR [ ", ip, " ] ==> ", stats |
| 65 | + return stats |
| 66 | + |
| 67 | + except: |
| 68 | + print(' > STATISTCS_FAILURE') |
| 69 | + |
| 70 | + |
| 71 | +def pingSuccess(ip): |
| 72 | + hostname = ip |
| 73 | + # -i for duration, -c for packet count |
| 74 | + response = os.system("ping6 -W 1 -c " + pingcount+" " + hostname) |
| 75 | + if response == 0: |
| 76 | + return 0 |
| 77 | + else: |
| 78 | + return -1 |
| 79 | + |
| 80 | + |
| 81 | +def checkHost(ip, port): |
| 82 | + lst = list() |
| 83 | + ipup = False |
| 84 | + ping = True |
| 85 | + |
| 86 | + if pingSuccess(ip) == 0: |
| 87 | + for i in range(retry): |
| 88 | + print('=> ping success') |
| 89 | + |
| 90 | + for x in range(1, telnetretry+1): |
| 91 | + telnetStatus = isOpen(ip, port) |
| 92 | + if x != 1: |
| 93 | + print "[ ! WARN ! Retrying telnet (", x, ")... ]" |
| 94 | + if telnetStatus == True: |
| 95 | + ipup = True |
| 96 | + break |
| 97 | + else: |
| 98 | + time.sleep(delay) |
| 99 | + """ if isOpen(ip, port): |
| 100 | + ipup = True |
| 101 | + break |
| 102 | + else: |
| 103 | + time.sleep(delay) """ |
| 104 | + else: |
| 105 | + ping = ipup = False |
| 106 | + |
| 107 | + if ping == True: |
| 108 | + lst.append("PING SUCCESS") |
| 109 | + else: |
| 110 | + lst.append("PING FAIL") |
| 111 | + if ipup == True: |
| 112 | + lst.append("PORT OPEN") |
| 113 | + else: |
| 114 | + lst.append("PORT CLOSED") |
| 115 | + |
| 116 | + lst.append(pingStatistics(ip)) |
| 117 | + """ lst.append(ping) |
| 118 | + lst.append(ipup) """ |
| 119 | + return lst |
| 120 | + |
| 121 | + |
| 122 | +def readFromCSV(filename): |
| 123 | + with io.open(filename+'.csv', newline='') as f: |
| 124 | + reader = csv.reader(f) |
| 125 | + data.append(list(reader)) |
| 126 | + f.close() |
| 127 | + |
| 128 | + |
| 129 | +def preprocess(s): |
| 130 | + return bytes(s) |
| 131 | + |
| 132 | +# BELOW TWO FUNCTIONS CONVERT THE OUTPUT TXT TO CSV |
| 133 | + |
| 134 | + |
| 135 | +def getFileData(): |
| 136 | + with io.open(os.path.join(folder_name, "Results_"+tailingFilename+".txt"), 'r', newline='') as flhndl: |
| 137 | + return flhndl.readlines() |
| 138 | + |
| 139 | + |
| 140 | +def extractToCSV(listData): |
| 141 | + header = ['HOST IP', 'PING STATUS', 'TELNET STATUS', |
| 142 | + 'MIN', 'MAX', 'AVG', 'LATENCY', 'LOSS %'] |
| 143 | + with io.open(os.path.join(folder_name, "Output_ResultsCSV_"+tailingFilename+".csv"), 'wb') as myfile: |
| 144 | + wr = csv.writer(myfile, quoting=csv.QUOTE_ALL) |
| 145 | + wr.writerow(header) |
| 146 | + for lines in listData: |
| 147 | + temp = str(lines[0:len(lines) - 1]) |
| 148 | + first = temp.split('\t') |
| 149 | + print("{}".format(first)) |
| 150 | + |
| 151 | + wr.writerow(first) |
| 152 | + |
| 153 | + |
| 154 | +filename = raw_input( |
| 155 | + "ENTER THE FILE NAME WITHOUT THE EXTENSION (DEFAULT FORMAT CSV): ") |
| 156 | +print(filename) |
| 157 | +readFromCSV(filename) |
| 158 | +with io.open(os.path.join(folder_name, "Results_"+tailingFilename+".txt"), 'w', newline='') as file: |
| 159 | + for ips in data: |
| 160 | + for index, ips_get in enumerate(ips): |
| 161 | + print "[ ```````````````````````````````````````````` ]" |
| 162 | + print("[ RUN {} ]".format(index+1)) |
| 163 | + get_lst = list() |
| 164 | + get_lst = checkHost(ips_get[0], port) |
| 165 | + file.write( |
| 166 | + unicode(ips_get[0]+"\t" + |
| 167 | + str(get_lst[0])+"\t" + |
| 168 | + str(get_lst[1])+"\t" + |
| 169 | + str(get_lst[2][0])+"\t" + |
| 170 | + str(get_lst[2][1])+"\t" + |
| 171 | + str(get_lst[2][2])+"\t" + |
| 172 | + str(get_lst[2][3])+"\t" + |
| 173 | + str(get_lst[2][4].strip())+"\n")) |
| 174 | + |
| 175 | + print "[ ```````````````````````````````````````````` ]\n\n" |
| 176 | + |
| 177 | + |
| 178 | +printHeader() |
| 179 | +data = getFileData() |
| 180 | +extractToCSV(data) |
0 commit comments