Seems ith vlan0 eth1 you can't get different ip range for wifi and eth (I want to assign them to 192.168.1.* for ethernet and 192.168.239.* for wifi)
Wireless access breaks with your suggested changes and X-Wrt now considers that WAN isn't in any of 2 vlans)
firmware_name=X-Wrt
firmware_subtitle=An OpenWrt based firmware.
lan_ifname=br0
lan_ifnames=vlan0 eth1
lan_ipaddr=192.168.1.1
lan_netmask=255.255.255.0
lan_proto=static
vlan0hwname=et0
vlan0ports=1 2 3 5*
vlan1hwname=et0
vlan1ports=0 5
wan_device=vlan1
wan_ifname=vlan1
wan_proto=dhcp
wifi_ifname=br1
wifi_ifnames=eth1
wifi_ipaddr=192.168.239.11
wifi_netmask=255.255.255.0
wifi_proto=static
wifi_stp=1
wl0_akm=none
wl0_channel=0
Edit: wi-fi is visible like this, but there's no address assigned to eth1 and no ping by wi-fi between computer and router.
root@routy:~$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 0 0 0 br0
192.168.239.0 * 255.255.255.0 U 0 0 0 br1
81.67.246.0 * 255.255.254.0 U 0 0 0 vlan1
default gw.net81-67-246 0.0.0.0 UG 0 0 0 vlan1
br1 on router has address 192.168.239.11 and eth1 is unassigned now
root@routy:~$ ifconfig br1
br1 Link encap:Ethernet HWaddr 00:00:00:00:00:00
inet addr:192.168.239.11 Bcast:192.168.239.255 Mask:255.255.255.0
And on the computer I can see the router but not ping.
eth1 IEEE 802.11g ESSID:"s23930"
Mode:Managed Frequency:2.412 GHz ...
PING 192.168.239.11 (192.168.239.11) 56(84) bytes of data.
From 192.168.239.1 icmp_seq=1 Destination Host Unreachable
Edit: removing br1 adds IP on eth1 on both sides but no ping by wifi, even bypassing routing tables
New table for router is :
root@routy:~$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 0 0 0 br0
192.168.239.0 * 255.255.255.0 U 0 0 0 eth1
81.67.246.0 * 255.255.254.0 U 0 0 0 vlan1
default gw.... 0.0.0.0 UG 0 0 0 vlan1
kva@zippy:~$ ping -r 192.168.239.11
PING 192.168.239.11 (192.168.239.11) 56(84) bytes of data.
From 192.168.239.1 icmp_seq=1 Destination Host Unreachable
(Last edited by kva on 16 Dec 2006, 21:44)