.. _SM_AT_ICMP: ICMP AT commands **************** .. contents:: :local: :depth: 2 This page describes ICMP-related AT commands. ICMP echo request #XPING ======================== The ``#XPING`` command sends an ICMP Echo Request, also known as *Ping*. Set command ----------- The set command allows you to send an ICMP Echo Request. Syntax ~~~~~~ :: AT#XPING=,,[,[,[,]]] * The ```` parameter is a string. It represents the hostname, the IPv4, or the IPv6 address of the target host. * The ```` parameter is an integer. It represents the length of the buffer size. The value range is ``0`` to ``65535``. * The ```` parameter is an integer. It represents the time to wait for each reply, in milliseconds. The value range is ``0`` to ``4294967295``. * The ```` parameter is an integer. It represents the number of echo requests to send. The default value is ``1``. The value range is ``1`` to ``65535``. * The ```` parameter is an integer. It represents the time to wait for sending the next echo request, in milliseconds. The default value is ``1000``. The value range is ``0`` to ``4294967295``. * The ```` parameter is an integer. It represents ``cid`` in the ``+CGDCONT`` command. The default value is ``0``. .. note:: Other sockets cannot use the same PDN connection. See :ref:`SM_AT_SOCKET_RAW_SOCKET_LIMITATION` for more information. Unsolicited notification ~~~~~~~~~~~~~~~~~~~~~~~~ :: #XPING: seconds The ```` parameter is a *float*. It represents the elapsed time, in seconds, between the echo requests and the echo replies. Example ~~~~~~~ :: AT#XPING="5.189.130.26",45,5000,5,1000 OK #XPING: 0.386 seconds #XPING: 0.341 seconds #XPING: 0.353 seconds #XPING: 0.313 seconds #XPING: 0.313 seconds #XPING: average 0.341 seconds AT#XGETADDRINFO="ipv6.google.com" #XGETADDRINFO: "2404:6800:4006:80e::200e" OK AT#XPING="ipv6.google.com",45,5000,5,1000 OK #XPING: 0.286 seconds #XPING: 0.077 seconds #XPING: 0.110 seconds #XPING: 0.037 seconds #XPING: 0.106 seconds #XPING: average 0.123 seconds AT#XPING="5.189.130.26",45,5000,5,1000,1 OK #XPING: 1.612 seconds #XPING: 0.349 seconds #XPING: 0.334 seconds #XPING: 0.278 seconds #XPING: 0.278 seconds #XPING: average 0.570 seconds Read command ------------ The read command is not supported. Test command ------------ The test command is not supported.