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

17 total results found

Forwarding the clients ip

Linux Server Traefik

Introduction This manual provides instructions on how to configure Traefik to forward the client's IP address correctly. By adding a specific middleware, you can ensure that the actual client's IP address is included in the request headers. Prerequisites ...

1100 Switch 802.1Q VLAN Configuration Instructions

Pfsense

Introduction This manual provides step-by-step instructions for configuring VLANs on a pfSense device, specifically focusing on the requirements for tagging ports based on the type of connected device. Follow these instructions to ensure proper VLAN configura...

Graphics - 6/13/2024

Fortnite Best Settings

How to setup mods

Valheim Mods

1. Download the Valheim Plus bundle which comes with the mod injector and needed files: https://www.nexusmods.com/valheim/mods/2323?tab=files 2. Drag all the contents into the Valheim directory folder D:\SteamLibrary\steamapps\common\Valheim 3. Start V...

List of good mods

Valheim Mods

How to install a mod: Download a mod should be a .dll file Copy the .dll file for the mod into the BepInEx plugin folder: D:\SteamLibrary\steamapps\common\Valheim\BepInEx\plugins Follow mod instructions Best Mod List: Mod Name Mod Link Worki...

Adding a VLAN interface with Netplan

Linux Server Linux Commands

Follow the below to add a VLAN through Netplan on a Ubuntu server 1. Open the Netplan Configuration File: sudo nano /etc/netplan/01-network-manager-all.yaml 2. Edit the File with the Correct Configuration: network:  version: 2  ethernets:    eno1:      dhc...

Enable Docker port 2375 on Linux + Synology NAS

Linux Server Docker Apps

To enable Docker to listen on port 2375, you need to configure the Docker daemon to listen on this port. This is typically used for remote API access. Note that enabling Docker on port 2375 without TLS is not secure because it will expose the Docker API over a...

Pihole

Linux Server Docker Compose

Pihole on Synology NAS using MACVLAN services:   pihole:     image: pihole/pihole:latest     container_name: pihole     environment:       - PIHOLE_UID=1026 # NEED TO UPDATE THIS TO WORK CORRECTLY (id in terminal)       - PIHOLE_GI...

NUT UPS

Linux Server Linux Commands

Edit user settings NAS: sudo nano /usr/syno/etc/ups/upsd.users | sudo nano /etc/ups/upsd.users LINIX:  sudo nano /etc/nut/upsd.users upsd.users [mac] password = cyber actions = set instcmds = all # allow user to change UPS sett...

Adding VLAN route in Synology NAS

Linux Server Linux Commands

First SSH into the NAS We need to copy an existing interface file and change the name and contents of this file. We first need to move into the following folder: cd /etc/sysconfig/network-scripts This folder contains all the interface config files (ls to sh...

Add a VLAN interface to Raspberry Pi

Linux Server Linux Commands

Note: The Pi needs to be plugged into a switch with the VLANs configured for the port Step 1: Go into the interface directory cd /etc/network/interfaces.d Step 2: Create a new interface sudo nano eth0.10 Step 3: Add the interface and route: auto eth0.10 ...

Change the DNS in Linux

Linux Server Linux Commands

1. Open the /etc/resolv.conf file sudo nano /etc/resolv.conf 2. Add/modify the lines and save (CTRL + S / CTRL + X): nameserver 192.168.1.9 # DNS 1 nameserver 192.168.1.8 # DNS 2 3. Make /etc/resolv.conf immutable: This will prevent any other services fro...

What's Up Docker container tags

Linux Server Docker Apps

Ignore container  'wud.watch=false' Container with name like librenms/librenms:24.8.1 'wud.tag.include=^\d+\.\d+\.\d+$$' Container with name like traefik:v3.0      'wud.tag.include=^v\d+\.\d+\.\d+$$' The below allows WUD to notify you when the latest ima...

Configuring Custom Middleware Rules for Specific IP Addresses: Bypass or Apply Unique Middleware Sets

Linux Server Traefik

This setup demonstrates how to configure Traefik routers to apply different sets of middlewares based on the client’s IP address. In this case, all IPs except 192.168.50.16 will go through Authentik for authentication. The specific IP 192.168.50.16 bypasses Au...

Restic Commands

Restic backups

Restic & Autorestic Backup Management Guide This guide provides step-by-step instructions for managing backups stored in Backblaze B2 using Restic and Autorestic. It covers how to check snapshots, delete snapshots, prune old backups, and other useful commands...

Autorestic quick start

Restic backups

Install autorestic: sudo wget -qO - https://raw.githubusercontent.com/cupcakearmy/autorestic/master/install.sh | sudo bash Config file: /home/mac/.autorestic.yml version: 2 locations: ansible_semaphore-mysql: from: ansible_semaphore-mysql # T...

SSH Key Authentication Setup Guide

Linux Server Linux Commands

🎯 Goal: Enable secure, passwordless SSH login from your client machine to your server using SSH key authentication. 🧱 Prerequisites: You have access to both your client machine (where you initiate the SSH connection) and your server. You know the...