• Check the driver
    $ lspci -k

  • Open the network card
    $ ip link set <设备名> up

  • Check device status
    $ ip link show wls1

if there is an UP in <> then the device is READY

Then can use the tools to connect wireless router

manual way

  • check the interface or device
    $ iw dev

  • connection status
    $ iw dev wls1 link

  • 查看接入点
    $ iw dev wlan0 scan |less

  • 无加密
    $ iw wls1 connect MyEssid

  • WEP
    $ iw dev wls1 connect your_essid key 0:your_key

WPA/WPA2

  • create passphrase file
    check the example /etc/wpa_supplicant/wpa_supplicant.conf
    or use `$ wpa_passphrase testapn password' to create a password file

  • connect with wpa_supplicant
    $ wpa_supplicant -iwlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf

相关文章:

  • 2022-01-01
  • 2022-12-23
  • 2021-08-04
  • 2022-12-23
  • 2021-08-21
  • 2022-12-23
猜你喜欢
  • 2022-02-08
  • 2021-10-07
  • 2021-11-28
  • 2021-06-21
  • 2021-08-14
相关资源
相似解决方案