pi-hole:setup_pi-hole_running_in_lxc
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pi-hole:setup_pi-hole_running_in_lxc [2021/01/07 17:37] – peter | pi-hole:setup_pi-hole_running_in_lxc [2021/01/07 18:43] (current) – [Have the LXC Container Start Automatically] peter | ||
---|---|---|---|
Line 100: | Line 100: | ||
---- | ---- | ||
- | ===== Assign the macvlan | + | |
+ | |||
+ | ===== Assign the bride profile to the container ===== | ||
+ | |||
+ | <WRAP important> | ||
+ | **IMPORTANT: | ||
+ | |||
+ | Every other device can access the Container, just not the host, unless the host is placed into Promiscuous mode. | ||
See: [[LXC:Make your LXD containers get IP addresses from your LAN using macvlan|Make your LXD containers get IP addresses from your LAN using macvlan]] | See: [[LXC:Make your LXD containers get IP addresses from your LAN using macvlan|Make your LXD containers get IP addresses from your LAN using macvlan]] | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | See: [[LXC: | ||
+ | |||
<code bash> | <code bash> | ||
- | lxc profile assign pihole default,macvlan | + | lxc profile assign pihole default,bridgeprofile |
</ | </ | ||
Line 111: | Line 124: | ||
<code bash> | <code bash> | ||
- | Profiles default,macvlan | + | Profiles default,bridgeprofile |
</ | </ | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
</ | </ | ||
+ | |||
---- | ---- | ||
Line 136: | Line 150: | ||
Status: Running | Status: Running | ||
Type: container | Type: container | ||
- | Profiles: default, | + | Profiles: default, |
Pid: 844849 | Pid: 844849 | ||
Ips: | Ips: | ||
Line 168: | Line 182: | ||
This is the correct subnet matching that of the host. | This is the correct subnet matching that of the host. | ||
+ | |||
+ | If the result does not show an IP for eth0, then just wait a few seconds and retry. | ||
+ | |||
</ | </ | ||
Line 207: | Line 224: | ||
---- | ---- | ||
- | ===== Set up a proxy to allow web traffic into the LXD container ===== | + | ===== Set up a proxy to allow web traffic into the LXD container |
On the host, not the container, add a proxy: | On the host, not the container, add a proxy: | ||
Line 224: | Line 241: | ||
**NOTE: | **NOTE: | ||
- | If this fails, then not a worry. | + | If this fails, then not a worry and may not be needed. You may get an error such as |
- | It may mean that the container can be seen from other system besides the host. | + | <code bash> |
+ | Error: Failed to start device " | ||
+ | </ | ||
- | To overcome this, a bridge profile can be used instead - covered later. | ||
</ | </ | ||
Line 356: | Line 374: | ||
**NOTE: | **NOTE: | ||
- | LXC should ideally be configured in macvlan mode: | + | If the ping fails, then try to restart networking on the container: |
- | See [[LXC:Make your LXD containers get IP addresses from your LAN using macvlan|Make your LXD containers get IP addresses from your LAN using macvlan]] | + | <code bash> |
+ | netplan apply | ||
+ | </ | ||
</ | </ | ||
Line 364: | Line 384: | ||
---- | ---- | ||
+ | ===== Configure an IP on the Container ===== | ||
+ | |||
+ | Pi-Hole needs a static IP, so set one. | ||
+ | |||
+ | By default the Container uses DHCP, so each time it starts it would receive a different IP. | ||
+ | |||
+ | <file bash vi / | ||
+ | # This file is generated from information provided by the datasource. | ||
+ | # to it will not persist across an instance reboot. | ||
+ | # network configuration capabilities, | ||
+ | # / | ||
+ | # network: {config: disabled} | ||
+ | #network: | ||
+ | # version: 2 | ||
+ | # ethernets: | ||
+ | # eth0: | ||
+ | # dhcp4: true | ||
+ | # | ||
+ | # Let NetworkManager manage all devices on this system | ||
+ | network: | ||
+ | version: 2 | ||
+ | #renderer: NetworkManager | ||
+ | renderer: networkd | ||
+ | ethernets: | ||
+ | eth0: | ||
+ | dhcp4: no | ||
+ | # disable existing configuration for ethernet | ||
+ | addresses: [192.168.1.150/ | ||
+ | gateway4: 192.168.1.1 | ||
+ | nameservers: | ||
+ | addresses: [192.168.1.1] | ||
+ | dhcp6: no | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | The default dhcp has been commented out, but can be deleted from this file. | ||
+ | |||
+ | The actual netplan filename may be slightly different; Edit the actual filename within the **/ | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Apply the network changes ===== | ||
+ | |||
+ | <code bash> | ||
+ | netplan apply | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Exit the Shell ===== | ||
+ | |||
+ | <code bash> | ||
+ | exit | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Restart the Pi-Hole Container ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc restart pihole | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Try to ping the Pi-Hole Container from the Host ===== | ||
+ | |||
+ | <code bash> | ||
+ | ping 192.168.1.150 | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | PING 192.168.1.150 (192.168.1.150) 56(84) bytes of data. | ||
+ | 64 bytes from 192.168.1.150: | ||
+ | 64 bytes from 192.168.1.150: | ||
+ | 64 bytes from 192.168.1.150: | ||
+ | 64 bytes from 192.168.1.150: | ||
+ | 64 bytes from 192.168.1.150: | ||
+ | |||
+ | --- 192.168.1.150 ping statistics --- | ||
+ | 5 packets transmitted, | ||
+ | rtt min/ | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | Then exit and retry the ping and if that works you should be able to access Pi-Hole from the web. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Get a Shell inside the Container ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc exec pihole bash | ||
+ | </ | ||
+ | |||
+ | ---- | ||
===== Update the Container ===== | ===== Update the Container ===== | ||
Line 475: | Line 601: | ||
---- | ---- | ||
- | ===== Assign the bridge profile to the container ===== | + | ===== Exit the Pi-Hole Container ===== |
- | + | ||
- | See: [[LXC: | + | |
- | + | ||
- | + | ||
- | <code bash> | + | |
- | lxc profile assign pihole default, | + | |
- | </ | + | |
- | + | ||
- | returns: | + | |
- | + | ||
- | <code bash> | + | |
- | Profiles default, | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Shell in again to the Pi-Hole Container | + | |
- | + | ||
- | <code bash> | + | |
- | lxc exec pihole bash | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Configure an IP on the Container ===== | + | |
- | + | ||
- | <file bash vi / | + | |
- | # This file is generated from information provided by the datasource. | + | |
- | # to it will not persist across an instance reboot. | + | |
- | # network configuration capabilities, | + | |
- | # / | + | |
- | # network: {config: disabled} | + | |
- | #network: | + | |
- | # version: 2 | + | |
- | # ethernets: | + | |
- | # eth0: | + | |
- | # dhcp4: true | + | |
- | # | + | |
- | # Let NetworkManager manage all devices on this system | + | |
- | network: | + | |
- | version: 2 | + | |
- | #renderer: NetworkManager | + | |
- | renderer: networkd | + | |
- | ethernets: | + | |
- | eth0: | + | |
- | dhcp4: no | + | |
- | # disable existing configuration for ethernet | + | |
- | addresses: [192.168.1.150/ | + | |
- | gateway4: 192.168.1.1 | + | |
- | nameservers: | + | |
- | addresses: [192.168.1.1] | + | |
- | dhcp6: no | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | The actual netplan filename may be slightly different; Edit the actual filename within the **/ | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Apply the network changes ===== | + | |
- | + | ||
- | <code bash> | + | |
- | netplan apply | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Exit the Shell ===== | + | |
<code bash> | <code bash> | ||
exit | exit | ||
</ | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Restart the Pi-Hole Container ===== | ||
- | |||
- | <code bash> | ||
- | lxc restart pihole | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Try to ping the Pi-Hole Container from the Host ===== | ||
- | |||
- | <code bash> | ||
- | ping 192.168.1.150 | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | PING 192.168.1.150 (192.168.1.150) 56(84) bytes of data. | ||
- | 64 bytes from 192.168.1.150: | ||
- | 64 bytes from 192.168.1.150: | ||
- | 64 bytes from 192.168.1.150: | ||
- | 64 bytes from 192.168.1.150: | ||
- | 64 bytes from 192.168.1.150: | ||
- | |||
- | --- 192.168.1.150 ping statistics --- | ||
- | 5 packets transmitted, | ||
- | rtt min/ | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | Then exit and retry the ping and if that works you should be able to access Pi-Hole from the web. | ||
- | |||
- | </ | ||
- | |||
---- | ---- | ||
Line 659: | Line 670: | ||
===== Have the LXC Container Start Automatically ===== | ===== Have the LXC Container Start Automatically ===== | ||
- | <WRAP center round todo 60%> | + | By default, LXC containers may not start automatically. |
- | TODO: Need to check these as the path name has changed due to Ubuntu using snaps. | + | |
- | For now, manually start as needed. | + | <code bash> |
- | </WRAP> | + | lxc config set pihole boot.autostart true |
+ | </code> | ||
- | By default, | + | Ensure that LXC is set to start containers at boot. |
- | To fix this, edit the container config file: | + | <file bash /etc/default/lxc> |
- | + | # LXC_AUTO - whether or not to start containers at boot | |
- | <file bash /var/lib/lxc/ | + | LXC_AUTO=" |
- | lxc.start.auto = 1 | + | |
- | lxc.start.delay | + | |
</ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
<WRAP info> | <WRAP info> | ||
Line 679: | Line 693: | ||
When the host system boots, LXC decides the order and the delay between each startup. | When the host system boots, LXC decides the order and the delay between each startup. | ||
- | |||
- | In this case: | ||
- | |||
- | * The first line actually does the autostart. | ||
- | * The second line is optional and will delay the start of this container to give the current container time to begin initialization and reduce overloading the host system. | ||
</ | </ | ||
Line 689: | Line 698: | ||
---- | ---- | ||
+ | ===== Show the Pi-Hole Container Configuration File ===== | ||
+ | |||
+ | <code bash> | ||
+ | lxc config show pihole | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | architecture: | ||
+ | config: | ||
+ | boot.autostart: | ||
+ | image.architecture: | ||
+ | image.description: | ||
+ | image.label: | ||
+ | image.os: ubuntu | ||
+ | image.release: | ||
+ | image.serial: | ||
+ | image.type: squashfs | ||
+ | image.version: | ||
+ | volatile.base_image: | ||
+ | volatile.eth0.host_name: | ||
+ | volatile.eth0.hwaddr: | ||
+ | volatile.idmap.base: | ||
+ | volatile.idmap.current: | ||
+ | volatile.idmap.next: | ||
+ | volatile.last_state.idmap: | ||
+ | volatile.last_state.power: | ||
+ | volatile.uuid: | ||
+ | devices: {} | ||
+ | ephemeral: false | ||
+ | profiles: | ||
+ | - default | ||
+ | - bridgeprofile | ||
+ | stateful: false | ||
+ | description: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | In this case, the autostart config done previously has enabled this. | ||
+ | </ | ||
pi-hole/setup_pi-hole_running_in_lxc.1610041047.txt.gz · Last modified: 2021/01/07 17:37 by peter