python ping 명령 애플 릿 구현
저 희 는 python 을 사용 하여 scapy 를 통 해 프로그램 을 작성 합 니 다.
from scapy.all import *
import time,struct,random
# ping 。
def ping_one(dst = '36.152.44.95',ttl_no = 64,id_no = 345,seq_no = 5):
start_time = time.time()
# 。
time_to_bytes = struct.pack('>d',start_time)
# ICMP , , 。
ping_one_result = sr1(IP(dst = dst,ttl = ttl_no)/ICMP(seq = seq_no,id = id_no)/time_to_bytes, timeout = 1, verbose=False)
# print(ping_one_result.show())
# ICMP , 。
try:
if ping_one_result.getlayer('ICMP').type == 0 and ping_one_result.getlayer('ICMP').seq == seq_no:
# print(' ')
# IP IP , ping IP 。
reply_src_IP = ping_one_result.getlayer('IP').src
# 。
reply_icmp_seq = ping_one_result.getlayer('ICMP').seq
# ttl
reply_icmp_ttl = ping_one_result.getlayer('IP').ttl
# (Raw) + (Padding) + 8 (ICMP )
if ping_one_result.getlayer(Raw) != None:
Raw_length = len(ping_one_result.getlayer(Raw).load)
else:
Raw_length = 0
if ping_one_result.getlayer(Padding) != None:
Padding_length = len(ping_one_result.getlayer(Padding).load)
else:
Padding_length = 0
# 。
reply_data_length = Raw_length + Padding_length + 8
# , ICMP 。
reply_data = ping_one_result.getlayer(Raw).load
# 。
end_time = time.time()
# 。
reply_data_time = struct.unpack('>d',reply_data)
# 。
# print(type(reply_data_time))
# print(reply_data_time)
time_to_pass_ms = (end_time - reply_data_time[0]) * 1000
# ( - ) * 1000
# print(time_to_pass_ms)
return reply_data_length,reply_src_IP,reply_icmp_seq,reply_icmp_ttl,time_to_pass_ms
except Exception as e:
# 。
# print('e', e)
# NoneType 。
if re.match('.*NoneType.*', str(e)):
print(' ')
# , None
return None
def ping(dst = '36.152.44.95'):
# , 。
id_no = random.randint(0,65535)
# print(id_no)
# 5 。
for i in range(1,6):
# ping , ping IP 。ttl,id, 。seq。
ping_result = ping_one(dst,64,id_no,i)
if ping_result != None:
print('%d bytes from %s: icmp_seq=%d ttl=%d time=%4.2f ms' % (ping_result[0], ping_result[1], ping_result[2], ping_result[3], ping_result[4]))
else:
print('.',end = '',flush = True)
# 。
time.sleep(1)
if __name__ == "__main__":
ping('36.152.44.95')
그러나 지금까지 우리 의 ping 애플 릿 은 python 으로 이 루어 졌 습 니 다.그 다음 에 wireshark 도구 로 가방 을 잡 아 보고 ping 百 度 의 주 소 를 진행 할 수 있 습 니 다.이상 은 python 이 ping 명령 애플 릿 을 실현 하 는 상세 한 내용 입 니 다.python ping 명령 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.