This is the documentation for the latest (main) development branch of Zephyr. If you are looking for the documentation of previous releases, use the drop-down menu on the left and select the desired version.

Network management socket

Overview

The net-mgmt-socket sample application for Zephyr implements a listener for network management events that the networking subsystem is sending.

The source code for this sample application can be found at: samples/net/sockets/net_mgmt.

Requirements

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 Networking with QEMU.

Build net-mgmt socket sample application like this:

west build -b <board to use> samples/net/sockets/net_mgmt -- -DCONF_FILE=<config file to use>

Example building for the native_sim board:

west build -b native_sim samples/net/sockets/net_mgmt -- -DCONF_FILE=prj.conf
west build -t run