zephyr/samples/net/echo_client
Jukka Rissanen 86689030e8 net: Clarify logging in networking code
Remove network specific default and max log level setting
and start to use the zephyr logging values for those.

Remove LOG_MODULE_REGISTER() from net_core.h and place the
calls into .c files. This is done in order to avoid weird
compiler errors in some cases and to make the code look similar
as other subsystems.

Fixes #11343
Fixes #11659

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2018-12-07 12:00:04 +02:00
..
boards samples: net: echo_client config cleanup 2018-12-06 12:45:19 -05:00
src net: Clarify logging in networking code 2018-12-07 12:00:04 +02:00
CMakeLists.txt samples, tests: Use semi-accurate project names 2018-10-27 21:31:25 -04:00
Kconfig Kconfig: Remove redundant $(ZEPHYR_BASE) from 'source's 2018-10-10 11:28:27 -05:00
overlay-802154.conf samples: net: echo_client config cleanup 2018-12-06 12:45:19 -05:00
overlay-bt.conf samples: net: echo_client config cleanup 2018-12-06 12:45:19 -05:00
overlay-cc2520.conf samples: net: coap_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
overlay-enc28j60.conf samples: net: echo-client: Add overlay config support 2018-07-25 12:42:36 +03:00
overlay-frdm_k64f_mcr20a.conf samples: net: coap_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
overlay-ot.conf samples: net: echo_client config cleanup 2018-12-06 12:45:19 -05:00
overlay-qemu_802154.conf samples: net: coap_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
overlay-qemu_cortex_m3_eth.conf samples: net: Modify echo server / client for Stellaris Ethernet. 2018-12-04 09:36:51 -06:00
overlay-tls.conf samples: net: echo-client: Add overlay config support 2018-07-25 12:42:36 +03:00
overlay-vlan.conf samples: net: echo-client: Add VLAN support 2018-09-20 11:21:22 +03:00
prj.conf samples: net: coap_server: Convert to new logging system 2018-10-04 14:13:57 +03:00
README.rst samples: net: echo_client config cleanup 2018-12-06 12:45:19 -05:00
sample.yaml samples: net: echo_client config cleanup 2018-12-06 12:45:19 -05:00

.. _echo-client-sample:

Echo Client
###########

Overview
********

The echo-client sample application for Zephyr implements a UDP/TCP client
that will send IPv4 or IPv6 packets, wait for the data to be sent back,
and then verify it matches the data that was sent.

The source code for this sample application can be found at:
:file:`samples/net/echo_client`.

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-client application inside QEMU. This is
described in :ref:`networking_with_qemu`.

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

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

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

Build echo-client sample application like this:

.. zephyr-app-commands::
   :zephyr-app: samples/net/echo_client
   :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_client
   :host-os: unix
   :board: frdm_k64f
   :conf: "prj.conf overlay-frdm_k64f_cc2520.conf"
   :goals: run
   :compact:

Cmake 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-server in Linux Host
=================================

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

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

In a terminal window:

.. code-block:: console

    $ sudo ./echo-server -i tap0

Run echo-client application in QEMU:

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