当前位置:网站首页>WiFi wpa_ Detailed description of supplicant hostpad interface
WiFi wpa_ Detailed description of supplicant hostpad interface
2022-07-05 08:00:00 【Drink more hot water-】
wpa_supplicant/hostapd yes Linux Next use as sta/ap Interface for network card operation , The project is basically completed , Organize here .
One 、wpa_supplicant part
wpa_supplicant It's a connection 、 To configure WIFI Tools for . It mainly includes two programs :wpa_supplicant And wpa_cli. The relationship between the two is server And client The relationship between . Usually , We can go through wpa_cli To carry out WIFI Configuration and connection of , If there is a special need , You can write an application to call directly wpa_supplicant Direct development of interfaces .
This article mainly talks about how to pass wpa_cli Conduct WIFI Configuration and connection of .
2. Usage method
2.1 start-up wpa_supplicant application
wpa_supplicant -D nl80211 -i wlan0 -c /etc/wpa_supplicant.conf -B
Be careful :/etc/wpa_supplicant.conf In the document , Add the following code .
ctrl_interface=/var/run/wpa_supplicant
update_config=1
2.2 start-up wpa_cli application
wpa_cli -i wlan0 scan Search the neighborhood wifi The Internet
wpa_cli -i wlan0 scan_result Print search wifi Network results
wpa_cli -i wlan0 add_network Add a network connection
2.21 Such as If you want to connect, the encryption method is :[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS] (wpa encryption ) wifi The name is :wifi_name wifi The password is :wifi_psk
wpa_cli -i wlan0 set_network 0 ssid '"wifi_name"'
wpa_cli -i wlan0 set_network 0 psk '"wifi_psk"'
wpa_cli -i wlan0 enable_network 0
2.22 If you want to connect, the encryption method is :[WEP][ESS] (wep encryption )
wifi The name is :wifi_name
wifi The password is :wifi_psk
wpa_cli -i wlan0 set_network 0 ssid '"wpa_name"'
wpa_cli -i wlan0 set_network 0 key_mgmt NONE
wpa_cli -i wlan0 set_network 0 wep_key0 '"wap_psk"'
wpa_cli -i wlan0 enable_network 0
2.23 If you want to connect, the encryption method is :[ESS] ( No encryption )
wifi The name is :wifi_name
wpa_cli -i wlan0 set_network 0 ssid '"wifi_name"'
wpa_cli -i wlan0 set_network 0 key_mgmt NONE
wpa_cli -i wlan0 enable_network 0
2.3 Distribute ip,netmask,gateway,dns
udhcpc -i wlan0 -s /etc/udhcpc.script -q
completion of enforcement , You can connect to the network .
2.4 Save connection
wpa_cli -i wlan0 save_config
2.5 disconnect
wpa_cli -i wlan0 disable_network 0
2.6 Connect to an existing connection
$ wpa_cli -i wlan0 list_network List all saved connections
$ wpa_cli -i wlan0 select_network 0 Connect the 1 A saved connection
$ wpa_cli -i wlan0 enable_network 0 Enabling section 1 A saved connection
2.7 To break off wifi
$ ifconfig wlan0 down
$ killall udhcpc
$ killall wpa_supplicant
Two 、 hostapd part
hostapd yes Host Access Point Daemon , Provide information on Linux The strength of wireless access points WPA2 Encryption and authentication .
To configure hostapd It's simple , It supports WPA2-Personal and Enterprise, Provide for the right to WPA2-Personal Unique modification of , It can make managing it more complex or simpler .
udhcpd -f /etc/wificfg/udhcpd.conf &
hostapd -t /etc/wificfg/hostapd.conf &
/*************************************************************************************************************************/
3、 ... and 、 Actual operation script :
The above is a memo written according to your usual work , Query usage ; Remember the following sta/ap The operation of , And several configuration files under embedded :
1. wpa-supplicant Common operation :
wpa_supplicant -D nl80211 -i wlan0 -c/home/ky/wpa_supplicant.conf -B
wpa_cli -i wlan0 scan
wpa_cli -i wlan0 scan_result
wpa_cli -i wlan0 add_network
wpa_cli -i wlan0 set_network 0 ssid '"ky"'
wpa_cli -i wlan0 set_network 0 psk '"12345678"'
wpa_cli -i wlan0 enable_network 0
udhcpc -i wlan0
wpa_cli -i wlan0 disable_network 0
wpa_cli -i wlan0 disable_network 1
wpa_cli -i wlan3 remove_network 0
wpa_cli -i wlan0 save_config
wpa_cli -i wlan0 list_network
wpa_cli -i wlan0 select_network 2
wpa_cli -i wlan0 enable_network 2
udhcpc -i wlan0
wpa_supplicant.conf Profile contents :
ctrl_interface=/var/run/wpa_supplicant
update_config=1
network={
ssid="hky"
psk="12345678"
}
2.hostapd Shoushun :
ap The model is relatively simple
udhcpd -f /etc/wificfg/udhcpd.conf &
hostapd -t /etc/wificfg/hostapd.conf &
udhcpd.conf Profile contents : It is similar to the router configuration interface
It is worth noting that Lease documents (lease_file ) This configuration file , Usually based on /var/tmp/ In the catalog ,WiFi AP The mode cannot be assigned IP Maybe this file was not created , use touch Just build one
start 192.168.219.2
end 192.168.219.254
interface wlan1
lease_file /etc/wificfg/udhcpd.lease
opt dns 168.95.1.1 192.168.10.2 192.168.10.10
option subnet 192.168.0.0 netmask 255.255.255.0
opt router 192.168.10.2
opt wins 192.168.10.10
option dns 129.219.13.81
option domain local
option lease 864000
hostapd.conf Profile contents : Formulated the AP Of ssid password encryption a/b/g/n Etc , Of course, the working mode can also be WiFi Module commands to change
#
# This will give you a minimal, insecure wireless network.
#
# DO NOT BE SATISFIED WITH THAT!!!
#
# A complete, well commented example configuration file is
# available here:
#
# /usr/share/doc/hostapd/hostapd.conf
#
# For more information, look here:
#
# http://wireless.kernel.org/en/users/Documentation/hostapd
# ctrl_interface=/var/run/hostapd
ctrl_interface_group=root
# Some usable default settings...
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
# Uncomment these for base WPA & WPA2 support with a pre-shared key
wpa=2
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
# DO NOT FORGET TO SET A WPA PASSPHRASE!!
wpa_passphrase=12345678
# Most modern wireless drivers in the kernel need driver=nl80211
driver=nl80211
# Customize these for your local configuration...
interface=wlan1
hw_mode=g
channel=11
ssid=ssidtest
over 了
边栏推荐
- [professional literacy] core conferences and periodicals in the field of integrated circuits
- Screen record of the opening ceremony of the Beijing winter olympics 2
- Factors affecting the quality of slip rings in production
- Cadence simulation encountered "input.scs": can not open input file change path problem
- 2021-10-28
- 导电滑环磨损快的原因
- How to migrate the device data accessed by the RTSP of the easycvr platform to easynvr?
- Shape template matching based on Halcon learning [vi] find_ mirror_ dies. Hdev routine
- Halcon's practice based on shape template matching [1]
- STM32 learning method
猜你喜欢

High end electronic chips help upgrade traditional oil particle monitoring

Factors affecting the quality of slip rings in production

L'étude a révélé que le système de service à la clientèle du commerce électronique transfrontalier a ces cinq fonctions!
![C WinForm [view status bar -- statusstrip] - Practice 2](/img/40/63065e6c4dc4e9fcb3e898981f518a.jpg)
C WinForm [view status bar -- statusstrip] - Practice 2

找不到实时聊天软件?给你推荐电商企业都在用的!
![C WinForm [exit application] - practice 3](/img/25/30c795cc3fa6931eb1d733719d4ad0.jpg)
C WinForm [exit application] - practice 3

Carrier period, electrical speed, carrier period variation

Ads learning record (lna_atf54143)

C, Numerical Recipes in C, solution of linear algebraic equations, LU decomposition source program

UEFI development learning 3 - create UEFI program
随机推荐
How to select conductive slip ring
UEFI development learning 4 - getting to know variable services
如何进行导电滑环选型
Correlation based template matching based on Halcon learning [II] find_ ncc_ model_ defocused_ precision. hdev
Altium designer 19.1.18 - change the transparency of copper laying
C language # and #
研究发现,跨境电商客服系统都有这五点功能!
OLED 0.96 inch test
Ads usage skills
Global and Chinese market of plastic recycling machines 2022-2028: Research Report on technology, participants, trends, market size and share
Fundamentals of C language
C WinForm [display real-time time in the status bar] - practical exercise 1
Shape template matching based on Halcon learning [9] PM_ multiple_ dxf_ models. Hdev routine -- [read and write XLD from DXF file]
[professional literacy] core conferences and periodicals in the field of integrated circuits
About yolov3, conduct map test directly
Software designer: 03 database system
PMSM dead time compensation
Halcon's practice based on shape template matching [1]
Shape template matching based on Halcon learning [vi] find_ mirror_ dies. Hdev routine
研究發現,跨境電商客服系統都有這五點功能!