Welcome to the WHC Training Portal. Work through structured modules to master DNS, hosting fundamentals, and customer support scenarios.
The Domain Name System is the phonebook of the internet. Understanding it is the single most important skill for supporting hosting customers effectively.
DNS (Domain Name System) translates human-readable domain names like example.com into IP addresses that computers use to communicate. Without DNS, users would need to memorize numeric IP addresses to visit every website.
When a user types a domain into their browser, a resolver queries a chain of servers — root servers, TLD servers, and finally the domain's authoritative nameservers — to find the correct IP address. This entire lookup typically completes in milliseconds.
nslookup or dig to verify what IP address their domain currently resolves to, and compare it against the server's actual IP.
Different record types serve different purposes. Knowing these by heart will dramatically speed up your troubleshooting.
www pointing to the root domain.When a DNS record is changed, the update doesn't appear instantly everywhere. Resolvers around the world cache DNS records for a set period determined by the record's TTL (Time to Live) — a value measured in seconds.
WHC offers several types of hosting. Understanding the differences lets you recommend the right product and troubleshoot tier-specific issues.
SSL certificates encrypt the connection between a user's browser and the web server, displayed as the padlock icon in the browser. Without a valid SSL certificate, modern browsers show security warnings that can prevent visitors from reaching a site.
WHC offers free AutoSSL (Let's Encrypt) for all cPanel hosting accounts. Issues typically arise when the domain's A record doesn't point to the hosting server, when the certificate hasn't been issued yet, or when there's a mixed content problem in the site's code.
Three DNS-based records work together to improve email deliverability and prevent spoofing:
When a customer's email lands in spam, always verify all three records are correctly set up before escalating. Use mail-tester.com or mxtoolbox.com to audit their configuration quickly.
5 scenario-based questions on DNS, propagation, and hosting fundamentals.
nslookup domain resolver-ip queries a specific DNS resolver. Using 8.8.8.8 (Google) or 1.1.1.1 (Cloudflare) lets you bypass your local cache to see what the public internet is resolving.nslookup example.com 8.8.8.8 — this queries Google's DNS resolver (8.8.8.8) directly, bypassing your local cache.