TCP Server example with esp as station

This is a modified verison of esp32-idf tcp server example with esp as a station.

The application first creates a wifi station and then creates a TCP socket with the specified port number and waits for a connection request from the client. After accepting a request from the client, connection between server and client is established and the application waits for some data to be received from the client. Received data are printed as ASCII text and retransmitted back to the client.

How to use example

In order to create TCP client that communicates with TCP server example, choose one of the following options.

There are many host-side tools which can be used to interact with the UDP/TCP server/client. One command line tool is netcat which can send and receive many kinds of packets. Note: The esp station by default will have an ip 192.168.4.1.

In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.

TCP client using netcat

nc 192.168.4.1 3333

Python scripts

Script example_test.py could be used as a counter part to the tcp-server application, IP address and the message to be send to the server shall be stated as arguments. Example:

python example_test.py 192.168.4.1 Message

Hardware Required

This example can be run on any commonly available ESP32 development board.

Configure the project

idf.py menuconfig

Set following parameters under Example Configuration Options:

  • Set IP version of the example to be IPV4 or IPV6.

  • Set Port number of the socket, that server example will create.

  • Set TCP keep-alive idle time(s) value of TCP keep alive idle time. This time is the time between the last data transmission.

  • Set TCP keep-alive interval time(s) value of TCP keep alive interval time. This time is the interval time of keepalive probe packets.

  • Set TCP keep-alive packet retry send counts value of TCP keep alive packet retry send counts. This is the number of retries of the keepalive probe packet.

Configure Wi-Fi or Ethernet under "Example Connection Configuration" menu. See "Establishing Wi-Fi or Ethernet Connection" section in examples/protocols/README.md for more details.

Build and Flash

Build the project and flash it to the board, then run monitor tool to view serial output:

idf.py -p PORT flash monitor

(To exit the serial monitor, type Ctrl-].)

See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.

Troubleshooting

Start server first, to receive data sent from the client (application).