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:10] – [Have the LXC Container Start Automatically] peter | pi-hole:setup_pi-hole_running_in_lxc [2021/01/07 18:43] (current) – [Have the LXC Container Start Automatically] peter | ||
---|---|---|---|
Line 3: | Line 3: | ||
[[Pi-Hole: | [[Pi-Hole: | ||
- | ---- | ||
===== Create an LXC Container ===== | ===== Create an LXC Container ===== | ||
Line 15: | Line 14: | ||
<code bash> | <code bash> | ||
Creating pihole | Creating pihole | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Start the Container ===== | ||
- | |||
- | <code bash> | ||
- | lxc start pihole | ||
</ | </ | ||
Line 109: | 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 120: | Line 124: | ||
<code bash> | <code bash> | ||
- | Profiles default,macvlan | + | Profiles default,bridgeprofile |
</ | </ | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
</ | </ | ||
+ | |||
---- | ---- | ||
Line 145: | Line 150: | ||
Status: Running | Status: Running | ||
Type: container | Type: container | ||
- | Profiles: default, | + | Profiles: default, |
Pid: 844849 | Pid: 844849 | ||
Ips: | Ips: | ||
Line 177: | 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 192: | Line 200: | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
You could setup a completely different user account if wanted. | You could setup a completely different user account if wanted. | ||
Line 216: | 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 233: | 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 365: | 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 373: | 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 465: | Line 582: | ||
192.168.1.150 | 192.168.1.150 | ||
</ | </ | ||
+ | |||
+ | <WRAP important> | ||
+ | **IMPORTANT: | ||
+ | </ | ||
Line 480: | Line 601: | ||
---- | ---- | ||
- | ===== Assign | + | ===== Exit the Pi-Hole Container |
- | See: [[LXC: | + | <code bash> |
+ | exit | ||
+ | </ | ||
+ | ---- | ||
+ | |||
+ | ===== Get Information on the Pi-Hole Container ===== | ||
<code bash> | <code bash> | ||
- | lxc profile assign | + | lxc info pihole |
</ | </ | ||
Line 492: | Line 618: | ||
<code bash> | <code bash> | ||
- | Profiles default, | + | Name: pihole |
+ | Location: none | ||
+ | Remote: unix:// | ||
+ | Architecture: | ||
+ | Created: 2021/01/07 14:59 UTC | ||
+ | Status: Running | ||
+ | Type: container | ||
+ | Profiles: default, bridgeprofile | ||
+ | Pid: 708446 | ||
+ | Ips: | ||
+ | eth0: | ||
+ | eth0: | ||
+ | lo: | ||
+ | lo: | ||
+ | Resources: | ||
+ | Processes: 88 | ||
+ | CPU usage: | ||
+ | CPU usage (in seconds): 20 | ||
+ | Memory usage: | ||
+ | Memory (current): 266.82MB | ||
+ | Memory (peak): 276.11MB | ||
+ | Network usage: | ||
+ | eth0: | ||
+ | Bytes received: 2.45MB | ||
+ | Bytes sent: 3.70MB | ||
+ | Packets received: 18537 | ||
+ | Packets sent: 3905 | ||
+ | lo: | ||
+ | Bytes received: 4.05MB | ||
+ | Bytes sent: 4.05MB | ||
+ | Packets received: 60882 | ||
+ | Packets sent: 60882 | ||
</ | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
---- | ---- | ||
- | ===== Shell in again to the Pi-Hole Container | + | <WRAP tip> |
+ | **TIP: | ||
<code bash> | <code bash> | ||
- | lxc exec pihole | + | lxc delete |
+ | lxc profile delete macvlan | ||
+ | lxc profile delete bridgeprofile | ||
</ | </ | ||
- | ---- | + | No need to delete |
- | + | ||
- | ===== 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 | + | |
</ | </ | ||
- | |||
---- | ---- | ||
- | ===== Apply the network changes | + | ===== Have the LXC Container Start Automatically |
+ | |||
+ | By default, LXC containers may not start automatically. | ||
<code bash> | <code bash> | ||
- | netplan apply | + | lxc config set pihole boot.autostart true |
</ | </ | ||
- | ---- | ||
- | ===== Exit the Shell ===== | + | Ensure that LXC is set to start containers at boot. |
- | <code bash> | + | <file bash / |
- | exit | + | # LXC_AUTO - whether or not to start containers at boot |
- | </code> | + | LXC_AUTO=" |
+ | </file> | ||
- | ---- | + | <WRAP info> |
+ | **NOTE: | ||
+ | </ | ||
+ | |||
- | ===== Restart the Pi-Hole Container ===== | + | <WRAP info> |
+ | **NOTE: | ||
- | <code bash> | + | When the host system boots, LXC decides the order and the delay between each startup. |
- | lxc restart pihole | + | |
- | </code> | + | </WRAP> |
---- | ---- | ||
- | ===== Try to ping the Pi-Hole Container | + | ===== Show the Pi-Hole Container |
<code bash> | <code bash> | ||
- | ping 192.168.1.150 | + | lxc config show pihole |
</ | </ | ||
Line 581: | Line 707: | ||
<code bash> | <code bash> | ||
- | PING 192.168.1.150 (192.168.1.150) 56(84) bytes of data. | + | architecture: |
- | 64 bytes from 192.168.1.150: icmp_seq=1 ttl=64 time=0.031 ms | + | config: |
- | 64 bytes from 192.168.1.150: icmp_seq=2 ttl=64 time=0.027 ms | + | boot.autostart: " |
- | 64 bytes from 192.168.1.150: icmp_seq=3 ttl=64 time=0.026 ms | + | image.architecture: |
- | 64 bytes from 192.168.1.150: icmp_seq=4 ttl=64 time=0.044 ms | + | image.description: |
- | 64 bytes from 192.168.1.150: icmp_seq=5 ttl=64 time=0.028 ms | + | image.label: release |
- | + | image.os: ubuntu | |
- | --- 192.168.1.150 ping statistics --- | + | image.release: focal |
- | 5 packets transmitted, 5 received, 0% packet loss, time 4101ms | + | image.serial: " |
- | rtt min/ | + | image.type: squashfs |
+ | image.version: "20.04" | ||
+ | volatile.base_image: 21da67063730fc446ca7fe090a7cf90ad9397ff4001f69907d7db690a30897c3 | ||
+ | | ||
+ | | ||
+ | volatile.idmap.base: "0" | ||
+ | | ||
+ | | ||
+ | volatile.last_state.idmap: ' | ||
+ | volatile.last_state.power: | ||
+ | volatile.uuid: | ||
+ | devices: {} | ||
+ | ephemeral: false | ||
+ | profiles: | ||
+ | - default | ||
+ | - bridgeprofile | ||
+ | stateful: false | ||
+ | description: | ||
</ | </ | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
- | + | ||
- | Then exit and retry the ping and if that works you should | + | |
+ | In this case, the autostart config done previously has enabled this. | ||
</ | </ | ||
- | |||
- | |||
- | ---- | ||
- | |||
- | ===== Have the LXC Container Start Automatically ===== | ||
- | |||
- | <WRAP center round todo 60%> | ||
- | TODO: Need to check these as the path name has changed due to Ubuntu using snaps. | ||
- | </ | ||
- | |||
- | |||
- | By default, LXC containers may not start automatically. | ||
- | |||
- | To fix this, edit the container config file: | ||
- | |||
- | <file bash / | ||
- | lxc.start.auto = 1 | ||
- | lxc.start.delay = 1 | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | 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. | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | |||
pi-hole/setup_pi-hole_running_in_lxc.1610039433.txt.gz · Last modified: 2021/01/07 17:10 by peter