<div dir="ltr">Do you want your containers to use public IPs direcly, or do you want to use local IPs and then forward whole traffic for certain IP towards particular container?<div><br></div><div>In first case, just set lxc.network.link = br0 and configure public IP as you have described it. Container uses the same GW as your host does.</div><div><br></div><div>In second case you need to create new bridge with internal network. Containers need to use host as GW, and host must configure iptables to forward traffic destined to IP X to container x, and masquerade outgoing traffic from container x to IP X. Rinse and repeat for IP/container X/x+1.</div><div><br></div><div>b.</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 8 March 2015 at 19:52, Joe McDonald <span dir="ltr"><<a href="mailto:ideafilter@gmail.com" target="_blank">ideafilter@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I have 5 public IPs (/29) and would like to make them available to lxc<br>
containers.  I am on ubuntu 14.04.<br>
<br>
What is the procedure?   I tried to duplicate br0 with br1, etc and<br>
incrementing the IP#, but it didn't like it.  I'd like to make 1 IP<br>
for the host system, and the other 4 IP's each go to a container.<br>
<br>
I have this in /etc/network/interfaces:<br>
<br>
# The loopback network interface<br>
auto lo p4p1<br>
iface lo inet loopback<br>
iface p4p1 inet manual<br>
<br>
<br>
auto br0<br>
iface br0 inet static<br>
  bridge_ports p4p1<br>
  bridge_stp off<br>
  bridge_fd 0<br>
  bridge_maxwait 0<br>
<br>
  address 104.250.x.x<br>
  netmask 255.255.255.248<br>
  gateway 104.250.x.x<br>
  dns-nameservers 8.8.8.8<br>
_______________________________________________<br>
lxc-users mailing list<br>
<a href="mailto:lxc-users@lists.linuxcontainers.org">lxc-users@lists.linuxcontainers.org</a><br>
<a href="http://lists.linuxcontainers.org/listinfo/lxc-users" target="_blank">http://lists.linuxcontainers.org/listinfo/lxc-users</a></blockquote></div><br></div>