Eu tenho o dispositivo TP-LINK MR3020, que está conectado ao meu laptop via cabo UTP. É acessível. Eu instalei a distribuição completa recentemente, mas depois a quebrei e fui do zero com o failsafe / firstboot.
Agora eu removi o luci e gostaria de configurar tudo a partir da linha de comando.
Eu tenho a rede Wi-Fi disponível e quero que meu dispositivo se conecte a ele e compartilhe a internet com minha conexão UTP.
Aqui está o conteúdo do meu arquivo sem fio / etc / config:
config wifi-device radio0
option type mac80211
option channel auto
option macaddr e8:de:27:54:68:78
option hwmode 11ng
option htmode HT20
list ht_capab SHORT-GI-20
list ht_capab SHORT-GI-40
list ht_capab RX-STBC1
list ht_capab DSSS_CCK-40
# REMOVE THIS LINE TO ENABLE WIFI:
option disabled 0
#config wifi-iface
# option device radio0
# option network lan
# option mode ap
# option ssid OpenWrt
# option encryption none
# option disabled 1
config wifi-iface
option device radio0
option network inthemoon
option mode sta
option ssid 'In The Moon Network'
option encryption 'psk2'
option key 'mykey'
Aqui está o conteúdo do meu arquivo / etc / config / network:
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config interface 'lan'
option ifname 'eth0'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
config interface 'inthemoon'
option proto 'dhcp'
Eu estava pensando que isso é suficiente para preencher a tarefa.
E aqui estão os resultados de alguns comandos:
Successfully initialized wpa_supplicant
root@MR3020:~# ifup inthemoon
Successfully initialized wpa_supplicant
root@MR3020:~# wifi
Successfully initialized wpa_supplicant
root@MR3020:~#
Infelizmente, não vejo qualquer sinal de que a conexão Wi-Fi esteja funcionando.
Nenhum comando interner funcionando como "ping".
Como ver, o que está acontecendo e como depurar a configuração?
UPDATE
logread
diz "Enviando descubra" e "wan está desativado" (renomei inthemoon para wan e radio0 para wlan0, esperando tornar-se compatível com outras configurações como firewall
)
UPDATE 2
Log completo após o comando
root@MR3020:/etc/config# /etc/init.d/network restart ; ifup wan ; ping 192.168.10.1
Successfully initialized wpa_supplicant
Successfully initialized wpa_supplicant
PING 192.168.10.1 (192.168.10.1): 56 data bytes
ping: sendto: Network is unreachable
192.168.10.1
é o endereço IP de um gateway. No gateway, não vejo nenhuma concessão de DHCP do dispositivo.
Log:
Jan 1 00:53:38 MR3020 daemon.notice netifd: Interface 'lan' is now down
Jan 1 00:53:38 MR3020 kern.info kernel: [ 3218.140000] br-lan: port 1(eth0) entered disabled state
Jan 1 00:53:38 MR3020 kern.info kernel: [ 3218.160000] device eth0 left promiscuous mode
Jan 1 00:53:38 MR3020 kern.info kernel: [ 3218.160000] br-lan: port 1(eth0) entered disabled state
Jan 1 00:53:38 MR3020 kern.info kernel: [ 3218.160000] eth0: link down
Jan 1 00:53:38 MR3020 daemon.notice netifd: Interface 'loopback' is now down
Jan 1 00:53:38 MR3020 daemon.notice netifd: Interface 'wan' is now down
Jan 1 00:53:38 MR3020 user.info firewall: removing lan (br-lan) from zone lan
Jan 1 00:53:40 MR3020 kern.info kernel: [ 3220.270000] device eth0 entered promiscuous mode
Jan 1 00:53:40 MR3020 daemon.notice netifd: Interface 'lan' is now up
Jan 1 00:53:40 MR3020 daemon.notice netifd: Interface 'loopback' is now up
Jan 1 00:53:40 MR3020 kern.info kernel: [ 3220.510000] eth0: link up (100Mbps/Full duplex)
Jan 1 00:53:40 MR3020 kern.info kernel: [ 3220.510000] br-lan: port 1(eth0) entered forwarding state
Jan 1 00:53:40 MR3020 kern.info kernel: [ 3220.520000] br-lan: port 1(eth0) entered forwarding state
Jan 1 00:53:41 MR3020 user.notice ifup: Enabling Router Solicitations on lan (br-lan)
Jan 1 00:53:42 MR3020 user.info firewall: adding lan (br-lan) to zone lan
Jan 1 00:53:42 MR3020 kern.info kernel: [ 3222.520000] br-lan: port 1(eth0) entered forwarding state
Jan 1 00:53:43 MR3020 user.notice ifup: Enabling Router Solicitations on loopback (lo)
Jan 1 00:53:46 MR3020 daemon.notice netifd: Interface 'wan' is now down
Jan 1 00:53:47 MR3020 daemon.notice netifd: wan (10625): udhcpc (v1.19.4) started
Jan 1 00:53:47 MR3020 daemon.notice netifd: wan (10625): Sending discover...
Jan 1 00:53:47 MR3020 daemon.notice netifd: wan (10625): udhcpc: sendto: Network is down
Jan 1 00:53:47 MR3020 daemon.notice netifd: wan (10625): Read error: Network is down, reopening socket
Jan 1 00:53:47 MR3020 daemon.notice netifd: wan (10625): udhcpc: bind: No such device
Jan 1 00:53:47 MR3020 daemon.notice netifd: Interface 'wan' is now down
O mesmo registro ocorre se eu inserir uma senha sem fio incorreta.