lxc:profiles:create_a_macvlan_profile
Differences
This shows you the differences between two versions of the page.
lxc:profiles:create_a_macvlan_profile [2021/01/07 16:15] – created peter | lxc:profiles:create_a_macvlan_profile [2021/01/07 16:22] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== LXC - Profiles - Create a macvlan profile ====== | ====== LXC - Profiles - Create a macvlan profile ====== | ||
+ | |||
+ | ===== Create the macvlan manually ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc profile create macvlan | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Profile macvlan created | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== List the profiles ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc profile list | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | +------------+---------+ | ||
+ | | NAME | USED BY | | ||
+ | +------------+---------+ | ||
+ | | default | ||
+ | +------------+---------+ | ||
+ | | macvlan | ||
+ | +------------+---------+ | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Show default settings of the new profile ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc profile show macvlan | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | config: {} | ||
+ | description: | ||
+ | devices: {} | ||
+ | name: macvlan | ||
+ | used_by: [] | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Determine Default Network Route ===== | ||
+ | |||
+ | Determine the default IP network on the host. | ||
+ | |||
+ | <code bash> | ||
+ | ip route show default 0.0.0.0/0 | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | default via 192.168.1.1 dev br0 proto static | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Add the Network Device to the macvlan LXD profile ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc profile device add macvlan eth0 nic nictype=macvlan parent=br0 | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Device eth0 added to macvlan | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE**: | ||
+ | |||
+ | * **eth0** is added as the network interface for LXC. | ||
+ | * **nictype** is set to macvlan | ||
+ | * **parent** is set to br0. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Display details of the new macvlan profile ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc profile show macvlan | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | config: {} | ||
+ | description: | ||
+ | devices: | ||
+ | eth0: | ||
+ | nictype: macvlan | ||
+ | parent: br0 | ||
+ | type: nic | ||
+ | name: macvlan | ||
+ | used_by: [] | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | All Done! | ||
+ | |||
+ | Any containers created using this new profile will get an IP address from the DHCP server of the LAN. | ||
+ | |||
+ | <WRAP important> | ||
+ | **WARNING**: | ||
+ | |||
+ | This is fine for Ethernet networks. | ||
+ | |||
+ | However, if your interface is a Wireless interface (with security like WPA/WPA2), then the access point will reject any other MAC addresses coming from your computer. | ||
+ | |||
+ | Therefore, all these will not work in that specific case. | ||
+ | |||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE**: | ||
+ | |||
+ | To overcome this, configure the host virtual machine to allow **Promiscuous mode**, usually found in Network settings. | ||
+ | |||
+ | Alternatively, | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
lxc/profiles/create_a_macvlan_profile.1610036152.txt.gz · Last modified: 2021/01/07 16:15 by peter