Hello, I have installed OpenWRT on two of my devices, both different, and I have configured them in WiFi repeater mode following this manual: https://openwrt.org/docs/guide-user/network/wifi/wifiextenders/wds, and it works well. However, I cannot access the devices connected to the network created by the repeaters. From their network, I can access the internet, but of course, I need to be able to access all devices without having to connect specifically to that repeater by cable or WiFi... It seems that there is an issue with ARP because they don't respond from outside the network. However, if from within the LAN, I ping a device outside the AP's network, the MAC address is saved, and then I can access it from outside. Do you have any idea what might be happening? The router configuration is the one that comes after a reset and following the manual.
Firewall startup is disabled.
odhcpd is also disabled.
/etc/config/dhcp
config dnsmasq
option domainneeded '1'
option localise_queries '1'
option rebind_protection '1'
option rebind_localhost '1'
option local '/lan/'
option domain 'lan'
option expandhosts '1'
option cachesize '1000'
option readethers '1'
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
option localservice '1'
option ednspacket_max '1232'
list server 'xxx.xxx.xxx.xxx'config dhcp 'lan'
option interface 'lan'
option start '100'
option limit '150'
option leasetime '12h'
option dhcpv4 'server'
option ignore '1'config dhcp 'wan'
option interface 'wan'
option ignore '1'config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
option loglevel '4'config relay
option local_addr 'xxx.xxx.xxx.xxx'
option server_addr 'xxx.xxx.xxx.xxx'
option interface 'lan'
/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 'fd47:fa32:9a0c::/48'config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0.1'config interface 'lan'
option device 'br-lan'
option proto 'dhcp'config interface 'wan'
option device 'eth0.2'
option proto 'dhcp'config interface 'wan6'
option device 'eth0.2'
option proto 'dhcpv6'config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'config switch_vlan
option device 'switch0'
option vlan '1'
option ports '2 3 4 5 0t'config switch_vlan
option device 'switch0'
option vlan '2'
option ports '1 0t'config interface 'wwan'
option proto 'dhcp'
/etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'pci0000:00/0000:00:00.0'
option channel '36'
option band '5g'
option htmode 'VHT80'
option disabled '1'config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt'
option encryption 'none'config wifi-device 'radio1'
option type 'mac80211'
option path 'platform/ahb/18100000.wmac'
option channel '1'
option band '2g'
option htmode 'HT20'
option cell_density '0'config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt'
option encryption 'none'
option disabled '1'config wifi-iface 'wifinet2'
option device 'radio1'
option mode 'sta'
option network 'lan'
option ssid 'xxxxxxx'
option bssid 'xx:xx:xx:xx:xx:xx'
option encryption 'psk2'
option key 'xxxxxxxxxxxxxxxx'
option wds '1'
option multicast_to_unicast_all '1'