CONFIG_LOG_BACKEND_NET_SERVER

Syslog server IP address

Type: string

Help

This can be either IPv4 or IPv6 address. Server listen UDP port number can be configured here too. Following syntax is supported: 192.0.2.1:514 192.0.2.42 [2001:db8::1]:514 [2001:db8::2] 2001:db::42

Direct dependencies

LOG_BACKEND_NET && !LOG_MINIMAL && LOG

(Includes any dependencies from ifs and menus.)

Defaults

No defaults. Implicitly defaults to the empty string.

Kconfig definition

At <Zephyr>/subsys/logging/Kconfig:479

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:34<Zephyr>/subsys/Kconfig:28

Menu path: (Top) → Sub Systems and OS Services → Logging → Enable networking backend

config LOG_BACKEND_NET_SERVER
    string "Syslog server IP address"
    depends on LOG_BACKEND_NET && !LOG_MINIMAL && LOG
    help
      This can be either IPv4 or IPv6 address.
      Server listen UDP port number can be configured here too.
      Following syntax is supported:
      192.0.2.1:514
      192.0.2.42
      [2001:db8::1]:514
      [2001:db8::2]
      2001:db::42

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)