zephyr/samples/net/sockets/echo_server
Anas Nashif da5f185e06 samples: add test identifier
Add unique identifier instead of just 'test' for samples.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2019-03-29 17:44:11 -04:00
..
boards samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
src all: Add 'U' suffix when using unsigned variables 2019-03-28 17:15:58 -05:00
CMakeLists.txt cmake: Drop all in-tree usage 'set_conf_file' 2019-03-01 09:44:09 +01:00
Kconfig Kconfig: Remove redundant $(ZEPHYR_BASE) from 'source's 2018-10-10 11:28:27 -05:00
README.rst doc: use :zephyr_file: where appropriate 2019-03-09 09:50:27 -05:00
arduino_101.overlay samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05: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-e1000.conf kconfig: Remove dead references to CONFIG_PCI_DEBUG 2019-03-07 13:04:29 -06:00
overlay-frdm_k64f_mcr20a.conf samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
overlay-netusb.conf samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
overlay-ot.conf samples: openthread: Increase shell stack size 2019-01-18 15:24:16 +02: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: sockets: Add overlay configs to socket echo samples 2018-12-06 12:45:19 -05:00
sample.yaml samples: add test identifier 2019-03-29 17:44:11 -04:00

README.rst

.. _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-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 nRF52840_pca10056 with OpenThread support:

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

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 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.