Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gummiflip/pi-hole-pi.alert-installation-
Pi-hole & Pi.Alert Installation on Raspberry Pi
https://github.com/gummiflip/pi-hole-pi.alert-installation-
debian gummiflip netzwerk pihole proxmox raspberry-pi
Last synced: 19 days ago
JSON representation
Pi-hole & Pi.Alert Installation on Raspberry Pi
- Host: GitHub
- URL: https://github.com/gummiflip/pi-hole-pi.alert-installation-
- Owner: gummiflip
- Created: 2023-09-19T10:59:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-20T15:38:03.000Z (over 1 year ago)
- Last Synced: 2024-12-20T15:17:53.948Z (19 days ago)
- Topics: debian, gummiflip, netzwerk, pihole, proxmox, raspberry-pi
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pi-hole & Pi.Alert Installation Guide for Raspberry Pi
## Introduction
Dive into the world of network monitoring and ad-blocking with Pi-hole and Pi.Alert on your Raspberry Pi. This guide will walk you through the installation process and help you set up these tools for optimal network protection and visibility.
## Prerequisites:
- A Raspberry Pi running Debian OS (64-Bit) with Kernel version 6.1.47-v8+.
- An active internet connection.## Step 1: Installing Pi-hole
1. **Update Your System**:
```bash
sudo apt update && sudo apt upgrade -y
```2. **Install Pi-hole**:
```bash
curl -sSL https://install.pi-hole.net | bash
```3. Follow the on-screen instructions to configure Pi-hole.
## Step 2: Installing Pi.Alert
1. **Download the Pi.Alert Installation Script**:
```bash
bash -c "$(wget -qLO - https://github.com/leiweibau/Pi.Alert/raw/main/install/pialert_install.sh)"
```2. Follow the on-screen instructions to configure Pi.Alert.
## Step 3: Configuring Pi.Alert for Single Network Monitoring
1. **Edit the Pi.Alert Configuration File**:
```bash
nano /home/pi/pialert/config.php
```2. Locate the `SCAN_SUBNETS` section and add your desired network:
```bash
SCAN_SUBNETS = [ '192.168.0.1/24' ]
```3. Save the file and exit the editor.
## Optional: Configuring Pi.Alert for Dual Network Monitoring
1. **Edit the Pi.Alert Configuration File**:
```bash
nano /home/pi/pialert/config.php
```2. Locate the `SCAN_SUBNETS` section and add your desired networks:
```bash
SCAN_SUBNETS = [ '192.168.0.1/24', '192.168.178.0/24' ]
```