Hi,
I’m running a hAP ac2; I’ve got a wireless network (wlan1 - 172.19.2.0/24) for trusted wifi devices (i.e. my phone) and a guest wireless network (wlan2 - 172.19.5.0/24) for some smart appliances (e.g. tv, robot vacuum cleaner, etc.).
Because the control apps for these appliances try to detect them by scanning 172.19.2.0/24, I need a way to allow the app to reach the device as if it was on the same subnet.
One approach I tried was to configure the two networks as adjacent address spaces (172.19.2.0/25 for trusted and 172.19.2.128/25 for guest), make the clients on the two networks believe they’re actually on 172.19.2.0/24 via DHCP options and use proxy-arp. However, I gave up this setup because the router was actually answering for all ip addresses from the second subnet, even if they weren’t actually DHCP allocated. It was confusing, so I stopped.
The second approach I’m thinking of is to create some “fake” hosts on the trusted subnet (e.g. 172.19.2.250) which redirect traffic to the corresponding host in the second subnet. I started with some static ARP entries for the fake hosts with the mac address of the router, but from there… I don’t know how to proceed.
Any ideas how to solve this?