Hello team, struggling to understand why I cannot reach some IP addresses from my PC.
Here is a schematic of my setup.
Main router is my ASUS running 24.10.5 (192.168.10.1), connected via LAN to my PC (192.168.10.100), other devices like a dumb AP (192.168.10.5) and a TPlink router with proprietary firmware (192.168.10.2).
From my PC I can ping the ASUS, the AP, any host on Internet but cannot ping the TP-link.
From TP-link I can ping any host on Internet, the ASUS but cannot ping my PC and the AP.
From ASUS, I can ping AP, any host on Internet but not my PC (very strange) and not the TP-link, despite the ARP table shows the relative MAC addresses.
Tried all I could with no joy. The aim is to reach the TP-link from the PC at 192.168.10.2.
Firewall does not show any message in the log of ASUS.
Any idea or suggestion what to look for next?
This is the network config:
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 'fdef:9f6a:ecc7::/48'
option packet_steering '1'
config device
option name 'br-lan'
option type 'bridge'
option ipv6 '0'
option bridge_empty '1'
option priority '1000'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
option stp '1'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.10.1'
option netmask '255.255.255.0'
option ip6assign '60'
option defaultroute '0'
option delegate '0'
option force_link '0'
config device
option name 'eth0'
option ipv6 '0'
config device
option name 'lan1'
option ipv6 '0'
config device
option name 'lan2'
option ipv6 '0'
config device
option name 'lan3'
option ipv6 '0'
config device
option name 'phy0-ap0'
config device
option name 'phy1-ap0'
config device
option name 'wan'
option ipv6 '0'
option macaddr '50:EB:F6:83:1C:A7'
(...)
config device
option type '8021q'
option ifname 'wan'
option vid '10'
option name 'wan.10'
option ipv6 '0'
option macaddr '50:EB:F6:83:1C:A6'
config interface 'Internet'
option proto 'dhcp'
option device 'wan.10'
option hostname 'Internet'
option peerdns '0'
list dns '8.8.8.8'
list dns '1.1.1.1'
option delegate '0'
config interface 'Gestione'
option proto 'dhcp'
option device 'wan'
option hostname 'Gestione'
option defaultroute '0'
option peerdns '0'
option delegate '0'
config device
option type 'bridge'
option name 'br-VoIP'
option bridge_empty '1'
option ipv6 '0'
list ports 'lan3.20'
list ports 'wan.20'
config device
option type '8021q'
option ifname 'lan3'
option vid '20'
option name 'lan3.20'
option ipv6 '0'
option isolate '1'
config device
option type '8021q'
option ifname 'wan'
option vid '20'
option name 'wan.20'
option ipv6 '0'
config interface 'VoiPtunnel'
option proto 'none'
option device 'br-VoIP'
option defaultroute '0'
option delegate '0'
config route
option interface 'lan'
option target '192.168.11.0/24'
option gateway '192.168.10.2'
This is the firewall config:
config defaults
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'
option flow_offloading '1'
option flow_offloading_hw '1'
config zone
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
option log '1'
option mtu_fix '1'
list network 'lan'
list network 'wg0'
config zone
option name 'wan'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option mtu_fix '1'
option masq '1'
list network 'Gestione'
list network 'Internet'
config forwarding
option src 'lan'
option dest 'wan'
(...)
config rule <<<<< this was an attempt to solve the problem, but no joy
option name 'Allow-Ping'
option src '*'
option proto 'icmp'
option family 'ipv4'
option target 'ACCEPT'
list icmp_type 'echo-request'
option dest '*'
config rule
option name 'Allow-IGMP'
option src 'wan'
option proto 'igmp'
option family 'ipv4'
option target 'ACCEPT'
config rule
option name 'Allow-MLD'
option src 'wan'
option proto 'icmp'
option src_ip 'fe80::/10'
list icmp_type '130/0'
list icmp_type '131/0'
list icmp_type '132/0'
list icmp_type '143/0'
option family 'ipv6'
option target 'ACCEPT'
config zone <<< This is to forward voice traffic
option name 'VoIP'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option log '1'
option family 'ipv4'
list network 'VoiPtunnel'
config forwarding
option src 'lan'
option dest 'VoIP'
Any further info, just let me know.
Thanks for any idea / suggestion.





