Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
redhat:other-redhat:pi-hole-redhat [2020/02/15 11:32] – created michael | redhat:other-redhat:pi-hole-redhat [2020/02/24 15:47] (current) – [Installation eines gehärteten Unbound DNS-Servers] michael | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Pi-hole DNS Ad-blocking Server ====== | ====== Pi-hole DNS Ad-blocking Server ====== | ||
- | Networkwide | + | |
+ | Network-wide | ||
{{: | {{: | ||
* [[https:// | * [[https:// | ||
- | * '' | ||
+ | FIXME | ||
- | ===== Installation von Docker und Docker-Compose | + | ===== Installation von Podman |
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | '' | + | '' |
- | # apt-get | + | # yum update -y |
- | # apt-get upgrade | + | |
# apt-get install docker-ce | # apt-get install docker-ce | ||
- | </ | ||
- | |||
- | '' | ||
- | |||
- | Neuste Version auf GitHub nachschauen: | ||
- | |||
- | < | ||
- | |||
- | # chmod +x / | ||
- | # curl -L https:// | ||
- | |||
# docker-compose version | # docker-compose version | ||
</ | </ | ||
Line 36: | Line 25: | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
- | < | + | < |
- | # cd /var/lib/unbound/ | + | # cd /etc/unbound/ |
# wget -O root.hints https:// | # wget -O root.hints https:// | ||
- | # chown unbound: | + | # chown unbound: |
+ | |||
+ | # rm / | ||
+ | # echo "" | ||
- | # vim / | + | # vim / |
</ | </ | ||
Line 57: | Line 49: | ||
# Use this only when you downloaded the list of primary root servers! | # Use this only when you downloaded the list of primary root servers! | ||
- | root-hints: "/ | + | root-hints: " |
# Trust glue only if it is within the servers authority | # Trust glue only if it is within the servers authority | ||
Line 89: | Line 81: | ||
# Ensure privacy of local IP ranges | # Ensure privacy of local IP ranges | ||
private-address: | private-address: | ||
- | private-address: | ||
private-address: | private-address: | ||
</ | </ | ||
< | < | ||
+ | # systemctl restart unbound | ||
+ | # systemctl status unbound | ||
+ | |||
+ | # sealert -a / | ||
+ | # ausearch -c ' | ||
+ | # semodule -X 300 -i my-unbound.pp | ||
+ | |||
# systemctl restart unbound | # systemctl restart unbound | ||
# systemctl status unbound | # systemctl status unbound | ||
Line 103: | Line 101: | ||
# dig sigfail.verteiltesysteme.net @127.0.0.1 -p 5353 | # dig sigfail.verteiltesysteme.net @127.0.0.1 -p 5353 | ||
# dig sigok.verteiltesysteme.net @127.0.0.1 -p 5353 | # dig sigok.verteiltesysteme.net @127.0.0.1 -p 5353 | ||
+ | |||
+ | # systemctl enable unbound | ||
</ | </ | ||
</ | </ | ||
- | ---- | ||
- | ===== Installation / Deployment von pi-hole ===== | + | ===== Einrichten und Deployment von pi-hole ===== |
<WRAP center box 100%> | <WRAP center box 100%> | ||
==== Erstellen der benötigten Files und Verzeichnisse ==== | ==== Erstellen der benötigten Files und Verzeichnisse ==== | ||
- | < | + | < |
+ | # mkdir /opt/podman-pihole | ||
+ | # mkdir / | ||
+ | # mkdir / | ||
+ | </ | ||
---- | ---- | ||
Line 119: | Line 122: | ||
''< | ''< | ||
- | < | + | < |
+ | # mkdir / | ||
# vim / | # vim / | ||
</ | </ | ||
Line 200: | Line 204: | ||
</ | </ | ||
''< | ''< | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ''< | ||
+ | |||
+ | < | ||
+ | # vim / | ||
+ | </ | ||
+ | |||
+ | <sxh bash> | ||
+ | address=/ | ||
+ | address=/ | ||
+ | address=/ | ||
+ | address=/ | ||
+ | </ | ||
+ | |||
+ | ''< | ||
</ | </ | ||
Line 206: | Line 227: | ||
==== Anlegen des docker-compose file für pi-hole ==== | ==== Anlegen des docker-compose file für pi-hole ==== | ||
- | Das verwendete Image ist ausschlisslich für x86_x64 Systeme geeignet. Soll Pi-hole auf einem ARM basierten System dokerisiert installiert werden, kann [[debian: | + | Das verwendete Image ist ausschlisslich für x86_x64 Systeme geeignet. Soll Pi-hole auf einem ARM basierten System dokerisiert installiert werden, |
- | ''< | + | ''< |
- | < | + | < |
<sxh xml; gutter: true; highlight: [11, | <sxh xml; gutter: true; highlight: [11, | ||
- | version: "3.2" | + | [Unit] |
+ | Description=Pi-Hole-Container | ||
+ | After=network.target | ||
- | services: | + | [Service] |
- | # ---------------------------------------------------------------------------- | + | Type=simple |
- | pihole: | + | TimeoutStartSec=60s |
- | image: pihole/ | + | |
- | container_name: | + | |
- | volumes: | + | |
- | - / | + | |
- | - / | + | |
- | - / | + | |
- | - / | + | |
- | environment: | + | |
- | - VIRTUAL_HOST=www.blackgate.org | + | |
- | - ServerIP=192.168.1.2 | + | |
- | - DNS1=127.0.0.1# | + | |
- | - DNS2=no | + | |
- | - TZ=Europe/ | + | |
- | - WEBPASSWORD=MY_LOGIN_PASSWORD | + | |
- | - WEB_PORT=81 | + | |
- | - INTERFACE=enp1s0 | + | |
- | #ports: | + | |
- | # - 53:53/tcp | + | |
- | # - 53:53/udp | + | |
- | # - 67:67/udp | + | |
- | # - 81:80 | + | |
- | # | + | |
- | # - local | + | |
- | restart: always | + | |
- | network_mode: | + | |
- | # ------------------------------------------------------------------------------ | + | ExecStartPre=-/ |
- | #networks: | + | ExecStart=/ |
- | # local: | + | |
- | # driver: bridge | + | ExecReload=-/ |
+ | ExecReload=-/ | ||
+ | |||
+ | ExecStop=-/ | ||
+ | Restart=always | ||
+ | RestartSec=30 | ||
+ | |||
+ | [Install] | ||
+ | WantedBy=multi-user.target | ||
</ | </ | ||
Line 424: | Line 430: | ||
< | < | ||
- | # vim /etc/apache2/sites-available/ | + | # vim /etc/httpd/conf.d/ |
</ | </ | ||
- | <sxh bash; gutter: true;> | + | <sxh bash; gutter: true; highlight: [30-31];> |
+ | define serveradmin " | ||
+ | define ssl_path "/ | ||
+ | |||
+ | Protocols h2 h2c http/1.1 | ||
+ | |||
+ | SSLProtocol -All +TLSv1.2 +TLSv1.3 | ||
+ | SSLCipherSuite | ||
+ | SSLCipherSuite | ||
< | < | ||
- | | + | |
# | # | ||
- | | + | |
- | | + | |
| | ||
- | | + | |
- | | + | |
- | | + | |
- | + | ||
- | | + | |
- | | + | |
| | ||
| | ||
- | + | ||
- | ProxyPass | + | DocumentRoot |
- | ProxyPassReverse | + | |
- | + | < | |
- | | + | |
- | | + | |
- | + | | |
- | < | + | </Directory> |
- | Order deny, | + | |
- | Allow from all | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | </ | + | |
</ | </ | ||
</ | </ | ||
</ | </ | ||