MB Networks
TOOL-21 · Reference
Searchable reference for all HTTP/1.1 and HTTP/2 status codes with descriptions and common causes.
HTTP status codes are grouped by their first digit, and that digit alone tells you the category of what happened: 1xx is informational (rare in normal browsing), 2xx means success, 3xx means redirection, 4xx means the client did something the server won't accept, and 5xx means the server itself failed. Recognizing the class instantly — before even reading the specific code — is most of what's useful about this whole reference.
200 (OK), 301/302 (permanent/temporary redirect — the distinction matters for SEO, since 301 passes ranking signal and 302 doesn't), 401 (not authenticated) vs 403 (authenticated but not authorized — a common point of confusion), 404 (not found), 429 (rate limited), 500 (generic server error), and 503 (service temporarily unavailable, often during deploys or overload) cover the overwhelming majority of codes you'll actually encounter debugging.
401 means the server doesn't know who you are (authentication failed or missing); 403 means it knows exactly who you are and you're still not allowed to do this (authorization failed). Mixing these up is one of the most common API-debugging mistakes.
301 (permanent) tells search engines and browsers to update their records and pass along ranking signal to the new URL — use it when a page has genuinely moved for good. 302 (temporary) means exactly that: nothing permanent changes, and search engines keep indexing the original URL.
Too Many Requests — you've hit a rate limit. The response often includes a Retry-After header indicating how long to wait before trying again; respecting it is the correct way to handle a 429, not retrying immediately.
Related tools
Networking
Port Number Reference
Searchable reference of well-known TCP and UDP port numbers with service names and descriptions. Filter by protocol or port range.
Open →Networking
CIDR Aggregator
Paste a list of IP addresses or CIDR blocks and get the minimal set of CIDR ranges that covers them all. Useful for firewall ACLs and route summarization.
Open →Networking
DNS Lookup
Look up DNS records, domain registration (RDAP/WHOIS), and IP geolocation for any domain or IP address. No install, no sign-up.
Open →Networking
MAC Address Vendor Lookup
Look up the manufacturer of any network device by MAC address. Queries the IEEE OUI database to identify the vendor from the first 3 octets.
Open →Networking
PoE Budget Calculator
Add your PoE devices and check total draw against your switch's power budget — with common PoE class presets for APs, cameras, and phones.
Open →Networking
IPv4 Subnet Calculator
Enter any IPv4 address and prefix length to instantly see network address, broadcast, usable hosts, subnet mask, wildcard mask, and a bit-level breakdown. Works for any /0–/32.
Open →RFC 7231, RFC 7235, RFC 6585, RFC 8470