Hello everyone.
I’m trying to create multiple Docker networks with overlapping subnets using the macvlan driver. Here are the commands I’m using:
sudo docker network create -d macvlan --subnet 192.168.100.0/24 -o parent=eno1.10 vlan10
sudo docker network create -d macvlan --subnet 192.168.100.0/24 -o parent=eno1.20 vlan20
Is it possible to create Docker networks with overlapping subnets like this?