24cun_cn 发表于 2015-10-2 08:41:31

linux下WIFI的AP搜索及连接方法

  wpa_supplicant -Dwext -ieth1 -c/etc/wpa_supplicant.conf&
wpa_cli save_config
wpa_cli reconfigure
wpa_cli list_networks
wpa_cli status
wpa_cli remove_network 0
wpa_cli -ieth1 scan//搜索无线网
wpa_cli -ieth1 scan_results//显示搜索结果
wpa_cli -ieth1 add_network
  
例如:
wpa_cli -ieth1 add_network
wpa_cli -ieth1 set_network 1 ssid "TEST_IP"
wpa_cli -ieth1 set_network 1 key_mgmt NONE
wpa_cli -ieth1 set_network 1 wep_key0 "2223344"
wpa_cli -ieth1 set_network 1 wep_tx_keyidx 0
wpa_cli -ieth1 select_network 1
wpa_cli -ieth1 enable_network 1
wpa_cli -ieth1 quit
wpa_cli -ieth1 dhclient eth1
  wpa_supplicant -Dwext -ieth1 -c/etc/wpa_supplicant.conf&
wpa_cli -ieth1
add_network (assume returns 1)
set_network 1 ssid "TEST_IP"
set_network 1 key_mgmt NONE
set_network 1 wep_key0"123456" //“your ap passwork”(if usting ASCII, it need double quotation marks, if using hex, then don`t need the double quotation marks)
set_network 1 wep_tx_keyidx 0
select_network 1(optional, remember, if you are connecting with another AP, you should select it to disable the another)
enable_network 1
quit
dhclient eth1
页: [1]
查看完整版本: linux下WIFI的AP搜索及连接方法