Checking the data connection after a successful network attachment can help debug issues with connectivity.
Performing a ping test with your modem is a good way to test connectivity. However, there is no uniform ping test AT command.
In this guide, we’ll go through how to ping Google’s primary DNS server (the server with the IP 8.8.8.8) with these modems:
In this guide, we use our Traffic Monitor insight tool to analyze traffic. You can alternatively use Wireshark, for example.
If you are in the process of testing connectivity, it’s highly recommended that you read through this article first before testing connectivity by sending data: How do I test connectivity with AT commands?
Warning: This article requires knowledge of connecting to your device’s cellular module/modem.
Table of Contents
The overall structure and standard result
The overall structure for pinging 8.8.8.8 with all modems is:
- Set the APN
- Attach to the network
- Establish a data connection
- Ping 8.8.8.8
You will most likely be able to use the same approach for each of the manufacturers’ other modems, but there might be slight variations, so please consult the documentation, your supplier, or the manufacturer themselves if the sequences below do not work.
No matter which modem you are using, the result should be the following in the Traffic Monitor:

Quectel’s BG96
1. Set the APN
Issue AT+CGDCONT=1,”IP”,”operator”, this defines the PDP context.
AT+CGDCONT=1,"IP","onomondo"
OK
2.Attach to the network
Check the connection with AT+COPS?.
AT+COPS?
+COPS: 0,0,”T-Mobile USA”,7
OK
The modem might already have connected when it was booted up, if this isn’t the case, then do the following:
- Issue AT+COPS=0, this will make the modem automatically choose a network.
- Wait for AT+CEREG? or AT+CGREG? to return x,5, where x doesn’t matter.
3. Establish a data connection
Issue AT+QIACT=1,1 which activates the PDP context
4. Ping 8.8.8.8
Issue AT+QPING=1,”8.8.8.8″,5,5,
This pings 8.8.8.8 five times with a timeout of five seconds.
SIMCom’s SIM7070G
1. Set the APN
Issue AT+CGDCONT=1,”IP”,”operator”, this defines the PDP context.
AT+CGDCONT=1,"IP","onomondo"
OK
2. Attach to the network
Check the connection with AT+COPS?.
AT+COPS?
+COPS: 0,0,”T-Mobile USA”,7
OK
The modem might already have connected when it was booted up, if this isn’t the case, then do the following:
- Issue AT+COPS=0, this will make the modem automatically choose a network
- Wait for AT+CEREG? or AT+CGREG? to return x,5, where x doesn’t matter
3. Establish a data connection
Issue AT+CNACT=0,1 which activates the PDP context
4. Ping 8.8.8.8
Select PDP context ID for pinging AT+SNPDPID=0
Issue AT+SNPING4=”8.8.8.8″,5,16,5000, this pings 8.8.8.8 five times with a timeout of five seconds.
Thales’ PLS62-W
1. Set the APN
Issue AT+CGDCONT=1,”IP”,”operator”, this defines the PDP context.
AT+CGDCONT=1,"IP","onomondo"
OK
2. Attach to the network
Check the connection with AT+COPS?.
AT+COPS?
+COPS: 0,0,”T-Mobile USA”,7
OK
The modem might already have connected when it was booted up, if this isn’t the case, then do the following:
- Issue AT+COPS=0, this will make the modem automatically choose a network
- Wait for AT+CEREG? or AT+CGREG? to return x,5, where x doesn’t matter
3. Establish a data connection
Issue AT^SICA=1,1 which activates the PDP context
Get the IP of your device with AT+CGPADDR=1, this is not optional
4. Ping 8.8.8.8
Issue AT^SISX=Ping,1,”8.8.8.8″,5,5000, this pings 8.8.8.8 five times with a timeout of five seconds.
Telit’s LE910C1
1. Set the APN
Issue AT+CGDCONT=1,”IP”,”operator”, this defines the PDP context.
AT+CGDCONT=1,"IP","onomondo"
OK
2. Attach to the network
Check the connection with AT+COPS?.
AT+COPS?
+COPS: 0,0,”T-Mobile USA”,7
OK
The modem might already have connected when it was booted up, if this isn’t the case, then do the following:
- Issue AT+COPS=0, this will make the modem automatically choose a network
- Wait for AT+CEREG? or AT+CGREG? to return x,5, where x doesn’t matter
3. Establish a data connection
Issue AT#SGACT=1,1 which activates the PDP context
4. Ping 8.8.8.8
Issue AT#PING=”8.8.8.8″,5, this pings 8.8.8.8 five times with a timeout of five seconds