Hello,
I have bought a HAME A15 clone to use the integrated USB host to control my Neato Botvac Robot.
So far, I have succeeded in packaging and flashing my own OpenWrt image but am stuck at properly configuring the wifi.
Ideally, the A15 would just be just like any other client device getting its ip via dhcp, so I tried to configure it in 'sta' mode. My config files are attached.
Although the ifconfig looks good to me and the A15 gets an ip address from my dhcp server, I can't ping or telnet it nor can i ping the main router from the A15. the /etc/config/firewall is empty, so i guess no firewall restrictions apply.
Can anyone give me a hint what I am doing wrong?
---
root@OpenWrt:/# cat /etc/config/wireless
config wifi-device radio0
option type mac80211
option channel auto
option hwmode 11ng
option path 'platform/rt2800_wmac.0'
option htmode HT20
list ht_capab GF
list ht_capab SHORT-GI-20
list ht_capab SHORT-GI-40
list ht_capab RX-STBC1
option disabled 0
config wifi-iface
option device radio0
option network wlan
option mode sta
option ssid xxx
option encryption psk2
option key xxx
root@OpenWrt:/# cat /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.1'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.181.200'
option netmask '255.255.255.0'
option macaddr '21:48:20:03:21:18'
config interface 'wlan'
option proto 'dhcp'
option macaddr '21:48:20:03:21:20'
config interface 'wan'
option ifname 'eth0.2'
option proto 'dhcp'
option macaddr '21:48:20:03:21:19'
config switch
option name 'rt305x'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'rt305x'
option vlan '1'
option ports '0 1 2 3 6t'
config switch_vlan
option device 'rt305x'
option vlan '2'
option ports '4 6t‘
root@OpenWrt:/# ifconfig
br-lan Link encap:Ethernet HWaddr 2E:67:FB:52:1C:5C
inet addr:192.168.181.200 Bcast:192.168.181.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:784 errors:0 dropped:0 overruns:0 frame:0
TX packets:498 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:50732 (49.5 KiB) TX bytes:34042 (33.2 KiB)
eth0 Link encap:Ethernet HWaddr 2E:67:FB:52:1C:5C
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4472 errors:0 dropped:0 overruns:0 frame:0
TX packets:2606 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:395891 (386.6 KiB) TX bytes:574322 (560.8 KiB)
Interrupt:5
eth0.1 Link encap:Ethernet HWaddr 2E:67:FB:52:1C:5C
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:786 errors:0 dropped:0 overruns:0 frame:0
TX packets:498 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:51053 (49.8 KiB) TX bytes:34042 (33.2 KiB)
eth0.2 Link encap:Ethernet HWaddr 2E:67:FB:52:1C:5C
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:142 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:55806 (54.4 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:22553 errors:0 dropped:0 overruns:0 frame:0
TX packets:22553 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1850772 (1.7 MiB) TX bytes:1850772 (1.7 MiB)
wlan0 Link encap:Ethernet HWaddr 2C:67:FB:52:1C:5C
inet addr:192.168.181.19 Bcast:192.168.181.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:679 errors:0 dropped:97 overruns:0 frame:0
TX packets:5 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:32
RX bytes:114787 (112.0 KiB) TX bytes:1539 (1.5 KiB)