Back to BlogIT Helpdesk

DNS Troubleshooting Guide for IT Support: How to Fix Network Issues Fast UK 2026

28 August 2026 6 min read
Photo by Tyler on Unsplash

DNS issues stop people working. It's one of the first things IT helpdesk staff encounter, and it's one of the most frustrating because the symptoms look like everything else: no internet, slow email, websites not loading, applications timing out. But DNS is actually simple once you know where to look. This guide walks you through the real troubleshooting process that IT support professionals follow every day in UK organisations.

What is DNS and why does it break?

DNS (Domain Name System) translates human-readable web addresses into IP addresses that computers can understand. When you type smoothops365.com into your browser, DNS finds the actual server location. When DNS breaks, the computer can't find anything, even though the internet connection itself is working fine.

DNS problems usually stem from four areas:

  • Local computer DNS cache corruption
  • Router or modem DNS configuration issues
  • ISP or external DNS server outages
  • Network adapter driver problems
  • Firewall or security software blocking DNS queries
  • The good news: most DNS problems can be fixed in under 10 minutes if you follow a systematic approach.

    Step 1: Check basic connectivity first

    Before assuming it's DNS, rule out the obvious.

    On Windows:

    Open Command Prompt (Win + R, type cmd, press Enter). Run:

    ```

    ping 8.8.8.8

    ```

    If that works, DNS is likely the issue. If it fails, the network connection itself is broken.

    On Mac:

    Open Terminal. Run the same ping command. If no response, try:

    ```

    networksetup -getdnsservers Wi-Fi

    ```

    This shows you what DNS servers your computer is actually using.

    If basic ping works but you can't reach websites, you've confirmed it's DNS. Move to step 2.

    Step 2: Clear the DNS cache

    Windows and Mac both cache DNS responses locally. Corrupted cache entries can cause lookups to fail silently.

    Windows:

    ```

    ipconfig /flushdns

    ```

    Then check it worked:

    ```

    ipconfig /all

    ```

    Mac:

    ```

    sudo dscacheutil -flushcache

    sudo killall -HUP mDNSResponder

    ```

    Try accessing a website now. Often this solves it completely.

    Step 3: Test with a public DNS server

    If flushing the cache didn't work, try a different DNS server to isolate whether the problem is your ISP's DNS or something local.

    Windows:

    Open Settings > Network & Internet > Change adapter options. Right-click your active connection > Properties > Internet Protocol Version 4 (TCP/IPv4). Select "Use the following DNS server addresses" and enter:

  • Preferred: 8.8.8.8 (Google)
  • Alternate: 8.8.4.4
  • Or use Cloudflare:

  • Preferred: 1.1.1.1
  • Alternate: 1.0.0.1
  • Mac:

    System Settings > Network > Wi-Fi (or Ethernet) > Details > DNS. Click the + button and add 8.8.8.8 and 8.8.4.4.

    Restart your browser and test. If websites load now, your ISP's DNS was the problem. Contact your ISP or leave the public DNS in place.

    Step 4: Test DNS resolution manually

    If changing DNS servers didn't fix it, use nslookup to see if the DNS server is even responding.

    Both Windows and Mac:

    ```

    nslookup google.com

    ```

    If you get a valid IP address back, DNS resolution is working. If you get "server failed" or a timeout, DNS is not responding at all.

    For a more detailed trace:

    ```

    nslookup -type=A google.com

    ```

    This shows the record type being queried. Try adding a specific DNS server:

    ```

    nslookup google.com 8.8.8.8

    ```

    If it works with Google's DNS but not with your configured DNS, the issue is your DNS server (either ISP or router).

    Step 5: Check your router settings

    Many DNS problems live in the router, not the computer.

    Log into your router (usually 192.168.1.1 or 192.168.0.1 in the address bar). Look for DNS settings under DHCP or WAN configuration. You should see either:

  • Automatic (ISP DNS)
  • Manual entries pointing to specific servers
  • If it's manual and pointing to old or non-existent servers, switch back to automatic. Restart the router.

    If the router's DNS is correct but still failing, restart it anyway. Routers sometimes cache DNS too.

    Step 6: Disable DNS security temporarily

    Some organisations use DNS filtering for security. If you're on a corporate network, check whether your security team has configured DNS security policies that might be blocking legitimate traffic.

    If this is your own machine and you're using Windows Defender or third-party antivirus, temporarily disable it to test. If DNS works with security off, add the DNS servers to your whitelist.

    Real example: A typical IT support case

    You get a call: "I can't access the company intranet, but everyone else can." You'd follow this in order:

    1. Ping 8.8.8.8 - it works. Network is up.

    2. Flush DNS cache.

    3. Try nslookup on the intranet domain. If it fails, the router DNS is the issue. Restart the router.

    4. If nslookup works but the site still won't load in the browser, it's usually a firewall or certificate issue, not DNS.

    This systematic approach saves you hours of guessing.

    Why IT support staff need DNS knowledge

    DNS troubleshooting is a core skill on any IT helpdesk. It's one of the first things you'll encounter when supporting users, and getting fast at it makes you look like a pro. If you're moving from healthcare into IT support and want to build real, practical skills that employers actually want, understanding DNS isn't optional.

    The CompTIA A+ certification (which covers networking fundamentals including DNS) and hands-on helpdesk experience teach you exactly this kind of troubleshooting. Most IT support roles in UK organisations start at £22,000 to £26,000, and knowing these skills confidently moves you towards the faster progression and higher salaries of senior support or specialised networking roles.

    If you're interested in building a structured path into IT support with real exam-backed certification, explore the IT Career Programme on SmoothOps 365. It's designed specifically for people without a tech background, runs weekends only (so you can work or care while learning), and gets you ready for CompTIA A+ in three months. The course includes live troubleshooting labs exactly like this one.

    Frequently asked questions

    What's the difference between DNS and DHCP?

    DNS translates domain names to IP addresses. DHCP assigns IP addresses to devices on your network automatically. Both live on the same servers often, but they do different jobs. If DNS is broken, names won't resolve. If DHCP is broken, devices won't get IP addresses at all.

    Can DNS problems cause slow internet but not complete failures?

    Yes, absolutely. If DNS queries are timing out or taking 5-10 seconds each, websites load slowly even though they eventually work. This is often caused by a misconfigured or overloaded DNS server, or your computer trying multiple DNS servers in sequence before getting a response.

    Should I always use public DNS like Google's 8.8.8.8?

    Not necessarily for permanent use on corporate machines. Public DNS works in emergencies and for testing, but many organisations use their own DNS for internal domains and filtering. Stick with your ISP's DNS or organisation's DNS normally, but keep public DNS knowledge for troubleshooting.

    What's the fastest way to diagnose a DNS problem?

    Run ipconfig /all (Windows) or networksetup -getdnsservers (Mac) first to see what DNS is configured, then test with nslookup google.com. If nslookup fails, it's definitely DNS. If it works but websites won't load, it's usually something else like firewalls or proxies.

    Do I need to restart my computer after changing DNS settings?

    Usually no. Windows and Mac apply DNS changes immediately. You may need to restart your browser or clear the browser cache, but a full restart is rarely necessary unless you changed router settings.

    Ready to start your IT career?

    SmoothOps 365 runs live instructor-led training every Saturday and Sunday. 3 months. 50 contact hours. Keep your job while you train.