Hostapd dando incompatibilidade de psk para a escala fitia aria

0

Eu tenho tentado fazer com que minha ária de fitbit se conecte a um pi laranja (pense em pi de framboesa).

Tenho clientes conectados usando essa configuração, no entanto, a ária do fitbit me fornece um erro AP-STA-POSSIBLE-PSK-MISMATCH do hostapd.

Aqui está a saída de hostapd

wlan0: interface state UNINITIALIZED->ENABLED
wlan0: AP-ENABLED
wlan0: STA 20:f8:5e:b3:0e:fd IEEE 802.11: authenticated
wlan0: STA 20:f8:5e:b3:0e:fd IEEE 802.11: associated (aid 1)
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 20:f8:5e:b3:0e:fd
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 20:f8:5e:b3:0e:fd
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 20:f8:5e:b3:0e:fd
wlan0: STA 20:f8:5e:b3:0e:fd IEEE 802.11: deauthenticated due to local deauth request
wlan0: STA 20:f8:5e:b3:0e:fd IEEE 802.11: authenticated
wlan0: STA 20:f8:5e:b3:0e:fd IEEE 802.11: associated (aid 1)
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 20:f8:5e:b3:0e:fd
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 20:f8:5e:b3:0e:fd
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 20:f8:5e:b3:0e:fd
wlan0: AP-STA-POSSIBLE-PSK-MISMATCH 20:f8:5e:b3:0e:fd
wlan0: STA 20:f8:5e:b3:0e:fd IEEE 802.11: deauthenticated due to local deauth request

Aqui está o arquivo de configuração hostapd.conf

interface=wlan0
driver=nl80211
ssid=orangepi
hw_mode=b
channel=6
wpa=2
auth_algs=1
wpa_passphrase=passwordpasswordpassword
wpa_key_mgmt=WPA-PSK
wpa_pairwise=CCMP
rsn_pairwise=CCMP
#wpa_psk_file=/etc/hostapd/hostapd.wpa_psk
bridge=br0
wmm_enabled=0
logger_stdout=1
logger_stdout_level=2

Script que estou usando para fazer o ap e ligar a conexão com eth0

#/bin/sh
killall wpa_supplicant
brctl addbr br0
brctl addif br0 eth0 wlan0

dhclient br0

hostapd /etc/hostapd/hostapd.conf

Alguém tem alguma ideia?

    
por James McDonnell 20.02.2017 / 06:26

1 resposta

0

Acabou sendo problemas de dhcp. Eu não tinha configurado o dnsmasq para retransmitir o dhcp para o gateway.

Eu adicionei as duas linhas ao script:

killall dnsmasq

dnsmasq --dhcp-relay=<local address>,<server address>

E substituiu os endereços IP na < & gt ;, e voila.

Funciona, não direi que é particularmente estável aha.

#/bin/sh
killall wpa_supplicant
killall dnsmasq
brctl addbr br0
brctl addif br0 eth0 wlan0

dhclient br0
dnsmasq --dhcp-relay=<local address>,<server address>
hostapd /etc/hostapd/hostapd.conf
    
por 02.03.2017 / 01:39