I have some problems with OpenVPN-as on Docker.
The first time, i had configured the container in "bridge" under the network's settings.
All works fine, but the other container in "macvlan" (like Pi-hole, for example) are unreachable.
I've decided to try to configure OpenVPN-as in "macvlan" instead "bridge"; this time, all container in "macvlan" work perfectly, and i can reach or ping all client in LAN, but the only IP that result "unreachable" is the OMV's IP and all container in "bridge" or "host" mode.
Example:
OpenVPN-as in "bridge":
Private subnet: 192.168.1.0/24
Server's IP: 192.168.1.2 -> OK (Ping, SMB, ecc...)
Pi-hole (macvlan): 192.168.1.3 -> Unreachable
Plex (host): 192.168.1.2:32400 -> OK
Netdata (bridge): 192.168.1.2:1999 -> OK
---
OpenVPN-as in "macvlan" (IP: 192.168.1.100):
Private subnet: 192.168.1.0/24
Server's IP: 192.168.1.2 -> Unreachable (No Ping, no SMB...)
Pi-hole (macvlan): 192.168.1.3 -> OK
Plex (host): 192.168.1.2:32400 -> Unreachable
Netdata (bridge): 192.168.1.2:1999 -> Unreachable
Whats wrong?