Posts for: #Networking

Building a Hybrid Cloud Monitoring Stack with Zabbix, ZeroTier, and Azure

🧩 Problem

I wanted a centralized monitoring platform for my homelab that could monitor:

  • On-premises VMware ESXi hosts
  • Linux virtual machines
  • Windows systems
  • HPE iLO hardware management
  • Cloud-hosted workloads

The challenge was that most of my infrastructure lives behind NAT at home, and I did not want to expose services publicly or configure complex port forwarding.


🛠️ Solution Overview

I built a hybrid monitoring architecture using:

  • Zabbix 7.0 LTS hosted in Azure
  • ZeroTier for secure private connectivity
  • Zabbix Proxy running locally in my homelab
  • VMware API monitoring for ESXi
  • SNMP monitoring for HPE iLO

This design allows cloud-hosted monitoring while keeping home infrastructure private.

[Read more →]

AdGuard setup for blocking ads

Network-wide ad blocking using AdGuard Home deployed as a VM on ESXi. Blocks ads, trackers, and malicious domains at the DNS level — before they reach any device on the network.


🖥️ Environment

  • Hypervisor: VMware ESXi
  • VM OS: Ubuntu Server 24.04 LTS
  • VM Specs: 3 vCPU, 4 GB RAM, 60GB disk
  • AdGuard Home Version: Latest stable

🚀 Step 1: Create the VM on ESXi

Created a new VM in the ESXi web UI with the following settings:

[Read more →]

Setting up Cloudflare DDNS on Ubuntu for Dynamic Home IP


title: Setting up Cloudflare DDNS on Ubuntu using cloudflare-ddns-updater date: 2026-03-20 draft: false tags:

  • cloudflare
  • ddns
  • homelab
  • ubuntu
  • automation

🧩 Problem

My home network uses a dynamic public IP address, which changes periodically. This breaks remote access to my self-hosted services.


🛠️ Solution Overview

I used an open-source tool (cloudflare-ddns-updater) to automatically update my Cloudflare DNS records whenever my public IP changes.


🔧 Environment

  • Ubuntu Server (DDNS host)
  • Cloudflare domain
  • API Token with DNS edit permissions
  • Git installed

🚀 Step 1: Create Cloudflare API Token

  1. Log in to Cloudflare
  2. Go to My Profile → API Tokens
  3. Create a token with:
    • Zone → DNS → Edit
    • Zone Resources → Specific Zone (your domain)

Save the token securely.

[Read more →]