Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Pisit Sawangvonganan a163f9db61 kconfig: fix typo in (arch, boards, kernel, modules, samples, share) 7 days ago
..
src samples: net: Add Wi-Fi snippet support for networking samples 9 months ago
CMakeLists.txt samples: net: Add Wi-Fi snippet support for networking samples 9 months ago
Kconfig kconfig: fix typo in (arch, boards, kernel, modules, samples, share) 7 days ago
README.rst samples: net: Add Wi-Fi snippet support for networking samples 9 months ago
docker-test.sh
overlay-runtime-srv-addr.conf logging: runtime setting of syslog server ip address 2 years ago
prj.conf samples: net: syslog_net: add missing dep of net log backend 6 months ago
sample.yaml drivers: wifi: make WIFI_BUILD_ONLY_MODE global symbol 7 months ago

README.rst

.. zephyr:code-sample:: syslog-net
:name: Remote syslog
:relevant-api: log_backend log_ctrl

Enable a remote syslog service that sends syslog messages to a remote server

Overview
********

This sample application enables a remote syslog service that will
send syslog messages to a remote server, as configured in ``prj.conf``.
See https://tools.ietf.org/html/rfc5424 and https://tools.ietf.org/html/rfc5426
for more details about syslog protocol over UDP.

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

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

- :ref:`networking_with_host`

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

For configuring the remote IPv6 syslog server, set the following
variables in prj.conf file:

.. code-block:: cfg

CONFIG_LOG_BACKEND_NET=y
CONFIG_LOG_BACKEND_NET_SERVER="[2001:db8::2]:514"

Default port number is 514 if user does not specify a value.
The following syntax is supported for the server address
and port:

.. code-block:: console

192.0.2.1:514
192.0.2.42
[2001:db8::1]:514
[2001:db8::2]
2001:db::42

Build syslog_net sample application like this:

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

Wi-Fi
=====

The IPv4 Wi-Fi support can be enabled in the sample with
:ref:`Wi-Fi snippet <snippet-wifi-ipv4>`.