<div dir="ltr">Depends on how your provider set it up.<div><br></div><div>If it WERE intended to work that way, they would've given you full instructions (e.g. "use this IP, this netmask, and this gateway") instead of just giving the IP (and probably say "add this as a secondary IP on your server).</div><div><br></div><div>The fact that you say it works when you use it as br0:0 (and br0 has <span style="font-family:arial,sans-serif;font-size:13px">81.7.15.233) </span>means that at that point you're NOT using bridge, but instead use your host's primary IP as the gateway. And your provider has route that IP thru your primary IP.</div><div><br></div><div>Again, it is important to know how your provider works. Asking them BEFORE asking questions here would've lead to a more productive discussion.</div><div><br></div><div>FWIW, on server4you I use something like this:</div><div><br></div><div>On the host's /etc/network/interfaces:</div><div><div>#==========================</div><div></div><div>auto lo<br></div><div>iface lo inet loopback</div><div><br></div><div>auto eth0<br></div><div>iface eth0 inet static</div><div>  address 209.126.X.Y</div><div>  netmask 255.255.255.192</div><div>  gateway 209.126.X.1</div><div><br></div><div>auto br0</div><div>iface br0 inet static</div><div>        <span style="white-space:pre">address 192.168.124.1</span><br></div><span style="white-space:pre">        netmask 255.255.255.0</span> <div><span class="" style="white-space:pre">  </span>bridge_ports none</div><div><span class="" style="white-space:pre">  </span>up ip route add A.B.C.D/32 dev br0 || true<br></div><div><br></div></div><div><br></div><div><br></div><div>... where A.B.C.D is the one additional IP that they gave me.</div><div><br></div><div><br></div><div>On the container lxc config:</div><div>#===================</div><div><div># Network configuration</div><div>lxc.network.type = veth</div><div>lxc.network.flags = up</div><div>lxc.network.link = br0</div><div>lxc.network.hwaddr = 00:16:3E:04:A8:65</div><div>lxc.network.veth.pair=veth-C1-0</div></div><div><br></div><div><br></div><div>On the container's /etc/network/interfaces:</div><div><div>#==============================</div><div></div><div>auto lo<br></div><div><div>iface lo inet loopback</div><div><br></div><div><div>auto eth0</div><div>iface eth0 inet static</div><div>        address A.B.C.D</div><div>        netmask 255.255.255.255</div><div><span class="" style="white-space:pre">       </span>up ip route add 192.168.124.1 dev eth0</div><div><span class="" style="white-space:pre">     </span>up ip route add default via 192.168.124.1</div></div></div><div><br></div><div><br></div><div><br></div><div>Basically it uses some static routes to force communication between the hosts's br0 and the container's eth0, even though they're on different logical subnet (br0 <a href="http://192.168.124.1/24">192.168.124.1/24</a>, container is A.B.C.D/32). And container's traffic is routed thru the host's br0, which in turn goes to the provider's routing thru the host's main IP. Pure routing setup, no NAT involved.</div><div><br></div><div>-- </div><div>Fajar</div><div><br></div><div></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Sep 11, 2014 at 8:19 PM, othiman <span dir="ltr"><<a href="mailto:othiman@gmx.de" target="_blank">othiman@gmx.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">91.143.88.1 actually is the providers gateway for the subnet.<br>
<br>
The whole IP configuration for the container looks like this:<br>
IP address: 91.143.88.119<span class=""><br>
netmask: 255.255.255.0<br>
broadcast: 91.143.88.255<br>
gateway: 91.143.88.1<br>
<br></span>
So the container is on a totally different subnet, but shouldn't that work anyway with a bridged device?<br>
<br>
Best regards,<br>
Thomas<div class="HOEnZb"><div class="h5"><br>
<br>
On 11.09.2014 15:11, brian mullan wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
In your container config you set the IP gateway as:<br>
<br>
 lxc.network.ipv4.gateway=91.<u></u>143.88.1<br>
<br>
But I didn't see that IP addr anywhere else in your email. Where is 88.1 ?<br>
<br>
Brian<br>
<br>
</blockquote>
<br></div></div><div class="HOEnZb"><div class="h5">
______________________________<u></u>_________________<br>
lxc-users mailing list<br>
<a href="mailto:lxc-users@lists.linuxcontainers.org" target="_blank">lxc-users@lists.<u></u>linuxcontainers.org</a><br>
<a href="http://lists.linuxcontainers.org/listinfo/lxc-users" target="_blank">http://lists.linuxcontainers.<u></u>org/listinfo/lxc-users</a></div></div></blockquote></div><br></div>