zephyr/samples/net/sockets/echo_server
Gerson Fernando Budke b478cd8f37 linker_script: Remove some remaining SUBALIGN in iterable sections
The #91219 miss some entries when doing the clean-up. This removes
some of remaining SUBALIGN entries in the iterable sections. It do
not consider SECTION_PROLOGUE and zephyr_linker_section entries.

Fixes #92349

Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
2025-07-07 10:07:56 -05:00
..
boards samples: echo_client echo_server: add frdm_mcxw7 board overlays 2025-02-14 03:08:48 +01:00
src net: mgmt: Convert the mgmt API to use 64-bit masks 2025-06-18 10:54:44 +02:00
CMakeLists.txt linker_script: Remove some remaining SUBALIGN in iterable sections 2025-07-07 10:07:56 -05:00
docker-test.sh
Kconfig samples: net: echo-server: Refactor tunnel support 2025-04-02 05:29:57 +02:00
overlay-802154-subg.conf samples: net: sockets: echo_server: Enable subg tcp 2024-04-12 15:03:57 +02:00
overlay-802154.conf
overlay-capture.conf
overlay-cc2520.conf
overlay-debug.conf
overlay-e1000.conf
overlay-full_network_stack.conf
overlay-log.conf
overlay-max-stacks.conf
overlay-netusb.conf
overlay-nsos.conf drivers/ethernet/eth_native_posix: Rename to eth_native_tap 2025-03-07 20:10:38 +01:00
overlay-ot-rcp-host-nxp.conf samples: Enable OpenThread logging in all related samples 2025-05-05 14:25:13 +02:00
overlay-ot.conf samples: net: echo_client/server: Lower log level for OpenThread 2025-06-09 14:59:35 -07:00
overlay-qemu_802154.conf
overlay-qemu_cortex_m3_eth.conf
overlay-smsc911x.conf
overlay-tls.conf samples: net: sockets: echo_client/server: Bump ZVFS_OPEN_MAX config 2024-06-25 14:15:16 -04:00
overlay-tunnel.conf samples: net: echo-server: Refactor tunnel support 2025-04-02 05:29:57 +02:00
overlay-usbd_next.conf samples: net: echo-server: Add USB CDC NCM support 2024-10-17 15:38:00 -04:00
overlay-vlan.conf samples: net: echo-server: Refactor VLAN support 2025-03-20 17:16:10 +01:00
overlay-ws-console.conf samples: net: echo-server: Add websocket console support 2024-10-15 04:11:03 -04:00
prj.conf samples: net: sockets: echo_client/server: Remove duplicate configs 2024-06-25 14:15:16 -04:00
README.rst samples: net: echo-server: Refactor VLAN support 2025-03-20 17:16:10 +01:00
sample.yaml samples: echo_client echo_server: update tests 2025-06-12 09:34:16 -07:00
usbd_next_ncm.overlay samples: net: echo-server: Add USB CDC NCM support 2024-10-17 15:38:00 -04:00

.. zephyr:code-sample:: sockets-echo-server
   :name: Echo server (advanced)
   :relevant-api: bsd_sockets tls_credentials

   Implement a UDP/TCP server that sends received packets back to the sender.

Overview
********

The echo-server sample application for Zephyr implements a UDP/TCP server
that complements the echo-client sample application: the echo-server listens
for incoming IPv4 or IPv6 packets (sent by the echo client) and simply sends
them back.

The source code for this sample application can be found at:
:zephyr_file:`samples/net/sockets/echo_server`.

Requirements
************

- :ref:`networking_with_host`

Building and Running
********************

There are multiple ways to use this application. One of the most common
usage scenario is to run echo-server application inside QEMU. This is
described in :ref:`networking_with_qemu`.

There are configuration files for different boards and setups in the
echo-server directory:

- :file:`prj.conf`
  Generic config file, normally you should use this.

- :file:`overlay-ot.conf`
  This overlay config enables support for OpenThread.

- :file:`overlay-802154.conf`
  This overlay config enables support for native IEEE 802.15.4 connectivity.
  Note, that by default IEEE 802.15.4 L2 uses unacknowledged communication. To
  improve connection reliability, acknowledgments can be enabled with shell
  command: ``ieee802154 ack set``.

- :file:`overlay-qemu_802154.conf`
  This overlay config enables support for two QEMU's when simulating
  IEEE 802.15.4 network that are connected together.

- :file:`overlay-tls.conf`
  This overlay config enables support for TLS.

- :file:`overlay-tunnel.conf`
  This overlay config enables support for IP tunneling.

- :file:`overlay-vlan.conf`
  This overlay config enables support for Virtual LAN.
  See :ref:`networking_samples_common` for details.

Build echo-server sample application like this:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_server
   :board: <board to use>
   :conf: <config file to use>
   :goals: build
   :compact:

Example building for the nrf52840dk/nrf52840 with OpenThread support:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_server
   :host-os: unix
   :board: nrf52840dk/nrf52840
   :conf: "prj.conf overlay-ot.conf"
   :goals: run
   :compact:

Example building for the samr21_xpro with RF2XX driver support:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_server
   :host-os: unix
   :board: [samr21_xpro | sam4e_xpro | sam_v71_xult/samv71q21]
   :gen-args: -DEXTRA_CONF_FILE=overlay-802154.conf
   :goals: build flash
   :compact:

In a terminal window you can check if communication is happen:

.. code-block:: console

    $ minicom -D /dev/ttyACM0

Enabling TLS support
====================

Enable TLS support in the sample by building the project with the
``overlay-tls.conf`` overlay file enabled, for example, using these commands:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_server
   :board: qemu_x86
   :conf: "prj.conf overlay-tls.conf"
   :goals: build
   :compact:

An alternative way is to specify ``-DEXTRA_CONF_FILE=overlay-tls.conf`` when
running ``west build`` or ``cmake``.

The certificate used by the sample can be found in the sample's ``src``
directory. The default certificates used by Socket Echo Server and
:zephyr:code-sample:`sockets-echo-client` enable establishing a secure connection
between the samples.

Running echo-client in Linux Host
=================================

There is one useful testing scenario that can be used with Linux host.
Here echo-server is run in QEMU and echo-client is run in Linux host.

To use QEMU for testing, follow the :ref:`networking_with_qemu` guide.

Run echo-server application in QEMU:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_server
   :host-os: unix
   :board: qemu_x86
   :goals: run
   :compact:

In a terminal window:

.. code-block:: console

    $ sudo ./echo-client -i tap0 2001:db8::1

Note that echo-server must be running in QEMU before you start the
echo-client application in host terminal window.

You can verify TLS communication with a Linux host as well. See
https://github.com/zephyrproject-rtos/net-tools documentation for information
on how to test TLS with Linux host samples.

See the :zephyr:code-sample:`sockets-echo-client` sample documentation for an alternate
way of running, with the echo-server on the Linux host and the echo-client
in QEMU.