|
|
Line 14: |
Line 14: |
| key_mgmt=WPA-PSK | | key_mgmt=WPA-PSK |
| proto=WPA | | proto=WPA |
− | psk="yourpasword" | + | psk="yourpassword" |
| } | | } |
| </pre> | | </pre> |
| For more completed documentation see [http://www.freebsd.org/doc/handbook/network-wireless.html Wireless Networking]. | | For more completed documentation see [http://www.freebsd.org/doc/handbook/network-wireless.html Wireless Networking]. |
Latest revision as of 15:46, 18 August 2022
For a none encrypted WiFi network add the following to the file /etc/wpa_supplicant.conf.
network={
ssid="WLAN_6EF1"
bssid=00:13:f7:c4:6e:f3
key_mgmt=NONE
}
For an encrypted WiFi network add the following to the file /etc/wpa_supplicant.conf.
network={
ssid="BSDHacking"
bssid=5c:d9:98:69:df:2e
key_mgmt=WPA-PSK
proto=WPA
psk="yourpassword"
}
For more completed documentation see Wireless Networking.