Estou tentando criar contêineres que podem ser acessados de fora. Por isso, escolhi o modo macvlan de rede que pode atribuir um IP aos contêineres na mesma rede que o host.
Eu adicionei o seguinte no meu /etc/network/interfaces
:
auto macvlan0
iface macvlan0 inet static
pre-up route del default
pre-up route del -net aa.bb.cc.0 netmask 255.255.255.0
pre-up ip link add link eth0 name macvlan0 type macvlan mode bridge
address 192.168.171.141
this creates a macvlan bridge by the name macvlan0 but i am not able to ping it from inside the container
this is the conf file of my container (i've mentioned only the nerworking part)
lxc.network.type = macvlan
lxc.network.macvlan.mode = bridge
lxc.network.flags = up
lxc.network.link = eth0
lxc.network.ipv4 = aa.bb.cc.155/24
Alguém pode me dizer o que estou fazendo de errado?