Skip to content

Instantly share code, notes, and snippets.

@shawwwn
Last active March 31, 2024 18:12
Show Gist options
  • Star 57 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save shawwwn/91cc8979e33e82af6d99ec34c38195fb to your computer and use it in GitHub Desktop.
Save shawwwn/91cc8979e33e82af6d99ec34c38195fb to your computer and use it in GitHub Desktop.
µPing: Ping library for MicroPython
# µPing (MicroPing) for MicroPython
# copyright (c) 2018 Shawwwn <shawwwn1@gmail.com>
# License: MIT
# Internet Checksum Algorithm
# Author: Olav Morken
# https://github.com/olavmrk/python-ping/blob/master/ping.py
# @data: bytes
def checksum(data):
if len(data) & 0x1: # Odd number of bytes
data += b'\0'
cs = 0
for pos in range(0, len(data), 2):
b1 = data[pos]
b2 = data[pos + 1]
cs += (b1 << 8) + b2
while cs >= 0x10000:
cs = (cs & 0xffff) + (cs >> 16)
cs = ~cs & 0xffff
return cs
def ping(host, count=4, timeout=5000, interval=10, quiet=False, size=64):
import utime
import uselect
import uctypes
import usocket
import ustruct
import urandom
# prepare packet
assert size >= 16, "pkt size too small"
pkt = b'Q'*size
pkt_desc = {
"type": uctypes.UINT8 | 0,
"code": uctypes.UINT8 | 1,
"checksum": uctypes.UINT16 | 2,
"id": uctypes.UINT16 | 4,
"seq": uctypes.INT16 | 6,
"timestamp": uctypes.UINT64 | 8,
} # packet header descriptor
h = uctypes.struct(uctypes.addressof(pkt), pkt_desc, uctypes.BIG_ENDIAN)
h.type = 8 # ICMP_ECHO_REQUEST
h.code = 0
h.checksum = 0
h.id = urandom.getrandbits(16)
h.seq = 1
# init socket
sock = usocket.socket(usocket.AF_INET, usocket.SOCK_RAW, 1)
sock.setblocking(0)
sock.settimeout(timeout/1000)
addr = usocket.getaddrinfo(host, 1)[0][-1][0] # ip address
sock.connect((addr, 1))
not quiet and print("PING %s (%s): %u data bytes" % (host, addr, len(pkt)))
seqs = list(range(1, count+1)) # [1,2,...,count]
c = 1
t = 0
n_trans = 0
n_recv = 0
finish = False
while t < timeout:
if t==interval and c<=count:
# send packet
h.checksum = 0
h.seq = c
h.timestamp = utime.ticks_us()
h.checksum = checksum(pkt)
if sock.send(pkt) == size:
n_trans += 1
t = 0 # reset timeout
else:
seqs.remove(c)
c += 1
# recv packet
while 1:
socks, _, _ = uselect.select([sock], [], [], 0)
if socks:
resp = socks[0].recv(4096)
resp_mv = memoryview(resp)
h2 = uctypes.struct(uctypes.addressof(resp_mv[20:]), pkt_desc, uctypes.BIG_ENDIAN)
# TODO: validate checksum (optional)
seq = h2.seq
if h2.type==0 and h2.id==h.id and (seq in seqs): # 0: ICMP_ECHO_REPLY
t_elasped = (utime.ticks_us()-h2.timestamp) / 1000
ttl = ustruct.unpack('!B', resp_mv[8:9])[0] # time-to-live
n_recv += 1
not quiet and print("%u bytes from %s: icmp_seq=%u, ttl=%u, time=%f ms" % (len(resp), addr, seq, ttl, t_elasped))
seqs.remove(seq)
if len(seqs) == 0:
finish = True
break
else:
break
if finish:
break
utime.sleep_ms(1)
t += 1
# close
sock.close()
ret = (n_trans, n_recv)
not quiet and print("%u packets transmitted, %u packets received" % (n_trans, n_recv))
return (n_trans, n_recv)
@DhrubojyotiDey
Copy link

Definately works! Just have a question though!
As in windows there is a command "ping (ip_address) -t" to ping continuously, is there any similar code in micropython?

@mdrisser
Copy link

On line 45,
h.id = urandom.randomint(0, 65355)
no longer works, changed line 45 to
h.id = urandom.getrandbits(16)
and everything is working again

@cybermonk00
Copy link

Traceback (most recent call last):
File "", line 1, in
File "uping.py", line 45, in ping
AttributeError: 'module' object has no attribute 'randint'

How to solve this issue? Please Help

@Enkumicahel
Copy link

Hello,
Thank you for this great work. It's really helpful. But, I'm getting 4 packets transmitted, 0 packets received while using IP and OSError: -202 when using google.com domain.
Please help!

@jbonadiman
Copy link

Awesome lib, worked flawlessly!

@Enkumicahel, make sure you're connected to the internet 😊

@gaodianzhuo
Copy link

Awesome!!

@Maumtrasna
Copy link

This small utility DOES have a problem.

In some cases (e.g. when using the ESP8266 port) you MUST change line 45 ( h.id = urandom.getrandint(0,65535) to
h.id = urandom.getrandbits(16)
just like mdrisser wrote above. It works the same way after the change but the correction is much more compatible, I believe. This module, like many others, seems to have been just left here without updates.

@IhorNehrutsa
Copy link

    sock.setblocking(0)
    sock.settimeout(timeout/1000)

settimeout() always overrides setblocking(0).
Is this normal?

@JkDcubeai
Copy link

uping not working with W5500 WizNet5k_Socket

@mcl-uk
Copy link

mcl-uk commented Feb 10, 2024

Great code, nice work. Works perfectly on ESP32 WROOM, thanks for sharing,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment