Advanced Search
Search Results
8 total results found
Step by step Guide
Configuration Steps Disable Outbound NAT Rule GenerationNavigate to Firewall > NAT > Outbound and select Disable Outbound NAT rule generation. This ensures that the firewall doesn't alter the source IP addresses of packets passing through the bridge. ...
Setting up docker network for Vlans
Setting Up a VLAN and Docker IPvlan Network This guide demonstrates how to create a VLAN on a host interface and then use it to run a Docker container on a dedicated subnet using the IPvlan driver. 1. Create a VLAN Interface sudo ip link add lin...
Step by step pihole install
First you will need to flash raspberry pi os, this can easily be done with the raspberry pi imager that you can get here. After that is done you can access you new linux install and first update repositories with sudo apt update and sudo apt upgrade. Ne...
Config files
This sends alerts to discord to know when someone connects. First i created a script called check_wg_peer.sh in /cfg so its persistent between reboots. #!/bin/sh # -------- Configuration -------- PEER="" NAME="Dale" WEBHOOK_URL="" STATE_FILE="/cfg/...
Setting up DHCP server
First command is to exclude addresses. conf t ip dhcp excluded-address 192.168.10.1 192.168.10.20 Create the DHCP Pool ip dhcp pool LAN_POOL network 192.168.10.0 255.255.255.0 default-router 192.168.10.1 dns-server 8.8.8.8 1.1.1.1 domain-name ...
Setup
Set up the server Step 1 - Download the required files Create a directory of your choice (e.g. ./immich-app) to hold the docker-compose.yml and .env files. Move to the directory you created mkdir ./immich-app cd ./immich-app Download do...
Docker install 1st
Before you install Docker Engine for the first time on a new host machine, you need to set up the Docker apt repository. Afterward, you can install and update Docker from the repository. Set up Docker's apt repository. # Add Docker's official GPG key: s...
Edit your fstab config
First you need to run. sudo nano /etc/fstab This is the next line that you need to paste in. Make sure you have a directory created that you want to mount your share to. //pathtoshare /localmounteddir cifs username=changeme,password=changeme,uid...