I've followed this guide to connect a OpenWrt box as a client to a WiFi network.
This setup works fine, except that the OpenWrt box can't access one client on the network.
The network consists entirely of AVM products with their proprietary mesh implementation, which may or may not be the problem here.
Everything is on 192.168.178.x, OpenWrt is 192.168.178.x on WAN and 192.168.1.x on LAN.
Green can access red and the OpenWrt box in blue.
The OpenWrt box and the client behind it can access green but not red.
So, running ping and netcat to red on the OpenWrt box itself is unsuccessful, even though it's just another client.
Running them to green clients works just fine.
So, it could be the proprietary mesh thing, but why would OpenWrt be the only client affected?
Yes, all clients get the IPs via DHCP except blue and red which are static.
The DCHP server range is from 192.168.178.20 to 192.168.178.200.
Blue is 192.168.178.2 and red is 192.168.178.253, so there should be no conflict.
Yes, OpenWrt has the correct arp entry.
Unfortunately red is a locked down box with no way to check or capture packets.
config defaults
option syn_flood 1
option input ACCEPT
option output ACCEPT
option forward REJECT
config zone
option name lan
list network 'lan'
option input ACCEPT
option output ACCEPT
option forward ACCEPT
config zone
option name wan
list network 'wan'
list network 'wwan'
option input REJECT
option output ACCEPT
option forward REJECT
option masq 1
option mtu_fix 1
config zone
option name vpn
list network 'vpn'
option input ACCEPT
option output ACCEPT
option forward REJECT
option mtu_fix 1
config forwarding
option src lan
option dest wan
config forwarding
option src lan
option dest vpn
config forwarding
option src vpn
option dest lan
config rule
option name Allow-DHCP-Renew
option src wan
option proto udp
option dest_port 68
option target ACCEPT
option family ipv4
config rule
option name Allow-Ping
option src wan
option proto icmp
option icmp_type echo-request
option family ipv4
option target ACCEPT
config rule
option name Allow-IGMP
option src wan
option proto igmp
option family ipv4
option target ACCEPT
config rule
option name Allow-DHCPv6
option src wan
option proto udp
option src_ip fc00::/6
option dest_ip fc00::/6
option dest_port 546
option family ipv6
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 rule
option name Allow-ICMPv6-Input
option src wan
option proto icmp
list icmp_type echo-request
list icmp_type echo-reply
list icmp_type destination-unreachable
list icmp_type packet-too-big
list icmp_type time-exceeded
list icmp_type bad-header
list icmp_type unknown-header-type
list icmp_type router-solicitation
list icmp_type neighbour-solicitation
list icmp_type router-advertisement
list icmp_type neighbour-advertisement
option limit 1000/sec
option family ipv6
option target ACCEPT
config rule
option name Allow-ICMPv6-Forward
option src wan
option dest *
option proto icmp
list icmp_type echo-request
list icmp_type echo-reply
list icmp_type destination-unreachable
list icmp_type packet-too-big
list icmp_type time-exceeded
list icmp_type bad-header
list icmp_type unknown-header-type
option limit 1000/sec
option family ipv6
option target ACCEPT
config rule
option name Allow-IPSec-ESP
option src wan
option dest lan
option proto esp
option target ACCEPT
config rule
option name Allow-ISAKMP
option src wan
option dest lan
option dest_port 500
option proto udp
option target ACCEPT
config rule
option name Allow-WireGuard
option src wan
option dest_port 51820
option proto udp
option target ACCEPT
config include
option path /etc/firewall.user
Well, it's a WiFi client, so I can't exactly attach something the exact same way.
Just configuring something else to be 192.168.178.253 would probably not do much good.
But I can try and place another WiFi client right next to it, so the traffic would also need to traverse the mesh.
Also, if this was a malfunction of some sort I would not be able to access it from, say, the laptop, right?
It's in the same room and is also connected over WiFi directly to the router, just like the OpenWrt box.
On it though, I can access red without any problems.
Since you have no access to the red, connecting some other device that you have control over might help troubleshooting. It could be a problem of the red device not allowing connection from the OpenWrt for some reason.