Llevo días intentando realizar el modo cliente wifi para repartir internet por los ethernet del router y no lo consigo.... y es que no entiendo que puede estar saliendo mal. Para mas inri lo intento con los dos router que tengo con openwrt el 553hg y el ARV7518 y nada.
Os explico.
Realizo un mtd -r erase rootfs_data para empezar desde 0
Conecto el router openwrt con el router principal por cable ethernet.
Cambio /etc/config/network para que el router tenga internet por ethernet y poder instalar luci
Me meto por luci y configuro wifi y entonces tengo internet en todos los ethernet del router y en el wifi.
Finalmente configuro la red wifi para conectarse al router principal como cliente normal.
Desconecto el cable que suministraba internet por cable del router openwrt y conecto el PC por cable al router openwrt.
Pues nada no consigo que transfiera internet hacia el ethernet. Por supuesto desconecto el firewall con /etc/init.d/firewall stop /etc/init.d/firewall disable
Como vereis en la configuración ahora mismo los tengo en la misma red. Pero hace lo mismo si separo las redes.
Si hago un ping forzado desde cada una de las interfaces se ve que br-lan resuelve dns pero no sale a internet.
root@OpenWrt:/# ping
www.google.es -I br-lan
PING
www.google.es (173.194.34.216): 56 data bytes
^C
---
www.google.es ping statistics ---
49 packets transmitted, 0 packets received, 100% packet loss
Desde la red wifi funciona bien
ping
www.google.es -I wlan0
PING
www.google.es (173.194.34.215): 56 data bytes
64 bytes from 173.194.34.215: seq=0 ttl=56 time=297.409 ms
64 bytes from 173.194.34.215: seq=1 ttl=56 time=293.146 ms
He intentado forzar un poco el tema intentando que funciona a traves de ethernet con esto pero nada.
[spoiler]root@OpenWrt:/# route add -net default gw 192.168.0.1 br-lan
root@OpenWrt:/# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.0.1 0.0.0.0 UG 0 0 0 br-lan
192.168.0.0 * 255.255.255.0 U 0 0 0 br-lan
192.168.0.0 * 255.255.255.0 U 0 0 0 wlan0
root@OpenWrt:/# ping
www.google.esPING
www.google.es (173.194.34.223): 56 data bytes
^C
---
www.google.es ping statistics ---
7 packets transmitted, 0 packets received, 100% packet loss
root@OpenWrt:/# ping
www.google.es -I wlan0
PING
www.google.es (173.194.34.215): 56 data bytes
^C
---
www.google.es ping statistics ---
12 packets transmitted, 0 packets received, 100% packet loss
root@OpenWrt:/# ping
www.google.es -I br-lan
PING
www.google.es (173.194.34.216): 56 data bytes
^C
[/spoiler]
Os adjunto la configuración.
etc/config/network
[spoiler]
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 type 'bridge'
option proto 'static'
option ipaddr '192.168.0.22'
option netmask '255.255.255.0'
option ifname 'eth0.1'
option gateway '192.168.0.1'
option dns '192.168.0.1 8.8.8.8'
config switch
option name 'eth0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'eth0'
option vlan '1'
option ports '0t 2 3 4 5'
config adsl-device 'adsl'
option fwannex 'a'
option annex 'a2p'
config atm-bridge 'atm'
option unit '0'
option vpi '1'
option vci '32'
option encaps 'llc'
option payload 'bridged'
config interface 'wan'
option ifname 'nas0'
option proto 'pppoe'
option username 'foo'
option password 'bar'
config interface 'wifi'
option proto 'dhcp'
[/spoiler]
/etc/config/wireless
[spoiler]config wifi-device 'radio0'
option type 'mac80211'
option macaddr '88:censored'
option hwmode '11ng'
option htmode 'HT20'
list ht_capab 'SHORT-GI-40'
list ht_capab 'TX-STBC'
list ht_capab 'RX-STBC1'
list ht_capab 'DSSS_CCK-40'
option disabled '0'
option country '00'
option channel '6'
config wifi-iface
option network 'wifi'
option ssid 'Vodafone_****'
option encryption 'psk'
option device 'radio0'
option mode 'sta'
option bssid '00:censored:E2'
option key 'censored'
[/spoiler]
route
[spoiler]
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.0.1 0.0.0.0 UG 0 0 0 wlan0
192.168.0.0 * 255.255.255.0 U 0 0 0 br-lan
192.168.0.0 * 255.255.255.0 U 0 0 0 wlan0
[/spoiler]