zephyr/samples/net/sockets/echo_server
Piotr Szkotak a6b0a3a263 net: openthread: make diag compile
Fix compilation error when the DIAG module is enabled.
All core functionalities are provided.

Signed-off-by: Piotr Szkotak <piotr.szkotak@nordicsemi.no>
2020-07-20 14:40:29 +03:00
..
boards samples: net: echo_server: Update samr21_xpro configs 2020-07-13 11:54:29 +02:00
src samples: net: echo-server: Add userspace support 2020-06-23 18:17:15 +03:00
CMakeLists.txt samples: make find_package(Zephyr...) REQUIRED 2020-05-29 10:47:25 +02:00
Kconfig samples: net: echo_server: Add signed certs and keys 2020-01-23 21:07:18 +02:00
overlay-6locan.conf samples: net: echo_client and echo_server: Add 6LoCAN config 2019-08-08 13:25:01 +03:00
overlay-802154.conf samples: sockets: Add overlay configs to socket echo samples 2018-12-06 12:45:19 -05:00
overlay-bt.conf samples: net: Update overlay-bt.conf in various samples 2019-03-20 11:32:40 -05:00
overlay-cc2520.conf kconfig: remove stale CONFIG_IEEE802154_CC2520_AUTO_ACK 2019-03-07 13:04:29 -06:00
overlay-debug.conf samples: echo_server: Add overlays for debugging 2020-03-11 16:24:52 +02:00
overlay-e1000.conf ethernet/eth_e1000.c: change to new PCI(e) functions 2019-04-22 09:34:00 -07:00
overlay-log.conf samples: echo_server: Add overlays for debugging 2020-03-11 16:24:52 +02:00
overlay-max-stacks.conf kernel: remove unused offload workqueue option 2020-04-12 18:42:27 -04:00
overlay-netusb.conf samples: net: Clean up netusb overlay configuration 2019-10-04 21:23:53 +03:00
overlay-ot.conf net: openthread: make diag compile 2020-07-20 14:40:29 +03:00
overlay-ppp.conf samples: net: echo-server: Add PPP overlay config file 2019-07-29 10:24:46 +03:00
overlay-qemu_802154.conf samples/sockets: Enable 802.15.4 properly for echo apps 2019-01-08 11:25:33 +02:00
overlay-qemu_cortex_m3_eth.conf samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
overlay-smsc911x.conf samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
overlay-tls.conf samples: sockets: Tweak echo_client/server sample parameters for DTLS 2018-12-13 21:13:52 +02:00
overlay-vlan.conf samples: net: sockets: echo_server: Add VLAN support 2018-09-20 11:21:22 +03:00
prj.conf samples: net: echo-server: Wait network interface before starting 2020-03-17 17:17:20 +02:00
README.rst samples: echo_server: Fix missed renaming of nrf52840_pca10056 2020-03-30 13:27:37 +02:00
sample.yaml samples: net: echo_server: Enable atmel_rf2xx tests 2020-07-13 11:54:29 +02:00

.. _sockets-echo-server-sample:

Socket Echo Server
##################

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-bt.conf`
  This overlay config enables support for Bluetooth IPSP connectivity.

- :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-ppp.conf`
  This overlay config enables support for PPP (Point-to-Point Protocol).

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

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 atsamr21_xpro with RF2XX driver support:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_server
   :host-os: unix
   :board: [atsamr21_xpro | sam4e_xpro | sam_v71_xult]
   :gen-args: -DOVERLAY_CONFIG=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 ``-DOVERLAY_CONFIG=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
:ref:`sockets-echo-client-sample` 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 :ref:`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.