⬡ Admin Mode
📡
Configuring an Extreme Networks AP505i in Standalone Mode
Getting WiNG OS 7.1 standalone mode working on the AP505i — PSK syntax quirks, broadcast SSID gotchas, and 80MHz channel width.
JetKVM Remote Access with a Custom Domain via Cloudflare
How I got a subdomain pointing to my JetKVM without exposing it directly — using Cloudflare redirect rules to the native cloud app.
🖥️
← Back to feed
#cloudflare#kvm#homelab
JetKVM Remote Access with a Custom Domain via Cloudflare
1 min read

The Problem

I wanted a subdomain to give me access to my JetKVM, but running a full tunnel into the KVM's web UI had auth complications and felt fragile.

The Solution: Redirect Rule

JetKVM has a native cloud feature at app.jetkvm.com. Instead of proxying traffic, I set up a Cloudflare redirect rule that sends anyone hitting the my subdomain directly to my device's cloud URL.

Steps

  • Go to your Cloudflare dashboard → RulesRedirect Rules
  • Create a rule:
  • - Field: Hostname - Value: subdomain@yourdomain.com - Redirect URL: https://app.jetkvm.com/devices/your-device-id - Type: 302 (temporary, easy to change later)

  • Add a DNS record for kvm — just a dummy A record pointing to 192.0.2.1 (documentation IP) with proxy enabled. The redirect fires before the request ever resolves.
  • Result

    Visiting by subdomain now bounces straight to the JetKVM cloud console. Clean URL, no tunnel overhead, no exposed ports.

    Tip: Use 301 once you're sure it's permanent. Browsers cache 301s aggressively, so stick with 302 during testing.

    Post updated!