Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

16 total results found

OPNSENSE IN BRIDGE MODE

Step by step Guide

OPNSENSE IN BRIDGE MODE

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. ...

Docker Network

Setting up docker network for Vlans

Docker Network

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...

Easy Pihole install

Step by step pihole install

Easy 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...

Alta labs config for wireguard alerts

Config files

Alta labs config for wireguard alerts

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/...

CISCO - Setting up DHCP Server

Setting up DHCP server

CISCO - 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 ...

Docker Compose Stacks

Setting up Immich

Setup

Setting up Immich

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

Setting up Immich

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...

Mount a network share in ubuntu

Edit your fstab config

Mount a network share in ubuntu

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...