Testing scenarios¶
The following testing scenarios give detailed instructions for testing specific use cases. They list the required AT commands and the expected responses.
Some scenarios are generic and should work out of the box, while others require you to set up a server that you can test against.
See Building and running for instructions on how to build and run the Serial LTE modem application. Testing describes how to turn on the modem and conduct the tests.
Generic AT commands¶
Complete the following steps to test the functionality provided by the Generic AT commands:
Retrieve the version of the serial LTE modem application.
AT#XSLMVER #XSLMVER: "1.5" OK
Read the current baud rate.
AT#XSLMUART? #XSLMUART: 115200 OK
You can change the used baud rate with the corresponding set command, but note that LTE Link Monitor requires 115200 bps for communication.
Retrieve a list of all supported proprietary AT commands.
AT#XCLAC AT#XSLMVER AT#XSLEEP AT#XCLAC AT#XSOCKET AT#XSOCKETOPT AT#XBIND [...] OK
Check the supported values for the sleep command, then put the kit in sleep mode.
AT#XSLEEP=? #XSLEEP: (0,1,2) OK
AT#XSLEEP
puts the kit in idle mode, and you can wake up by GPIO.Alternatively, you can use different modes for #XSLEEP:
AT#XSLEEP=1
puts the kit in sleep mode. If you are testing withCONFIG_SLM_GPIO_WAKEUP
enabled, you can wake up by GPIO.AT#XSLEEP=2
powers off UART. You can power on UART by GPIO.
TCP/IP AT commands¶
The following sections show how to test the functionality provided by the TCP and UDP AT commands.
TCP client¶
Establish and test a TCP connection:
Check the available values for the XSOCKET command.
AT#XSOCKET=? #XSOCKET: (0,1),(1,2),(0,1),<sec-tag> OK
Open a TCP socket, read information (handle, protocol, and role) about the open socket, and set the receive timeout of the open socket to 30 seconds.
AT#XSOCKET=1,1,0 #XSOCKET: 1,1,0,6 OK AT#XSOCKET? #XSOCKET: 1,6,0 OK AT#XSOCKETOPT=1,20,30 OK
Connect to a TCP server on a specified port. Replace example.com with the host name or IPv4 address of a TCP server and 1234 with the corresponding port. Then read the connection status.
1
indicates that the connection is established.AT#XCONNECT="example.com",1234 #XCONNECT: 1 OK AT#XCONNECT? #XCONNECT: 1 OK
Send plain text data to the TCP server and retrieve the returned data.
AT#XSEND=1,"Test TCP" #XSEND: 8 OK AT#XRECV PONG: b'Test TCP' #XRECV: 1,17 OK
Send hexadecimal data to the TCP server and retrieve the returned data.
AT#XSEND=0,"DEADBEEF" #XSEND: 4 OK AT#XRECV PONG: b'\xde\xad\xbe\xef' #XRECV: 1,25 OK
Close the socket and confirm its state.
AT#XSOCKET=0 #XSOCKET: 0,"closed" OK AT#XSOCKET? #XSOCKET: 0 OK
If you do not have a TCP server to test with, you can use TCP commands to request and receive a response from an HTTP server, for example, www.google.com:
Open a TCP socket and connect to the HTTP server on port 80.
AT#XSOCKET=1,1,0 #XSOCKET: 1,1,0,6 OK AT#XCONNECT="google.com",80 #XCONNECT: 1 OK
Send an HTTP request to the server.
AT#XSEND=1,"HEAD / HTTP/1.1" #XSEND: 15 OK AT#XSEND=0,"0D0A" #XSEND: 2 OK AT#XSEND=1,"Host: www.google.com:443" #XSEND: 24 OK AT#XSEND=0,"0D0A" #XSEND: 2 OK AT#XSEND=1,"Connection: close" #XSEND: 17 OK AT#XSEND=0,"0D0A0D0A" #XSEND: 4 OK
Receive the response from the server.
AT#XRECV HTTP/1.1 200 OK Content-Type: text/html; charset=ISO-8859-1 [...] #XRECV: 1,576 OK AT#XRECV [...] Connection: close #XRECV: 1,147 OK
Close the socket.
AT#XSOCKET=0 #XSOCKET: 0,"closed" OK
Test a TCP client with TCP proxy service:
Check the available values for the XTCPCLI command.
AT#XTCPCLI=? #XTCPCLI: (0,1,2),<url>,<port>,<sec_tag> OK
Create a TCP/TLS client and connect to a server. Replace example.com with the host name or IPv4 address of a TCP server and 1234 with the corresponding port. Then read information about the connection.
AT#XTCPCLI=1,"example.com",1234 #XTCPCLI: 2,"connected" OK AT#XTCPCLI? #XTCPCLI: 1,0 OK
Send plain text data to the TCP server and retrieve ten bytes of the returned data.
AT#XTCPSEND=1,"Test TCP" #XTCPSEND: 8 OK AT#XTCPRECV=10 PONG: b'Te #XTCPRECV: 10 OK
Send hexadecimal data to the TCP server and retrieve the returned data.
AT#XTCPSEND=0,"DEADBEEF" #XTCPSEND: 4 OK AT#XTCPRECV PONG: b'\xde\xad\xbe\xef' #XTCPRECV: 25 OK
Disconnect and confirm the status of the connection.
-1
indicates that no connection is open.AT#XTCPCLI=0 OK AT#XTCPCLI? #XTCPCLI: -1 OK
Test a TCP client with TCP proxy service in data mode:
Create a TCP/TLS client and connect to a server with data mode support. Replace example.com with the host name or IPv4 address of a TCP server and 1234 with the corresponding port. Then read information about the connection.
AT#XTCPCLI=2,"example.com",1234 #XTCPCLI: 1,"connected" OK AT#XTCPCLI? #XTCPCLI: 1,1 OK
Send plain text data to the TCP server and retrieve the returned data.
Test data mode PONG: b'Test data mode\r\n'
Disconnect from the server.
AT#XTCPCLI=0 #XTCPCLI: "disconnected" OK
UDP client¶
Test a UDP client with connectionless UDP:
Open a UDP socket and read information (handle, protocol, and role) about the open socket.
AT#XSOCKET=1,2,0 #XSOCKET: 1,2,0,17 OK AT#XSOCKET? #XSOCKET: 1,17,0 OK
Send plain text data to a UDP server on a specified port. Replace example.com with the host name or IPv4 address of a UDP server and 1234 with the corresponding port. Then retrieve the returned data.
AT#XSENDTO="example.com",1234,1,"Test UDP" #XSENDTO: 8 OK AT#XRECVFROM PONG: Test UDP #XRECVFROM: 1,14 OK
Send hexadecimal data to a UDP server on a specified port. Replace example.com with the host name or IPv4 address of a UDP server and 1234 with the corresponding port. Then retrieve the returned data.
AT#XSENDTO="example.com",1234,0,"DEADBEEF" #XSENDTO: 4 OK AT#XRECVFROM 504F4E473A20DEADBEEF #XRECVFROM: 0,20 OK
Close the socket.
AT#XSOCKET=0 #XSOCKET: 0,"closed" OK
Test a UDP client with connection-based UDP:
Open a UDP socket and connect to a UDP server on a specified port. Replace example.com with the host name or IPv4 address of a UDP server and 1234 with the corresponding port.
AT#XSOCKET=1,2,0 #XSOCKET: 1,2,0,17 OK AT#XCONNECT="example.com",1234 #XCONNECT: 1 OK
Send plain text data to the UDP server and retrieve the returned data.
AT#XSEND=1,"Test UDP" #XSEND: 8 OK AT#XRECV PONG: Test UDP #XRECV: 1,14 OK
Close the socket.
AT#XSOCKET=0 #XSOCKET: 0,"closed" OK
Test a connection-based UDP client with UDP proxy service:
Check the available values for the XUDPCLI command.
AT#XUDPCLI=? #XUDPCLI: (0,1,2),<url>,<port>,<sec_tag> OK
Create a UDP client and connect to a server. Replace example.com with the host name or IPv4 address of a UDP server and 1234 with the corresponding port.
AT#XUDPCLI=1,"example.com",1234 #XUDPCLI: 2,"connected" OK
Send plain text data to the UDP server and check the returned data.
AT#XUDPSEND=1,"Test UDP" #XUDPSEND: 8 OK #XUDPDATA: 1,14 PONG: Test UDP
Send hexadecimal data to the UDP server and check the returned data.
AT#XUDPSEND=0,"DEADBEEF" #XUDPSEND: 4 OK #XUDPDATA: 0,20 504F4E473A20DEADBEEF
Disconnect from the server.
AT#XUDPCLI=0 OK
Test a connection-based UDP client with UDP proxy service in data mode:
Create a UDP client and connect to a server with data mode support. Replace example.com with the host name or IPv4 address of a UDP server and 1234 with the corresponding port. Then read information about the connection.
AT#XUDPCLI=2,"example.com",1234 #XUDPCLI: 1,"connected" OK AT#XUDPCLI? #XUDPCLI: 1,1 OK
Send plain text data to the UDP server and retrieve the returned data.
Test UDP by hostname PONG: Test UDP by hostname
Disconnect from the server.
AT#XUDPCLI=0 #XUDPCLI: "disconnected" OK
TLS client¶
Before completing this test, you must update the CA certificate, the client certificate, and the private key to be used for the TLS connection in the modem. The credentials must use the security tag 16842755.
To store the credentials in the modem, use LTE Link Monitor. See Managing credentials in the LTE Link Monitor User Guide for instructions.
You must register the corresponding credentials on the server side.
Establish and test a TLS connection:
List the credentials that are stored in the modem with security tag 16842755.
AT%CMNG=1,16842755 %CMNG: 16842755,0,"0000000000000000000000000000000000000000000000000000000000000000" %CMNG: 16842755,1,"0101010101010101010101010101010101010101010101010101010101010101" %CMNG: 16842755,2,"0202020202020202020202020202020202020202020202020202020202020202" OK
Open a TCP/TLS socket that uses the security tag 16842755 and connect to a TLS server on a specified port. Replace example.com with the host name or IPv4 address of a TLS server and 1234 with the corresponding port.
AT#XSOCKET=1,1,0,16842755 #XSOCKET: 1,1,0,258 OK AT#XCONNECT="example.com",1234 #XCONNECT: 1 OK
Send plain text data to the TLS server and retrieve the returned data.
AT#XSEND=1,"Test TLS client" #XSEND: 15 OK AT#XRECV PONG: b'Test TLS client' #XRECV: 1,24 OK
Close the socket.
AT#XSOCKET=0 #XSOCKET: 0,"closed" OK
Test a TLS client with TCP proxy service:
Create a TCP/TLS client and connect to a server. Replace example.com with the host name or IPv4 address of a TLS server and 1234 with the corresponding port. Then read information about the connection.
AT#XTCPCLI=1,"example.com",1234 #XTCPCLI: 2,"connected" OK AT#XTCPCLI? #XTCPCLI: 1,0 OK
Send plain text data to the TLS server and retrieve the returned data.
AT#XTCPSEND=1,"Test TLS client" #XTCPSEND: 15 OK #XTCPDATA: 1,24 AT#XTCPRECV PONG: b'Test TLS client' #XTCPRECV: 24 OK
Disconnect from the server.
AT#XTCPCLI=0 #XTCPCLI: "disconnected" OK
TCP server¶
To act as a TCP server, the nRF9160 DK must have a global private address. The radio network must be configured to route incoming IP packets to the nRF9160 DK.
To check if the setup is correct, use the AT+CGDCONT?
command to check if the local IP address allocated by the network is a reserved private address of class A, B, or C (see Private addresses).
If it is not, ping your nRF9160 DK from the destination server.
Create a Python script
client_tcp.py
that acts a TCP client. See the following sample code (make sure to use the correct IP address and port):import socket import time host_addr = '000.000.000.00' host_port = 1234 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((host_addr, host_port)) time.sleep(1) print("Sending: 'Hello, TCP#1!") s.send(b"Hello, TCP#1!") time.sleep(1) print("Sending: 'Hello, TCP#2!") s.send(b"Hello, TCP#2!") data = s.recv(1024) print(data) time.sleep(1) print("Sending: 'Hello, TCP#3!") s.send(b"Hello, TCP#3!") time.sleep(1) print("Sending: 'Hello, TCP#4!") s.send(b"Hello, TCP#4!") time.sleep(1) print("Sending: 'Hello, TCP#5!") s.send(b"Hello, TCP#5!") time.sleep(1) data = s.recv(1024) print(data) print("Closing connection") s.close()
Establish and test a TCP connection:
Open a TCP socket, bind it to the TCP port that you want to use, and start listening. Replace 1234 with the correct port number.
AT#XSOCKET=1,1,1 #XSOCKET: 2,1,1,6 OK AT#XBIND=1234 OK AT#XLISTEN OK
Run the
client_tcp.py
script to start sending data to the server.Accept the connection from the client and start receiving and acknowledging the data.
AT#XACCEPT #XACCEPT: connected with IP address #XACCEPT: 3 OK AT#XRECV Hello, TCP#1!Hello, TCP#2! #XRECV: 1,26 OK AT#XSEND=1,"TCP1/2 received" #XSEND: 15 OK AT#XRECV Hello, TCP#3!Hello, TCP#4!Hello, TCP#5! #XRECV: 1,39 OK AT#XSEND=1,"TCP3/4/5 received" #XSEND: 17 OK
Observe the output of the Python script:
$ python client_tcp.py Sending: 'Hello, TCP#1! Sending: 'Hello, TCP#2! TCP1/2 received Sending: 'Hello, TCP#3! Sending: 'Hello, TCP#4! Sending: 'Hello, TCP#5! TCP3/4/5 received Closing connection
Close the socket.
AT#XSOCKET=0 #XSOCKET: "closed" OK
Test the TCP server with TCP proxy service:
Check the available values for the XTCPSVR command and read information about the current state.
AT#XTCPSVR=? #XTCPSVR: (0,1,2),<port>,<sec_tag> OK AT#XTCPSVR? #XTCPSVR: -1,-1 OK
Create a TCP server and read information about the current state. Replace 1234 with the correct port number.
AT#XTCPSVR=1,1234 #XTCPSVR: 2,"started" OK AT#XTCPSVR? #XTCPSVR: 1,-1,0 OK
Run the
client_tcp.py
script to start sending data to the server.Observe that the server accepts the connection from the client. Read information about the current state again.
#XTCPSVR: IP address connected #XTCPDATA: 1,13 #XTCPDATA: 1,13 AT#XTCPSVR? #XTCPSVR: 1,2,0 OK
Start receiving and acknowledging the data.
AT#XTCPRECV Hello, TCP#1!Hello, TCP#2! #XTCPRECV: 26 OK AT#XTCPSEND=1,"TCP1/2 received" #XTCPSEND: 15 OK #XTCPDATA: 1,13 #XTCPDATA: 1,13 #XTCPDATA: 1,13 AT#XTCPSVR? #XTCPSVR: 1,2,0 OK AT#XTCPRECV Hello, TCP#3!Hello, TCP#4!Hello, TCP#5! #XTCPRECV: 39 OK AT#XTCPSEND=1,"TCP3/4/5 received" #XTCPSEND: 17 OK
Observe the output of the Python script:
$ python client_tcp.py Sending: 'Hello, TCP#1! Sending: 'Hello, TCP#2! TCP1/2 received Sending: 'Hello, TCP#3! Sending: 'Hello, TCP#4! Sending: 'Hello, TCP#5! TCP3/4/5 received Closing connection
Read information about the current state.
AT#XTCPSVR? #XTCPSVR: 1,2,0 OK
Stop the server.
AT#XTCPSVR=0 #XTCPSVR:-1,"stopped" OK AT#XTCPSVR? #XTCPSVR: -1,-1 OK
Test the TCP server with TCP proxy service in data mode:
Create a TCP server and read information about the current state. Replace 1234 with the correct port number.
AT#XTCPSVR=2,1234 #XTCPSVR: 1,"started" OK AT#XTCPSVR? #XTCPSVR: 1,-1,1 OK
Run the
client_tcp.py
script to start sending data to the server.Observe that the server accepts the connection from the client and starts receiving data. Acknowledge the received data.
#XTCPSVR: IP address connected Hello, TCP#1!Hello, TCP#2!TCP1/2 received Hello, TCP#3!Hello, TCP#4!Hello, TCP#5!TCP3/4/5 received
Observe the output of the Python script:
$ python client_tcp.py Sending: 'Hello, TCP#1! Sending: 'Hello, TCP#2! TCP1/2 received Sending: 'Hello, TCP#3! Sending: 'Hello, TCP#4! Sending: 'Hello, TCP#5! TCP3/4/5 received Closing connection
Stop the server.
AT#XTCPSVR=0 #XTCPSVR: -1,"stopped" OK
UDP server¶
To act as a UDP server, the nRF9160 DK must have a global private address. The radio network must be configured to route incoming IP packets to the nRF9160 DK.
To check if the setup is correct, use the AT+CGDCONT?
command to check if the local IP address allocated by the network is a reserved private address of class A, B, or C (see Private addresses).
If it is not, ping your nRF9160 DK from the destination server.
Create a Python script
client_udp.py
that acts a UDP client. See the following sample code (make sure to use the correct IP addresses and port):import socket import time host_addr = '000.000.000.00' host_port = 1234 host = (host_addr, host_port) local_addr = '9.999.999.99' local_port = 1234 local = (local_addr, local_port) s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.bind(local) print("Sending: 'Hello, UDP#1!") s.sendto("Hello, UDP#1!", host) time.sleep(1) print("Sending: 'Hello, UDP#2!") s.sendto("Hello, UDP#2!", host) data, address = s.recvfrom(1024) print(data) print(address) print("Sending: 'Hello, UDP#3!") s.sendto("Hello, UDP#3!", host) time.sleep(1) print("Sending: 'Hello, UDP#4!") s.sendto("Hello, UDP#4!", host) time.sleep(1) print("Sending: 'Hello, UDP#5!") s.sendto("Hello, UDP#5!", host) data, address = s.recvfrom(1024) print(data) print(address) print("Closing connection") s.close()
Establish and test a UDP connection:
Open a UDP socket and bind it to the UDP port that you want to use. Replace 1234 with the correct port number.
AT#XSOCKET=1,2,1 #XSOCKET: 2,2,1,17 OK AT#XBIND=1234 OK
Run the
client_udp.py
script to start sending data to the server.Start receiving and acknowledging the data. Replace example.com with the host name or IPv4 address of the UDP client and 1234 with the corresponding port.
AT#XRECVFROM Hello, UDP#1! #XRECVFROM: 1,13 OK AT#XRECVFROM Hello, UDP#2! #XRECVFROM: 1,13 OK AT#XSENDTO="example.com",1234,1,"UDP1/2 received" #XSENDTO: 15 OK AT#XRECVFROM Hello, UDP#3! #XRECVFROM: 1,13 OK AT#XRECVFROM Hello, UDP#4! #XRECVFROM: 1,13 OK AT#XRECVFROM Hello, UDP#5! #XRECVFROM: 1,13 OK AT#XSENDTO="example.com",1234,1,"UDP3/4/5 received" #XSENDTO: 17 OK
Note that you will get an error message if a UDP packet is lost. For example, this error indicates that a packet is lost in the downlink to the nRF9160 DK:
AT#XRECVFROM #XSOCKET: -60 ERROR
Observe the output of the Python script:
$ python client_udp.py Sending: 'Hello, UDP#1! Sending: 'Hello, UDP#2! UDP1/2 received ('000.000.000.00', 1234) Sending: 'Hello, UDP#3! Sending: 'Hello, UDP#4! Sending: 'Hello, UDP#5! UDP3/4/5 received ('000.000.000.00', 1234) Closing connection
Close the socket.
AT#XSOCKET=0 #XSOCKET: 0,"closed" OK
Test the UDP server with UDP proxy service:
Check the available values for the XUDPSVR command and create a UDP server. Replace 1234 with the correct port number.
AT#XUDPSVR=? #XUDPSVR: (0,1,2),<port>,<sec_tag> OK AT#XUDPSVR=1,1234 #XUDPSVR: 2,"started" OK
Run the
client_udp.py
script to start sending data to the server.Observe that the server starts receiving data and acknowledge the data.
#XUDPDATA: 1,13 Hello, UDP#1! #XUDPDATA: 1,13 Hello, UDP#2! AT#XUDPSEND=1,"UDP1/2 received" #XUDPSEND: 15 OK #XUDPDATA: 1,13 Hello, UDP#3! #XUDPDATA: 1,13 Hello, UDP#4! #XUDPDATA: 1,13 Hello, UDP#5! AT#XUDPSEND=1,"UDP3/4/5 received" #XUDPSEND: 17 OK
Observe the output of the Python script:
$ python client_udp.py Sending: 'Hello, UDP#1! Sending: 'Hello, UDP#2! UDP1/2 received ('000.000.000.00', 1234) Sending: 'Hello, UDP#3! Sending: 'Hello, UDP#4! Sending: 'Hello, UDP#5! UDP3/4/5 received ('000.000.000.00', 1234) Closing connection
Close the socket.
AT#XUDPSVR=0 #XUDPSVR: "stopped" OK
Test the UDP server with UDP proxy service in data mode:
Create a UDP server and read information about the current state. Replace 1234 with the correct port number.
AT#XUDPSVR=2,1234 #XUDPSVR: 1,"started" OK AT#XUDPSVR? #XUDPSVR: 1,1 OK
Run the
client_udp.py
script to start sending data to the server.Observe that the server starts receiving data. Acknowledge the received data.
Hello, UDP#1!Hello, UDP#2!UDP1/2 received Hello, UDP#3!Hello, UDP#4!Hello, UDP#5!UDP3/4/5 received
Observe the output of the Python script:
$ python client_udp.py Sending: 'Hello, UDP#1! Sending: 'Hello, UDP#2! UDP1/2 received ('000.000.000.00', 1234) Sending: 'Hello, UDP#3! Sending: 'Hello, UDP#4! Sending: 'Hello, UDP#5! UDP3/4/5 received ('000.000.000.00', 1234) Closing connection
Stop the server.
AT#XUDPSVR=0 #XUDPSVR: "stopped" OK
TLS server¶
The TLS server role is currently not supported.
AT#XSOCKET=1,1,1,16842753 #XSOCKET: "(D)TLS Server not supported" ERROR AT#XTCPSVR=1,3443,16842753 #XTCPSVR: "TLS Server not supported" ERROR
DTLS server¶
The DTLS server role is currently not supported (modem limitation).
AT#XSOCKET=1,2,1,16842755 #XSOCKET: "(D)TLS Server not supported" ERROR
DNS lookup¶
Look up the IP address for a host name.
AT#XGETADDRINFO="www.google.com" #XGETADDRINFO: 172.217.174.100 OK
Observe that you cannot look up the host name for an IP address.
AT#XGETADDRINFO="172.217.174.100" ERROR
Socket options¶
After opening a client-role socket, you can configure various options.
Check the available values for the XSOCKETOPT command.
AT#XSOCKETOPT=? #XSOCKETOPT: (0,1),<name>,<value> OK
Open a client socket.
AT#XSOCKET=1,1,0 #XSOCKET: 2,1,0,6 OK
Test to set and get socket options. Note that not all options are supported.
AT#XSOCKETOPT=1,20,30 OK AT#XSOCKETOPT=0,20 ERROR // to be investigated AT#XSOCKETOPT=0,2 #XSOCKETOPT: "ignored" OK AT#XSOCKETOPT=1,2,1 #XSOCKETOPT: "ignored" OK AT#XSOCKETOPT=0,61 #XSOCKETOPT: "not supported" OK AT#XSOCKETOPT=1,61,30 #XSOCKETOPT: "not supported" OK
ICMP AT commands¶
Complete the following steps to test the functionality provided by the ICMP AT commands:
Ping a remote host, for example, www.google.com.
AT#XPING="www.google.com",45,5000,5,1000 #XPING: 0.637 #XPING: 0.585 #XPING: 0.598 #XPING: 0.598 #XPING: 0.599 #XPING: average 0.603 OK
Ping a remote IP address, for example, 172.217.174.100.
AT#XPING="172.217.174.100",45,5000,5,1000 #XPING: 0.873 #XPING: 0.576 #XPING: 0.599 #XPING: 0.623 #XPING: 0.577 #XPING: average 0.650 OK
FTP AT commands¶
Note that these commands are available only if CONFIG_SLM_FTPC
is defined.
Before you test the FTP AT commands, check the setting of the CONFIG_FTP_CLIENT_KEEPALIVE_TIME
option.
By default, the FTP client library keeps the connection to the FTP server alive for 60 seconds, but you can change the duration or turn KEEPALIVE off by setting CONFIG_FTP_CLIENT_KEEPALIVE_TIME
to 0.
The FTP client behavior depends on the FTP server that is used for testing. Complete the following steps to test the functionality provided by the FTP AT commands with two example servers:
Test an FTP connection to “speedtest.tele2.net”.
This server supports only anonymous login. Files must be uploaded to a given folder and will be deleted immediately. It is not possible to create, rename, or delete folders or rename files.
Connect to the FTP server, check the status, and change the transfer mode. Then disconnect.
AT#XFTP="open",,,"speedtest.tele2.net" 220 (vsFTPd 3.0.3) 200 Always in UTF8 mode. 331 Please specify the password. 230 Login successful. OK AT#XFTP="status" 215 UNIX Type: L8 211-FTP server status: Connected to ::ffff:202.238.218.44 Logged in as ftp TYPE: ASCII No session bandwidth limit Session timeout in seconds is 300 Control connection is plain text Data connections will be plain text At session startup, client count was 38 vsFTPd 3.0.3 - secure, fast, stable 211 End of status OK AT#XFTP="ascii" 200 Switching to ASCII mode. OK AT#XFTP="binary" 200 Switching to Binary mode. OK AT#XFTP="close" 221 Goodbye. OK
Connect to the FTP server and retrieve information about the existing files and folders.
AT#XFTP="open",,,"speedtest.tele2.net" 220 (vsFTPd 3.0.3) 200 Always in UTF8 mode. 331 Please specify the password. 230 Login successful. OK AT#XFTP="pwd" 257 "/" is the current directory OK AT#XFTP="ls" 227 Entering Passive Mode (90,130,70,73,103,35). 1000GB.zip 100GB.zip 100KB.zip [...] 5MB.zip upload 150 Here comes the directory listing. 226 Directory send OK. OK AT#XFTP="ls","-l" 227 Entering Passive Mode (90,130,70,73,94,158). 150 Here comes the directory listing. -rw-r--r-- 1 0 0 1073741824000 Feb 19 2016 1000GB.zip -rw-r--r-- 1 0 0 107374182400 Feb 19 2016 100GB.zip -rw-r--r-- 1 0 0 102400 Feb 19 2016 100KB.zip -rw-r--r-- 1 0 0 104857600 Feb 19 2016 100MB.zip [...] -rw-r--r-- 1 0 0 5242880 Feb 19 2016 5MB.zip drwxr-xr-x 2 105 108 561152 Apr 30 02:30 upload 226 Directory send OK. OK AT#XFTP="ls","-l","upload" 227 Entering Passive Mode (90,130,70,73,86,44). 150 Here comes the directory listing. -rw------- 1 105 108 57272385 Apr 30 02:29 10MB.zip -rw------- 1 105 108 119972 Apr 30 02:30 14qj36kc9esslej6porartkjks.txt [...] -rw------- 1 105 108 32352 Apr 30 02:30 upload_file.txt 226 Directory send OK. OK AT#XFTP="cd","upload" 250 Directory successfully changed. OK AT#XFTP="pwd" 257 "/upload" is the current directory OK AT#XFTP="ls","-l" 227 Entering Passive Mode (90,130,70,73,113,191). 150 Here comes the directory listing. -rw------- 1 105 108 57272385 Apr 30 02:29 10MB.zip -rw------- 1 105 108 294236 Apr 30 02:31 1MB.zip [...] -rw------- 1 105 108 838960 Apr 30 02:31 upload_file.txt 226 Directory send OK. OK AT#XFTP="cd", ".." 250 Directory successfully changed. OK AT#XFTP="pwd" 257 "/" is the current directory OK AT#XFTP="ls","-l" 227 Entering Passive Mode (90,130,70,73,90,43). 150 Here comes the directory listing. -rw-r--r-- 1 0 0 1073741824000 Feb 19 2016 1000GB.zip -rw-r--r-- 1 0 0 107374182400 Feb 19 2016 100GB.zip -rw-r--r-- 1 0 0 102400 Feb 19 2016 100KB.zip [...] -rw-r--r-- 1 0 0 5242880 Feb 19 2016 5MB.zip drwxr-xr-x 2 105 108 561152 Apr 30 02:31 upload 226 Directory send OK. OK AT#XFTP="ls","-l 1KB.zip" 227 Entering Passive Mode (90,130,70,73,106,84). 150 Here comes the directory listing. -rw-r--r-- 1 0 0 1024 Feb 19 2016 1KB.zip 226 Directory send OK. OK
Switch to binary transfer mode and download a file from the server.
AT#XFTP="binary" 200 Switching to Binary mode. OK AT#XFTP="get","1KB.zip" 227 Entering Passive Mode (90,130,70,73,84,29). 00000000000000000000000000[...]000000000000 226 Transfer complete. OK
Navigate to the
upload
folder, switch to binary transfer mode, and create a binary file with the content “DEADBEEF”.AT#XFTP="cd","upload" 250 Directory successfully changed. OK AT#XFTP="binary" 200 Switching to Binary mode. OK AT#XFTP="put","upload.bin",0,"DEADBEEF" 227 Entering Passive Mode (90,130,70,73,114,150). 150 Ok to send data. 226 Transfer complete. OK
Switch to ASCII transfer mode and create a text file with the content “TEXTDATA”.
AT#XFTP="ascii" 200 Switching to ASCII mode. OK AT#XFTP="put","upload.txt",1,"TEXTDATA" 227 Entering Passive Mode (90,130,70,73,99,84). 150 Ok to send data. 226 Transfer complete. OK
Disconnect from the server.
AT#XFTP="close" 221 Goodbye. OK
Test an FTP connection to “ftp.dlptest.com”.
This server does not support anonymous login. Go to DLPTest.com to get the latest login information. After login on, you can create and remove folders and files, rename files, and upload files.
Connect to the FTP server and check the status. Replace user and password with the login information from DLPTest.com.
AT#XFTP="open","user","password","ftp.dlptest.com" 220-######################################################### 220-Please upload your web files to the public_html directory. 220-Note that letters are case sensitive. 220-######################################################### 220 This is a private system - No anonymous login 200 OK, UTF-8 enabled 331 User user OK. Password required 230-Your bandwidth usage is restricted 230 OK. Current restricted directory is / OK AT#XFTP="status" 215 UNIX Type: L8 211 https://www.pureftpd.org/ OK
Retrieve information about the existing files and folders.
AT#XFTP="pwd" 257 "/" is your current location OK AT#XFTP="ls" 227 Entering Passive Mode (35,209,241,59,135,181) 150 Accepted data connection 226-Options: -a 226 42 matches total OK . .. 1_2596384601376578508_17-9ULspeedtest.upt 1_603281663034123496_17-9ULspeedtest.upt [...] aa_.rar write to File.txt
Create a folder and enter it.
AT#XFTP="mkdir", "newfolder" 257 "newfolder" : The directory was successfully created OK AT#XFTP="ls","-l","newfolder" 227 Entering Passive Mode (35,209,241,59,135,134) 150 Accepted data connection 226-Options: -a -l 226 2 matches total OK drwxr-xr-x 2 dlptest9 dlptest9 4096 Apr 29 19:53 . drwxr-xr-x 3 dlptest9 dlptest9 57344 Apr 29 19:53 .. +CEREG: 1,"1285","02EF8210",7 AT#XFTP="cd","newfolder" 250 OK. Current directory is /newfolder OK
Switch to binary transfer mode and create a binary file with the content “DEADBEEF”.
AT#XFTP="binary" 200 TYPE is now 8-bit binary OK AT#XFTP="put","upload.bin",0,"DEADBEEF" 227 Entering Passive Mode (35,209,241,59,135,182) 150 Accepted data connection 226-File successfully transferred 226 0.013 seconds (measured here), 310.20 bytes per second OK AT#XFTP="ls","-l","upload.bin" 227 Entering Passive Mode (35,209,241,59,135,146) 150 Accepted data connection 226-Options: -a -l 226 1 matches total OK -rw-r--r-- 1 dlptest9 dlptest9 4 Apr 29 19:54 upload.bin
Rename the file.
AT#XFTP="rename","upload.bin","uploaded.bin" 350 RNFR accepted - file exists, ready for destination 250 File successfully renamed or moved OK AT#XFTP="ls","-l","uploaded.bin" 227 Entering Passive Mode (35,209,241,59,135,111) 150 Accepted data connection -rw-r--r-- 1 dlptest9 dlptest9 4 Apr 29 19:54 uploaded.bin 226-Options: -a -l 226 1 matches total OK
Switch to ASCII transfer mode and create a text file with the content “line #1\r\n”.
AT#XFTP="ascii" 200 TYPE is now ASCII OK AT#XFTP="put","upload.txt",1,"line #1\r\n" 227 Entering Passive Mode (35,209,241,59,135,136) 150 Accepted data connection 226-File successfully transferred 226 0.013 seconds (measured here), 0.82 Kbytes per second OK AT#XFTP="ls","-l upload.txt" 227 Entering Passive Mode (35,209,241,59,135,166) 150 Accepted data connection 226-Options: -a -l 226 1 matches total OK -rw-r--r-- 1 dlptest9 dlptest9 11 Apr 29 19:56 upload.txt
Rename the file.
AT#XFTP="rename","upload.txt","uploaded.txt" 350 RNFR accepted - file exists, ready for destination 250 File successfully renamed or moved OK AT#XFTP="ls","-l uploaded.txt" 227 Entering Passive Mode (35,209,241,59,135,213) 200 Zzz... // (KEEPALIVE response) 150 Accepted data connection 226-Options: -a -l 226 1 matches total OK -rw-r--r-- 1 dlptest9 dlptest9 11 Apr 29 19:56 uploaded.txt +CEREG: 1,"1285","02EF8200",7
Delete the files and the folder that you created.
AT#XFTP="delete","uploaded.bin" 250 Deleted uploaded.bin OK AT#XFTP="delete","uploaded.txt" 250 Deleted uploaded.txt OK AT#XFTP="cd", ".." 250 OK. Current directory is / OK AT#XFTP="rmdir", "newfolder" 250 The directory was successfully removed OK
Disconnect from the server.
AT#XFTP="close" 221-Goodbye. You uploaded 1 and downloaded 0 kbytes. 221 Logout. OK
GPS AT commands¶
Note that these commands are available only if CONFIG_SLM_GPS
is defined.
Before you test the GPS AT commands, check the following configuration values:
CONFIG_SUPL_CLIENT_LIB
- must be enabled to use the SUPL client and SUPL client OS integrationCONFIG_SLM_SUPL_SERVER
- use the default (“supl.google.com”) or specify a different serverCONFIG_SLM_SUPL_PORT
- use the default (7276) or specify a different port
Complete the following steps to test the functionality provided by the GPS AT commands:
Test standalone GPS:
Enable support for GNSS in the modem.
AT+CFUN=0 OK AT%XSYSTEMMODE=0,0,1,0 OK
Configure the Low-Noise Amplifier (LNA). The required commands depend on the version of the nRF9160 DK.
For nRF9160 DK versions up to v0.9.0, configure the MAGPIO pin:
AT%XMAGPIO=1,0,0,1,1,1574,1577 OK
For nRF9160 DK versions starting with v0.10.x, configure the COEX0 pin:
AT%XCOEX0=1,1,1565,1586 OK
Turn on the modem.
AT+CFUN=1 OK
Start GPS with GPS fix data and geographic position latitude/longitude and time, and observe the output. Then check the GPS status.
AT#XGPS=1,3 #XGPS: 1,3 OK #XGPSS: tracking 1 using 1 unhealthy 0 #XGPSS: tracking 2 using 2 unhealthy 0 [...] AT#XGPS? #XGPS: 1,3 OK
Turn off GPS and check the status again.
AT#XGPS=0 #XGPS: 0 OK AT#XGPS? #XGPS: 0 OK
Test GPS in PSM mode:
Subscribe to unsolicited network status notifications. Then enable support for LTE Cat-M1 and GNSS in the modem.
AT+CFUN=0 OK AT+CEREG=5 OK AT%XSYSTEMMODE=1,0,1,0 OK
Configure the Low-Noise Amplifier (LNA). The required commands depend on the version of the nRF9160 DK.
For nRF9160 DK versions up to v0.9.0, configure the MAGPIO pin:
AT%XMAGPIO=1,0,0,1,1,1574,1577 OKFor nRF9160 DK versions starting with v0.10.x, configure the COEX0 pin:
AT%XCOEX0=1,1,1565,1586 OK
Enable power saving mode. Then turn on the modem.
AT+CPSMS=1,,,"00100100","00100001" OK AT+CFUN=1 OK +CEREG: 2,"106A","00A3965D",7,0,0,"11100000","11100000" +CEREG: 1,"106A","00A3965D",7,,,"00011110","00011000"Start GPS with GPS fix data and geographic position latitude/longitude and time, and observe the output.
AT#XGPS=1,3 #XGPS: 1,3 OK #XGPSS: tracking 1 using 1 unhealthy 0 #XGPSS: tracking 2 using 2 unhealthy 0 [...]Turn off GPS.
AT#XGPS=0 #XGPS: 0 OK
Test GPS in eDRX mode:
Subscribe to unsolicited network status notifications. Then enable support for LTE Cat-M1 and GNSS in the modem.
AT+CFUN=0 OK AT+CEREG=2 OK AT%XSYSTEMMODE=1,0,1,0 OK
Configure the Low-Noise Amplifier (LNA). The required commands depend on the version of the nRF9160 DK.
For nRF9160 DK versions up to v0.9.0, configure the MAGPIO pin:
AT%XMAGPIO=1,0,0,1,1,1574,1577 OKFor nRF9160 DK versions starting with v0.10.x, configure the COEX0 pin:
AT%XCOEX0=1,1,1565,1586 OK
Enable the use of eDRX and configure the PTW parameters. Then turn on the modem.
AT+CEDRXS=2,4,"1010" OK AT%XPTW=4,"0001" OK AT+CFUN=1 OK +CEREG: 2,"106A","00A3965D",7 +CEREG: 1,"106A","00A3965D",7 +CEDRXP: 4,"1010","1010","0001"Start GPS with GPS fix data and geographic position latitude/longitude and time, and observe the output.
AT#XGPS=1,3 #XGPS: 1,3 OK #XGPSS: tracking 1 using 1 unhealthy 0 #XGPSS: tracking 2 using 2 unhealthy 0 [...]Turn off GPS.
AT#XGPS=0 #XGPS: 0 OK
Test A-GPS:
Subscribe to unsolicited network status notifications. Then enable support for LTE Cat-M1 and GNSS in the modem.
AT+CFUN=0 OK AT+CEREG=2 OK AT%XSYSTEMMODE=1,0,1,0 OK
Configure the Low-Noise Amplifier (LNA). The required commands depend on the version of the nRF9160 DK.
For nRF9160 DK versions up to v0.9.0, configure the MAGPIO pin:
AT%XMAGPIO=1,0,0,1,1,1574,1577 OKFor nRF9160 DK versions starting with v0.10.x, configure the COEX0 pin:
AT%XCOEX0=1,1,1565,1586 OK
Turn on the modem.
AT+CFUN=1 OK +CEREG: 2,"107E","00B02C03",7 +CEREG: 1,"107E","00B02C03",7Start GPS with GPS fix data and geographic position latitude/longitude and time, and observe the output. Note that the TTFF printed in the AT response is from then time when AT#XGPS was issued. For A-GPS, this includes the SUPL injection time.
AT#XGPS=1,3 #XGPS: 1,3 OK GPS suspended SUPL injection done GPS resumed #XGPSS: track 3 use 3 unhealthy 0 #XGPSS: track 4 use 4 unhealthy 0 #XGPSS: track 5 use 5 unhealthy 0 #XGPSS: track 4 use 4 unhealthy 0 #XGPSS: track 5 use 5 unhealthy 0 #XGPSS: track 6 use 6 unhealthy 0 #XGPSS: track 7 use 7 unhealthy 0 #XGPSS: track 6 use 6 unhealthy 0 #XGPSP: long 139.721966 lat 35.534159 #XGPSP: 2020-04-30 00:11:55 #XGPSP: TTFF 57s $GPGGA,001155.87,3532.04954,N,13943.31794,E,1,06,17.40,109.53,M,0,,*19 $GPGLL,3532.04954,N,13943.31794,E,001155.87,A,A*69 #XGPSP: long 139.721969 lat 35.534148 #XGPSP: 2020-04-30 00:11:56 $GPGGA,001156.87,3532.04889,N,13943.31811,E,1,07,17.38,111.08,M,0,,*10 $GPGLL,3532.04889,N,13943.31811,E,001156.87,A,A*69 #XGPSP: long 139.721982 lat 35.534138