Skip to content

Commit

Permalink
doc: net: Add info about misc network config options
Browse files Browse the repository at this point in the history
Add information about these missing Kconfig options:

CONFIG_NET_CONFIG_MY_IPV6_ADDR
CONFIG_NET_CONFIG_PEER_IPV6_ADDR
CONFIG_NET_CONFIG_MY_IPV4_ADDR
CONFIG_NET_CONFIG_MY_IPV4_NETMASK
CONFIG_NET_CONFIG_MY_IPV4_GW
CONFIG_NET_CONFIG_PEER_IPV4_ADDR

Fixes zephyrproject-rtos#75211

Signed-off-by: Jukka Rissanen <[email protected]>
  • Loading branch information
jukkar authored and DashingR committed Jul 15, 2024
1 parent 4189a9c commit 648d65b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions doc/connectivity/networking/api/net_config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,18 @@ setup the system:
this option tells that the network application needs IPv6 router to exists
before continuing. This means in practice that the application wants to wait
until it receives IPv6 router advertisement message before continuing."
":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV6_ADDR`","Local static IPv6 address assigned to
the default network interface."
":kconfig:option:`CONFIG_NET_CONFIG_PEER_IPV6_ADDR`","Peer static IPv6 address. This is mainly
useful in testing setups where the application can connect to a pre-defined host."
":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_ADDR`","Local static IPv4 address assigned to
the default network interface."
":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_NETMASK`","Static IPv4 netmask assigned to the IPv4
address."
":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_GW`","Static IPv4 gateway address assigned to the
default network interface."
":kconfig:option:`CONFIG_NET_CONFIG_PEER_IPV4_ADDR`","Peer static IPv4 address. This is mainly
useful in testing setups where the application can connect to a pre-defined host."

Sample usage
************
Expand Down

0 comments on commit 648d65b

Please sign in to comment.