This commit is contained in:
Maxim Devaev 2025-03-03 03:28:05 +02:00
parent d690c50aec
commit 54b19d76b5
1 changed files with 11 additions and 6 deletions

View File

@ -91,18 +91,23 @@ A number of other parameters can be applied in the same way as with Wi-Fi.
* `WIFI_ESSID=foo`<br>`WIFI_PASSWD=bar`<br>
Configures Wi-Fi with DHCP, described in more detail in previous paragrpah.
Both options must be set simultaneously to avoid incorrect configuration.
Can be followed by several options:
* `WIFI_HIDDEN=1`<br>
Allows to connect to hidden Wi-Fi network. Available only on new images >= 2024.03.12.
* `WIFI_WPA23=1`<br>
Allows to connect to mixed WPA2/WPA3 network. Available only on new images >= 2025.03.03.
* `WIFI_HIDDEN=1`<br>
Allows to connect to hidden Wi-Fi network. Available only on new images >= 2024.03.12.
* `WIFI_ADDR=192.168.0.100/24`<br>`WIFI_DNS=8.8.8.8`<br>`WIFI_GW=192.168.0.1`<br>
Configures a static IP on the Wifi. Only IPv4 is available here. For IPv6 you'll need to change
[systemd configuration files](https://wiki.archlinux.org/title/systemd-networkd) on the live OS.
All three options must be set simultaneously with `WIFI_ESSID` and `WIFI_PASSWD` to avoid incorrect configuration.
* `WIFI_REGDOM=US`<br>
Changes Wi-Fi regulatory domain to the US. Other domains available by
[ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country codes.
* `WIFI_ADDR=192.168.0.100/24`<br>`WIFI_DNS=8.8.8.8`<br>`WIFI_GW=192.168.0.1`<br>
Configures a static IP on the Wifi. Only IPv4 is available here. For IPv6 you'll need to change
[systemd configuration files](https://wiki.archlinux.org/title/systemd-networkd) on the live OS.
All three options must be set simultaneously with `WIFI_ESSID` and `WIFI_PASSWD` to avoid incorrect configuration.
-----