Intel Edison에서 wifi를 설정하는 방법

아래 명령어를 사용하여 설정한다.

configure_edison --setup




root@edison:~# configure_edison --setup


Configure Edison: Device Password


Enter a new password (leave empty to abort)

This will be used to connect to the access point and login to the device.

Password:       ********

Please enter the password again:        ********

The device password has been changed.


Configure Edison: Device Name


Give this Edison a unique name.

This will be used for the access point SSID and mDNS address.

Make it at least five characters long (leave empty to skip): ladarEdison

Is ladarEdison correct? [Y or N]: y


Do you want to set up wifi? [Y or N]: y


Configure Edison: WiFi Connection


Scanning: 1 seconds left


0 :     Rescan for networks

1 :     Exit WiFi Setup

2 :     Manually input a hidden SSID

3 :     tospia

4 :     Target5G


Enter 0 to rescan for networks.

Enter 1 to exit.

Enter 2 to input a hidden network SSID.

Enter a number between 3 to 13 to choose one of the listed network SSIDs: 13

Is star_test3 correct? [Y or N]: y

Password must be between 8 and 63 characters.

What is the network password?: ********

Initiating connection to star_test3. Please wait...

Attempting to enable network access, please check 'wpa_cli status' after a minute to confirm.

Done. Please connect your laptop or PC to the same network as this device and go to http://192.168.1.103 or http://ladarEdison.local in your browser.

root@edison:~#


 

 


Edison에 설정된 wifi상태 보기


  1. root@myedison:~# cat /etc/wpa_supplicant/wpa_supplicant.conf  
  2. ctrl_interface=/var/run/wpa_supplicant  
  3. ctrl_interface_group=0  
  4. update_config=1  
  5. ap_scan=1  
  6.   
  7.   
  8. network={  
  9.   ssid="SSID"  
  10.   
  11.   key_mgmt=WPA-PSK  
  12.   pairwise=CCMP TKIP  
  13.   group=CCMP TKIP WEP104 WEP40  
  14.   eap=TTLS PEAP TLS  
  15.   psk="password"  
  16. }  
  17.   
  18. network={  
  19.   ssid="SSID"  
  20.   
  21.   key_mgmt=WPA-PSK  
  22.   pairwise=CCMP TKIP  
  23.   group=CCMP TKIP WEP104 WEP40  
  24.   eap=TTLS PEAP TLS  
  25.   psk="password"  
  26. }  


+ Recent posts