aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Neugent <garrett@gneugent.com>2026-02-22 02:21:05 +0000
committerAlexander Ziaee <ziaee@FreeBSD.org>2026-02-27 00:41:37 +0000
commit837f3c38a393e6d5902583b12020da7f00961f07 (patch)
tree0b42aee533c82356a5aee305476bbc74c04a8559
parent0f71ddbf2677a99106aff72e9bdb92c93c51f1c6 (diff)
hanbook/network: Use consistent wireless interface
This chapter alternated between `iwn0` and `iwm0` for the interface. Reviewed by: carlavilla, ziaee Closes: https://github.com/freebsd/freebsd-doc/pull/613
-rw-r--r--documentation/content/en/books/handbook/network/_index.adoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/content/en/books/handbook/network/_index.adoc b/documentation/content/en/books/handbook/network/_index.adoc
index 2dc5de6c38..b95dcf732c 100644
--- a/documentation/content/en/books/handbook/network/_index.adoc
+++ b/documentation/content/en/books/handbook/network/_index.adoc
@@ -107,7 +107,7 @@ em0@pci0:0:25:0: class=0x020000 rev=0x03 hdr=0x00 vendor=0x8086 device=0x
class = network
subclass = ethernet
--
-iwn0@pci0:3:0:0: class=0x028000 rev=0x00 hdr=0x00 vendor=0x8086 device=0x4237 subvendor=0x8086 subdevice=0x1211
+iwm0@pci0:3:0:0: class=0x028000 rev=0x00 hdr=0x00 vendor=0x8086 device=0x4237 subvendor=0x8086 subdevice=0x1211
vendor = 'Intel Corporation' <1>
device = 'PRO/Wireless 5100 AGN [Shiloh] Network Connection' <2>
class = network
@@ -607,7 +607,7 @@ Replace it with the password of the wireless network.
The third step is to add the network interface entry to configure the network on startup.
Obtain the network device interface by using the sysctl `net.wlan.devices`.
-In the listing below, the output of this sysctl shows the network device interface is "iwn0".
+In the listing below, the output of this sysctl shows the network device interface is "iwm0".
[source,shell]
....
@@ -621,11 +621,11 @@ The output should be similar to the following:
net.wlan.devices: iwm0
....
-In the sysrc line that follows, replace "iwn0" with the output of the sysctl command if needed.
+In the sysrc line that follows, replace "iwm0" with the output of the sysctl command if needed.
[source,shell]
....
-# sysrc wlans_iwn0="wlan0"
+# sysrc wlans_iwm0="wlan0"
# sysrc ifconfig_wlan0="WPA DHCP"
....