Subnet Calculator — IPv4 & IPv6 Jun 16, 2026

Subnetting Math: Why /24 Gives 254 Hosts, How VLSM Works, and What the Slash Actually Means

A /24 gives 254 usable hosts, not 256 — because subnetting always reserves the first address (network) and last address (broadcast). Here's the 2^n−2 formula across all prefix lengths, VLSM (Variable Length Subnet Masking) for efficiently dividing address space into different-sized subnets, why route summarization (supernetting) is the reverse operation, and what the slash number in CIDR notation actually means in binary.

DNS Lookup Jun 16, 2026

DNS Propagation, TTLs, and Caching: What Actually Happens When You Change a DNS Record

"DNS propagation takes up to 48 hours" is true but vague — the actual mechanism is TTL-governed caching at thousands of independent resolvers, each expiring on its own schedule. Here's how TTL actually controls this, why lowering TTL before a planned change matters, negative caching for new records, and why different users can genuinely see different DNS results during a transition.

HTTP Headers Jun 16, 2026

CORS Explained: Why It's a Server-Side Fix for a Browser-Side Error, and How to Debug It

A CORS error appears in the browser console as if it's a client-side problem — but it's actually caused by missing response headers from the server, which is why "it works in curl/Postman but fails in the browser" is the classic CORS symptom. Here's same-origin policy, the key CORS headers, simple vs preflighted requests, and a systematic debugging approach.

DMARC Lookup Jun 16, 2026

DMARC Alignment: Why SPF and DKIM Can "Pass" While DMARC Still Fails

"SPF passes" and "DKIM passes" don't mean DMARC passes — DMARC additionally requires alignment between the visible From domain and the domain that actually passed SPF or DKIM. Here's the distinction between envelope sender and visible From, relaxed vs strict alignment, and why DMARC passes if EITHER SPF or DKIM is aligned — the key to debugging most DMARC failures with third-party senders.

NS Lookup Jun 16, 2026

Glue Records and DNS Delegation: Why Changing Nameservers Can Silently Break a Domain

A nameserver named ns1.example.com creates a circular dependency — to find its IP, you'd normally ask example.com's nameservers, which it is one of. Glue records solve this by storing nameserver IPs directly in the parent zone. Here's how delegation chains work, when glue is required vs unnecessary, and why stale glue at the registrar causes confusing migration failures.

Blacklist Checker Jun 16, 2026

Shared IP Blacklisting: How a Neighbor's Compromised Website Tanks Your Email Deliverability

Your domain can land on a spam blacklist without sending a single spam email — if you're on shared hosting, the IP address you share with hundreds of other sites carries one collective reputation, and someone else's compromised WordPress site becomes your deliverability problem. Here's how to recognize shared-IP contamination, what your hosting provider can (and you can't) do about it, and why "IP warming" matters when switching to a dedicated IP.

DNS Lookup Jun 15, 2026

DNS over HTTPS: Why Your Browser and Your DNS Lookup Tool Might Be Talking to Different Servers

Your computer's DNS settings and your browser's actual DNS resolution might be using completely different servers — DNS over HTTPS (DoH), increasingly implemented at the browser level, can bypass OS-level DNS settings entirely. Here's why DoH/DoT exist (encrypting DNS queries for privacy), why "dig shows the new record but my browser doesn't" can happen due to separate resolver caches, and how DoH interacts with network-level DNS filtering.

Port Scanner Jun 15, 2026

IPv6's Address Space Is Too Big to Scan — Here's Why That Doesn't Make It Secure

A misconfigured open port on an IPv4 server gets found by automated scanners within hours, because the entire IPv4 address space is small enough to scan exhaustively. The same misconfiguration on an IPv6 server might never be found this way — not because it's more secure, but because 2^128 addresses is too large to scan at any practical rate. Here's how IPv6 hosts actually get discovered instead (DNS records, certificate transparency logs, predictable address patterns), and why "too big to scan" is security through obscurity, not security.

Blacklist Checker Jun 13, 2026

How DNSBLs Actually Work: The Reversed-IP DNS Query Behind Every Blacklist Check

Checking whether an IP is on a spam blacklist is actually just a specially-formatted DNS query — reversing the IP's octets and appending the blacklist's zone name. Here's how DNSBLs work technically, why different blacklists can disagree about the same IP, and how to interpret listing results based on which lists actually matter for deliverability.

BIMI Lookup Jun 13, 2026

BIMI Display Adoption: Why Your Perfectly-Configured Logo Might Still Not Show Up

A perfectly-configured BIMI setup — valid SPF/DKIM/DMARC, correctly-formatted SVG, even a VMC certificate — can still show no logo in most inboxes, because each mailbox provider independently decides whether and when to display BIMI logos. Here's the provider-by-provider adoption patchwork, why SVG Tiny PS (BIMI's restricted SVG profile) commonly rejects design-tool exports, and why "specification-compliant" and "logo actually displays" are genuinely different claims.

WHOIS Lookup Jun 13, 2026

Why WHOIS Now Says "REDACTED FOR PRIVACY": GDPR, Default Redaction, and the Shift to RDAP

A WHOIS lookup that once showed a domain owner's name, address, and phone number now typically returns "REDACTED FOR PRIVACY" — the result of GDPR-driven policy changes that affected WHOIS globally, not just for EU registrants. Here's why this happened, what information remains visible after redaction, how RDAP is replacing the decades-old WHOIS protocol with structured JSON output, and whether paid "WHOIS privacy" services still add value.

SSL Checker Jun 13, 2026

Certificate Transparency: How Public Logs Reveal Every SSL Certificate Ever Issued for Your Domain

Every publicly-trusted SSL certificate issued since 2018 is recorded in public, cryptographically verifiable logs — and browsers won't trust a certificate without proof of logging. Here's why Certificate Transparency exists, how CT logs let you discover every certificate ever issued for your domain (including ones you didn't request), and how CAA records complement CT for security monitoring.