mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-06-05 18:57:55 +00:00

Patch moves etc/* contents into doc/examples/ and adds --disable-examples configure switch which may be used not to install examples. Default is to install them into ${docdir}/examples (commonly: /usr/share/doc/lxc/examples) Signed-off-by: Andrian Nord <NightNord@gmail.com> Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
24 lines
696 B
Plaintext
24 lines
696 B
Plaintext
# Container with network a complex network mixing macvlan, veth and
|
|
# physical network devices
|
|
lxc.utsname = complex
|
|
lxc.network.type = veth
|
|
lxc.network.flags = up
|
|
lxc.network.link = br0
|
|
lxc.network.hwaddr = 4a:49:43:49:79:bf
|
|
lxc.network.ipv4 = 1.2.3.5/24
|
|
lxc.network.ipv6 = 2003:db8:1:0:214:1234:fe0b:3597
|
|
|
|
lxc.network.type = macvlan
|
|
lxc.network.flags = up
|
|
lxc.network.link = eth0
|
|
lxc.network.hwaddr = 4a:49:43:49:79:bd
|
|
lxc.network.ipv4 = 1.2.3.4/24
|
|
lxc.network.ipv6 = 2003:db8:1:0:214:1234:fe0b:3596
|
|
|
|
lxc.network.type = phys
|
|
lxc.network.flags = up
|
|
lxc.network.link = dummy0
|
|
lxc.network.hwaddr = 4a:49:43:49:79:ff
|
|
lxc.network.ipv4 = 1.2.3.6/24
|
|
lxc.network.ipv6 = 2003:db8:1:0:214:1234:fe0b:3297
|