zephyr/samples/net/echo_server
Ulf Magnusson 92ef8582b9 Kconfig: Remove redundant $(ZEPHYR_BASE) from 'source's
The $srctree environment variable gives the path relative to which
'(o)source' statements work (the current directory is used if $srctree
is unset). It is set to $ZEPHYR_BASE in cmake/kconfig.cmake, so there's
no need to qualify the source of Kconfig.zephyr in sample Kconfig files
(or in external projects).

All 'source's in Zephyr assume that the Zephyr root directory is used as
the srctree as well, and would break otherwise.

Remove the $(ZEPHYR_BASE)s to make it clearer that all 'source'
statements work relative to the Zephyr root. There was some user
confusion on IRC.

Also explain how things work in the documentation.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-10-10 11:28:27 -05:00
..
boards samples: net: echo_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
src samples: net: echo_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
CMakeLists.txt cmake: Remove unnecessary KCONFIG_ROOT configuration 2018-09-21 13:37:21 -04:00
Kconfig Kconfig: Remove redundant $(ZEPHYR_BASE) from 'source's 2018-10-10 11:28:27 -05:00
overlay-bt.conf samples: net: echo_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
overlay-cc2520.conf net: config: Rename Kconfig options to correspond to library name 2018-08-13 18:42:31 -07:00
overlay-enc28j60.conf samples: net: echo-server: Add overlay config support 2018-07-24 15:11:09 +03:00
overlay-frdm_k64f_cc2520.conf driver: spi: use new logger 2018-10-08 17:49:12 -04:00
overlay-frdm_k64f_mcr20a.conf samples: net: echo_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
overlay-netusb.conf subsys/usb: Move to new logger subsystem 2018-10-08 12:54:57 -04:00
overlay-ot.conf samples: net: echo_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
overlay-qemu_802154.conf samples: net: echo_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
overlay-tls.conf samples: net: echo-server: Add overlay config support 2018-07-24 15:11:09 +03:00
overlay-vlan.conf samples: net: echo_server: Add VLAN support 2018-09-20 11:21:22 +03:00
prj.conf samples: net: echo_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
README.rst samples: net: echo-server: Add overlay config support 2018-07-24 15:11:09 +03:00
sample.yaml samples: net: echo-*: Add openthread tag for sanitychecker 2018-10-04 14:13:57 +03:00

.. _echo-server-sample:

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:
:file:`samples/net/echo_server`.

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

- :ref:`networking_with_qemu`

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-frdm_k64f_cc2520.conf`
  This overlay config enables support for IEEE 802.15.4 CC2520 and frdm_k64f

- :file:`overlay-frdm_k64f_mcr20a.conf`
  This overlay config enables support for IEEE 802.15.4 mcr20a and frdm_k64f

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

- :file:`overlay-enc28j60.conf`
  This overlay config enables support for enc28j60 ethernet board. This
  add-on board can be used for example with Arduino 101 board.

- :file:`overlay-cc2520.conf`
  This overlay config enables support for IEEE 802.15.4 cc2520 chip.

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

- :file:`overlay-netusb.conf`
  This overlay config enables support for Ethernet over USB setup with
  supported boards. The setup is described in :ref:`usb_device_networking_setup`

Build echo-server sample application like this:

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

Example building for the FRDM-K64F with TI CC2520 support:

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

Make can select the default configuration file based on the BOARD you've
specified automatically so you might not always need to mention it.

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