Skip to content

Commit 75a8565

Browse files
Update host-wireless-network.adoc
This change makes it more obvious where the SSID is configured in this one-liner (removed ambiguity with con-name). Matches the style of the other example a few paragraphs above (see "Enable hotspot"),
1 parent b8be5c5 commit 75a8565

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/asciidoc/computers/configuration/host-wireless-network.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ Finally, add your wireless hotspot connection to the bridge. You can either add
7676
$ sudo nmcli connection modify 'Hotspot' master bridge0
7777
----
7878

79-
* If you have not yet created a wireless hotspot connection, create a new interface and add it to the bridge with a single command, replacing the `<hotspot-password>` placeholder with a password of your choice:
79+
* If you have not yet created a wireless hotspot connection, create a new interface and add it to the bridge with a single command, replacing the `<hotspot-ssid>` and `<hotspot-password>` placeholders with a network name and password of your choice, respectively:
8080
+
8181
[source,console?prompt=$]
8282
----
8383
$ sudo nmcli connection add con-name 'Hotspot' \
8484
ifname wlan0 type wifi slave-type bridge master bridge0 \
85-
wifi.mode ap wifi.ssid Hotspot wifi-sec.key-mgmt wpa-psk \
85+
wifi.mode ap wifi.ssid <hotspot-ssid> wifi-sec.key-mgmt wpa-psk \
8686
wifi-sec.proto rsn wifi-sec.pairwise ccmp \
8787
wifi-sec.psk <hotspot-password>
8888
----

0 commit comments

Comments
 (0)