Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add snippets for setting up IPv6 and dual IPv4/6 for Wi-Fi #87644

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions snippets/wifi-ip/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.. _snippet-wifi-ip:

Wi-Fi IPv4 and IPv6 Snippet (wifi-ip)
#####################################

.. code-block:: console

west build -S wifi-ip [...]

Overview
********

This snippet enables IPv4 and IPv6 Wi-Fi support in supported networking samples.
The sample execution is postponed until Wi-Fi connectivity is established.

Use Wi-Fi shell to connect to the Wi-Fi network:

.. code-block:: console

wifi connect -s <SSID> -k <key_management> -p <passphrase>

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

Hardware support for:

- :kconfig:option:`CONFIG_WIFI`
- :kconfig:option:`CONFIG_WIFI_USE_NATIVE_NETWORKING`
3 changes: 3 additions & 0 deletions snippets/wifi-ip/snippet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name: wifi-ip
append:
EXTRA_CONF_FILE: wifi-ip.conf
32 changes: 32 additions & 0 deletions snippets/wifi-ip/wifi-ip.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Wi-Fi
CONFIG_WIFI=y
CONFIG_NET_L2_ETHERNET=y
CONFIG_WIFI_NM_WPA_SUPPLICANT=y

# Make sure there is enough resources for supplicant and most of the samples
CONFIG_MAIN_STACK_SIZE=2048
CONFIG_ZVFS_OPEN_MAX=24
CONFIG_NET_MAX_CONN=10
CONFIG_ZVFS_POLL_MAX=10

# Enable both IPv4 and IPv6
CONFIG_NET_IPV6=y
CONFIG_NET_IPV4=y

# DHCPv4 and DHCPv6 are enabled
CONFIG_NET_DHCPV4=y
CONFIG_NET_DHCPV6=y
CONFIG_NET_CONFIG_MY_IPV4_ADDR=""
CONFIG_NET_CONFIG_MY_IPV6_ADDR=""
CONFIG_NET_CONFIG_INIT_TIMEOUT=0

# DNS
CONFIG_DNS_RESOLVER=y

# Connection manager
CONFIG_NET_CONNECTION_MANAGER=y

# Wi-Fi shell
CONFIG_NET_SHELL=y
CONFIG_NET_L2_WIFI_SHELL=y
CONFIG_SHELL_STACK_SIZE=5200
28 changes: 28 additions & 0 deletions snippets/wifi-ipv6/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.. _snippet-wifi-ipv6:

Wi-Fi IPv6 Snippet (wifi-ipv6)
##############################

.. code-block:: console

west build -S wifi-ipv6 [...]

Overview
********

This snippet enables IPv6 Wi-Fi support in supported networking samples.
The sample execution is postponed until Wi-Fi connectivity is established.

Use Wi-Fi shell to connect to the Wi-Fi network:

.. code-block:: console

wifi connect -s <SSID> -k <key_management> -p <passphrase>

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

Hardware support for:

- :kconfig:option:`CONFIG_WIFI`
- :kconfig:option:`CONFIG_WIFI_USE_NATIVE_NETWORKING`
3 changes: 3 additions & 0 deletions snippets/wifi-ipv6/snippet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name: wifi-ipv6
append:
EXTRA_CONF_FILE: wifi-ipv6.conf
31 changes: 31 additions & 0 deletions snippets/wifi-ipv6/wifi-ipv6.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Wi-Fi
CONFIG_WIFI=y
CONFIG_NET_L2_ETHERNET=y
CONFIG_WIFI_NM_WPA_SUPPLICANT=y

# Make sure there is enough resources for supplicant and most of the samples
CONFIG_MAIN_STACK_SIZE=2048
CONFIG_ZVFS_OPEN_MAX=24
CONFIG_NET_MAX_CONN=10
CONFIG_ZVFS_POLL_MAX=10

# IPv6 only for now
CONFIG_NET_IPV6=y
CONFIG_NET_CONFIG_NEED_IPV4=n
CONFIG_NET_IPV4=n

# DHCPv6
CONFIG_NET_DHCPV6=y
CONFIG_NET_CONFIG_MY_IPV6_ADDR=""
CONFIG_NET_CONFIG_INIT_TIMEOUT=0

# DNS
CONFIG_DNS_RESOLVER=y

# Connection manager
CONFIG_NET_CONNECTION_MANAGER=y

# Wi-Fi shell
CONFIG_NET_SHELL=y
CONFIG_NET_L2_WIFI_SHELL=y
CONFIG_SHELL_STACK_SIZE=5200