pasta sem fio
Estou tentando fazer com que o Ubuntu execute esse script em /etc/network/if-up.d/ para exibir meu AP sem fio via hostapd quando a rede eth0 estiver ativa:
#!/bin/sh # filename: ap_up.sh
/home/adp/bin/ap_ctl --start | tee /home/adp/bin/log/ap_ctl_start.txt
/home/adp/bin/ap_ctl --ics | tee /home/adp/bin/log/ap_ctl_ics.txt
No entanto, tenho espaços entre cada uma dessas linhas, mas não consigo descobrir como colá-las como escritas usando esse formato de código. sh ignora o espaço em branco, sim?
Uma vez logado no adp (non root), nenhum registro foi criado - e confirmado com o ifconfig - o wlan0 não está ativo e o script não foi executado.
Eu posso executar manualmente o script (enquanto o root, obviamente) e ele fará com que a interface fique bem. Eu simplesmente não consigo fazer o Ubuntu fazer isso e acho que tem algo a ver com o ap_up.sh está localizado no root e o adp não tem acesso ao root. Estou no caminho certo?
UPDATE: movido script para /usr/local/bin
e corrigido todos os caminhos de arquivo e reinicializado. Desta vez, ele desligou na tela inicial do boot do Ubuntu dizendo que esperará mais 60 segundos para esperar por uma configuração de rede, dizendo depois que irá inicializar sem a configuração completa da rede.
Meu --start log parecia bem e o wlan0
parece bem em ifconfig
. iwconfig
mostra que está no modo mestre ... mas meu telefone não consegue ver.
/var/log/hostapd.log
ficou assim:
random: Trying to read entropy from /dev/random
Configuration file: /etc/hostapd/hostapd.conf
Line 56: DEPRECATED: 'dump_file' configuration variable is not used anymore
ctrl_interface_group=0
rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
nl80211: TDLS supported
nl80211: TDLS external setup
nl80211: Supported cipher 00-0f-ac:1
nl80211: Supported cipher 00-0f-ac:5
nl80211: Supported cipher 00-0f-ac:2
nl80211: Supported cipher 00-0f-ac:4
nl80211: Supported cipher 00-0f-ac:10
nl80211: Supported cipher 00-0f-ac:8
nl80211: Supported cipher 00-0f-ac:9
nl80211: Supported cipher 00-0f-ac:6
nl80211: Supported cipher 00-0f-ac:13
nl80211: Supported cipher 00-0f-ac:11
nl80211: Supported cipher 00-0f-ac:12
nl80211: Using driver-based off-channel TX
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: interface wlan0 in phy phy0
nl80211: Set mode ifindex 3 iftype 3 (AP)
nl80211: Setup AP(wlan0) - device_ap_sme=0 use_monitor=0
nl80211: Subscribe to mgmt frames with AP handle 0x1086790
nl80211: Register frame type=0xb0 nl_handle=0x1086790 match=
nl80211: Register frame command failed (type=176): ret=-114 (Operation already in progress)
nl80211: Register frame match - hexdump(len=0): [NULL]
nl80211: Could not configure driver mode
nl80211: Remove monitor interface: refcount=0
nl80211: Remove beacon (ifindex=3)
netlink: Operstate: ifindex=3 linkmode=0 (kernel-control), operstate=6 (IF_OPER_UP)
nl80211 driver initialization failed.
hostapd_interface_deinit_free(0x1085d90)
hostapd_interface_deinit_free: num_bss=1 conf->num_bss=1
hostapd_interface_deinit(0x1085d90)
hostapd_bss_deinit: deinit bss wlan0
hostapd_cleanup(hapd=0x10897b0 (wlan0))
hostapd_free_hapd_data: Interface wlan0 wasn't started
hostapd_interface_deinit_free: driver=(nil) drv_priv=(nil) -> hapd_deinit
hostapd_interface_free(0x1085d90)
hostapd_interface_free: free hapd 0x10897b0
hostapd_cleanup_iface(0x1085d90)
hostapd_cleanup_iface_partial(0x1085d90)
hostapd_cleanup_iface: free iface=0x1085d90
My --ics é mostrar meus iptables e ele relatou 'networking stop / pre-start, process 810'
Alguma ideia agora?