Lan wired clients not seeing each other

Hi all, I set up Xiaomi AX3000 router, all is working except wired clients on different ports not pinging each other, even ping from router itself any local node no result. lan2,3,4 are bridged router ip 10.1.1.1 clients 10.1.1.2 and 10.1.1.20:


root@OpenWrt:~# brctl show
bridge name     bridge id               STP enabled     interfaces
br-lan          7fff.44f770146dc8       no              phy1-ap0
                                                        lan4
                                                        lan2
                                                        lan3
                                                        phy0-ap0
root@OpenWrt:~# cat /etc/config/network

config interface 'loopback'
        option device 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config globals 'globals'
        option ula_prefix 'fd00:57a5:4d64::/48'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'lan2'
        list ports 'lan3'
        list ports 'lan4'

config interface 'lan'
        option device 'br-lan'
        option proto 'static'
        option ipaddr '10.1.1.1'
        option netmask '255.255.255.0'
        option ip6assign '60'

config device
        option name 'wan'
        option macaddr '50:88:11:51:1b:72'

config interface 'wan'
        option device 'wan'
        option proto 'none'
        option disabled '1'

config device
        option type '8021q'
        option ifname 'wan'
        option vid '2'
        option name 'wan2'

config interface 'wan2'
        option proto 'pppoe'
        option device 'wan2'
        option username 'xxx'
        option password 'xxx'
        option ipv6 'auto'
root@OpenWrt:~# cat /etc/config/firewall

config defaults
        option input 'REJECT'
        option output 'ACCEPT'
        option forward 'REJECT'
        option synflood_protect '1'

config zone
        option name 'lan'
        option input 'ACCEPT'
        option output 'ACCEPT'
        option forward 'ACCEPT'
        list network 'lan'

config zone
        option name 'wan'
        option input 'REJECT'
        option output 'ACCEPT'
        option forward 'REJECT'
        option masq '1'
        option mtu_fix '1'
        list network 'wan'
        list network 'wan2'

config forwarding
        option src 'lan'
        option dest 'wan'
root@OpenWrt:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         10.20.25.106    0.0.0.0         UG    0      0        0 pppoe-wan2
10.1.1.0        *               255.255.255.0   U     0      0        0 br-lan
10.20.25.106    *               255.255.255.255 UH    0      0        0 pppoe-wan2

This isn't likely to be related to OpenWrt.

Do the devices have working internet access?

What types of devices and/or operating systems are on these hosts?

one device is Kodi media player, other 2 are windows pc, actually I have added OpenWrt firewall rule: Lan to Lan allow all and now all clients can ping fine!

This rule shouldn't actually do anything. I suspect if you remove it, your network will still work as expected.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.