Pihole aufsetzen - How To: Unterschied zwischen den Versionen
Aus Wiki_2020
Wezi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Wezi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
(6 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
* '''Pizero vorbereiten''' | * '''Pizero vorbereiten''' | ||
raspianimage [https://downloads.raspberrypi.org/ | raspianimage [https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2021-05-28/2021-05-07-raspios-buster-armhf-lite.zip] download | ||
mit [https://www.balena.io/etcher/] etcher flashen | mit [https://www.balena.io/etcher/] etcher flashen | ||
in boot partition leere ssh Datei erstellen (bewirkt | in boot partition leere ssh Datei erstellen (bewirkt Erreichbarkeit über ssh) | ||
* '''booten''' | * '''booten''' | ||
* '''user:''' pi '''pwd:''' raspberry | * '''user:''' pi '''pwd:''' raspberry | ||
* '''pword ändern :''' passwd | * '''pword ändern :''' passwd | ||
* sudo raspi-config ''Hostname,Locale , Keyboard,Timezone, expand Filesystem ,etc. de_DE.UTF-8 UTF8 ] (auswählen mit Leertaste bestätigen)'' | * sudo raspi-config ''Hostname, Locale, Keyboard, Timezone, expand Filesystem ,etc. de_DE.UTF-8 UTF8 ] (auswählen mit Leertaste bestätigen)'' | ||
* df -h | * df -h | ||
* '''updaten''' | * '''updaten''' | ||
Zeile 19: | Zeile 19: | ||
cd "Pi-hole/automated install/" | cd "Pi-hole/automated install/" | ||
sudo bash basic-install.sh | sudo bash basic-install.sh | ||
* set upstream DNS Provider like Quad9 (filtered, DNSSEC)[9.9.9.9,149.112.112.112];Cloudflare [1.1.1.1;1.0.0.1];46.182.19.48 , 146.185.167.43 | |||
* '''set password:''' | * '''set password:''' | ||
pihole -a -p | pihole -a -p | ||
Zeile 25: | Zeile 26: | ||
* '''change existing Pihole''' | * '''change existing Pihole''' | ||
pihole -r | pihole -r | ||
* '''Blocklist''' | |||
sudo wget "https://v.firebog.net/hosts/lists.php?type=nocross" -O /etc/pihole/adlists.list | |||
pihole -g | |||
* '''Option Blockpage ''' | |||
"sudo nano /etc/pihole/pihole-FTL.conf" | |||
add "BLOCKINGMODE=IP" | |||
save | |||
activate new Setting "sudo killall -SIGHUP pihole-FTL" | |||
* '''eigene Blockpage''' | * '''eigene Blockpage''' | ||
https://www.reddit.com/r/pihole/comments/a9v7jj/how_to_install_a_custom_block_page_for_websites/ | https://www.reddit.com/r/pihole/comments/a9v7jj/how_to_install_a_custom_block_page_for_websites/ | ||
https://github.com/roenw/pipass | https://github.com/roenw/pipass |
Aktuelle Version vom 1. November 2021, 21:05 Uhr
- Pizero vorbereiten
raspianimage [1] download mit [2] etcher flashen in boot partition leere ssh Datei erstellen (bewirkt Erreichbarkeit über ssh)
- booten
- user: pi pwd: raspberry
- pword ändern : passwd
- sudo raspi-config Hostname, Locale, Keyboard, Timezone, expand Filesystem ,etc. de_DE.UTF-8 UTF8 ] (auswählen mit Leertaste bestätigen)
- df -h
- updaten
sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade
- install git:
sudo apt-get install git
- install Pihole :
git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole cd "Pi-hole/automated install/" sudo bash basic-install.sh
- set upstream DNS Provider like Quad9 (filtered, DNSSEC)[9.9.9.9,149.112.112.112];Cloudflare [1.1.1.1;1.0.0.1];46.182.19.48 , 146.185.167.43
- set password:
pihole -a -p
- change existing Pihole
pihole -r
- Blocklist
sudo wget "https://v.firebog.net/hosts/lists.php?type=nocross" -O /etc/pihole/adlists.list pihole -g
- Option Blockpage
"sudo nano /etc/pihole/pihole-FTL.conf" add "BLOCKINGMODE=IP" save activate new Setting "sudo killall -SIGHUP pihole-FTL"
- eigene Blockpage
https://www.reddit.com/r/pihole/comments/a9v7jj/how_to_install_a_custom_block_page_for_websites/