Posso verificar se create_ap funciona?

2

No momento, estou usando o script create_ap para emitir um ponto de acesso Wi-Fi (WAP) usando meu Raspberry Pi, que é correndo Raspbian. Como posso verificar se o AP está funcionando usando um script bash?

Para sua informação, aqui está como eu a inicio:

create_ap --ieee80211n --ht_capab '[HT40+]' -n wlan0 $ESSID $PWD 
    
por Magix 18.06.2016 / 16:13

1 resposta

1

Conforme explicado pelo criador em esta edição no GitHub , um cheque como o seguinte fará o truque :

if [[ create_ap --list-running | grep wlan0 | wc -l -ge 1 ]]
then
    echo "It works !!"
fi

Como funciona:

create_ap --list-running : shows all the interfaces on which create_ap is running
grep wlan0 : get the lines where we can find the interface
wc -l : count the lines
    
por 22.06.2016 / 13:57