Skip to content

Commit 510bdfd

Browse files
committed
Stable prod commit
0 parents  commit 510bdfd

7 files changed

+435
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 4
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = false
12+
insert_final_newline = false

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.py[co]
2+
*~
3+
*.egg-info
4+
/dist
5+
/build
6+
.pydevproject
7+
/.settings
8+
*.nja
9+
output/

.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>python-ping</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.python.pydev.PyDevBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.python.pydev.pythonNature</nature>
16+
</natures>
17+
</projectDescription>

code.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/env python
2+
3+
from ping import Ping, PingStats
4+
5+
host = 'fc00:0011:0050:2947:0000:0000:0000:0001'
6+
p = Ping(host, timeout=3000, quiet=False, silent=False, ipv6=True)
7+
try:
8+
stats = p.run(4) # PingStats
9+
print(PingStats.packets_sent)
10+
print(PingStats.packets_received)
11+
print("AVG: ", stats.average_time)
12+
print("MAX: ", stats.max_time)
13+
print("MIN: ", stats.min_time)
14+
except:
15+
print("AVG: ", 0)
16+
print("MAX: ", 0)
17+
print("MIN: ", 0)
18+
19+
# class PingStats:
20+
# destination_ip
21+
# destination_host
22+
# destination_port
23+
# packets_sent
24+
# packets_received
25+
# lost_rate
26+
# min_time
27+
# max_time
28+
# total_time
29+
# average_time

header.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# import call method from subprocess module
2+
from subprocess import call
3+
import os
4+
5+
6+
def clear():
7+
# check and make call for specific operating system
8+
_ = call('clear' if os.name == 'posix' else 'cls')
9+
10+
11+
def printHeader():
12+
print """
13+
Welcome to,
14+
15+
/$$$$$$$ /$$ /$$ /$$$$$$$ /$$
16+
| $$__ $$ | $$ | $$ | $$__ $$|__/
17+
| $$ \ $$/$$ /$$ /$$$$$$ | $$$$$$$ /$$$$$$ /$$$$$$$ | $$ \ $$ /$$ /$$$$$$$ /$$$$$$
18+
| $$$$$$$/ $$ | $$|_ $$_/ | $$__ $$ /$$__ $$| $$__ $$ | $$$$$$$/| $$| $$__ $$ /$$__ $$
19+
| $$____/| $$ | $$ | $$ | $$ \ $$| $$ \ $$| $$ \ $$ | $$____/ | $$| $$ \ $$| $$ \ $$
20+
| $$ | $$ | $$ | $$ /$$| $$ | $$| $$ | $$| $$ | $$ | $$ | $$| $$ | $$| $$ | $$
21+
| $$ | $$$$$$$ | $$$$/| $$ | $$| $$$$$$/| $$ | $$ | $$ | $$| $$ | $$| $$$$$$$
22+
|__/ \____ $$ \___/ |__/ |__/ \______/ |__/ |__/ |__/ |__/|__/ |__/ \____ $$
23+
/$$ | $$ /$$ \ $$
24+
| $$$$$$/ | $$$$$$/
25+
\______/ \______/
26+
27+
by © Ankur Paul (https://github.com/nooobcoder/PythonPingTelnetStatus)
28+
29+
[PLEASE SPONSOR THIS PROJECT HERE]
30+
31+
You are not allowed to redistribute, duplicate, modify this source code without the author's permission. Will be seriously dealt with if not acknowledged.
32+
33+
Thank You!
34+
"""
35+
36+
37+
clear()
38+
printHeader()

python2port.py

+180
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
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

Comments
 (0)