= 1024) {
$event.preventDefault();
const i = slugs.indexOf($wire.preview);
const next = $event.key === 'ArrowDown' ? Math.min(i + 1, slugs.length - 1) : Math.max(i - 1, 0);
if (next !== i && slugs[next]) $wire.openPreview(slugs[next]);
}
">
Installation Guides
11
Knowledge Base
308 copy-ready commands with fill-in variables, plus step-by-step installation guides.
/
Categories
8 results
= 1024) { $event.preventDefault(); $wire.openPreview('dns-check-all-records') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-check-all-records') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Check All Common DNS Records
for t in A AAAA MX TXT NS; do echo "== $t =="; dig +short {{domain}} $t; done
#dns
#dig
2 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('dns-check-propagation') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-check-propagation') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Check DNS Propagation Across Resolvers
for ns in 8.8.8.8 1.1.1.1 9.9.9.9; do echo "== $ns =="; dig @$ns +short {{domain...
#dns
#propagation
4 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('dns-reverse-lookup') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-reverse-lookup') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Reverse DNS Lookup (IP to Hostname)
dig -x {{ip_address}} +short
#dns
#ptr
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('dns-mail-records') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-mail-records') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Check Mail DNS: MX, SPF, DKIM, DMARC
echo '== MX =='; dig +short {{domain}} MX
#dns
#mail
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('dns-whois-domain') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-whois-domain') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Check Domain Registration & Expiry (whois)
whois {{domain}} | grep -Ei 'registrar:|name server|expiry|expiration'
#dns
#whois
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('dns-nameserver-soa') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-nameserver-soa') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Check Authoritative Nameservers & SOA Serial
dig +short {{domain}} NS
#dns
#nameserver
2 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('dns-trace-resolution') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-trace-resolution') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Trace Full DNS Resolution Path
dig +trace {{domain}}
#dns
#dig
2 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('dns-flush-local-cache') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('dns-flush-local-cache') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
DNS & Domains
New
Flush Local DNS Cache (Ubuntu)
sudo resolvectl flush-caches
#dns
#cache
3 views
0 copies