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상태 보기
- root@myedison:~# cat /etc/wpa_supplicant/wpa_supplicant.conf
- ctrl_interface=/var/run/wpa_supplicant
- ctrl_interface_group=0
- update_config=1
- ap_scan=1
- network={
- ssid="SSID"
- key_mgmt=WPA-PSK
- pairwise=CCMP TKIP
- group=CCMP TKIP WEP104 WEP40
- eap=TTLS PEAP TLS
- psk="password"
- }
- network={
- ssid="SSID"
- key_mgmt=WPA-PSK
- pairwise=CCMP TKIP
- group=CCMP TKIP WEP104 WEP40
- eap=TTLS PEAP TLS
- psk="password"
- }
'ROBOTICS > Intel Edison' 카테고리의 다른 글
Intel Edison에 고정 IP 할당하기 (0) | 2016.06.07 |
---|---|
Socket통신으로 웹에서 LED제어하기 (0) | 2016.02.12 |
웹캠으로 스트리밍 전송하기 (0) | 2016.02.11 |
소켓통신을 통해 웹에서 입력받기 (0) | 2016.02.11 |