• Home
Home
Anti-DDoS CDNStatic & dynamic acceleration, edge scrubbingAnti-DDoS IP forwardingL4 forwarding with protected IPsSDK game shieldClient SDK for gaming workloadsAnti-DDoS serversDedicated compute with high availabilityLearn more
Gaming solutionLow latency + protectionFinancial solutionCompliance & scrubbingLive streaming solutionPush/pull at the edgeBlockchain solutionWeb3 infra protectionExplore
DocumentationAPIs & onboardingHelp centerFAQs & ticketsBlog & newsUpdates & best practicesGlobal speed testMulti-region performance checksTag cloudTopic map across the siteOpen docs
AboutMission & visionCareersHiringPartnersEcosystemContactSales & supportContact us
BlogTutorials

How do I check if a CDN node is active?

Published:May 5, 2026 at 09:50Views:0Editor:Sudun TeamEstimated reading time 12 min
PreviousHow do I configure CDN acceleration for my website? The latest CDN configuration guide

On this page

No outline

Related articles

  • How do I configure CDN acceleration for my website? The latest CDN configuration guide

    5/4/2026

  • How do I transfer images with a CDN?

  • How to choose the best CDN service provider to accelerate content distribution?

Enterprise CDN & acceleration with AI-driven monitoring and full-spectrum, real-time DDoS/CC protection. Trusted by tens of thousands of companies for fast, secure, and reliable content delivery and DDoS mitigation.

Product

  • Anti-DDoS CDN
  • Anti-DDoS IP forwarding
  • SDK game shield
  • Anti-DDoS servers

Solutions

  • Gaming solution
  • Financial solution
  • Live streaming solution
  • Blockchain solution

Resources

  • Documentation
  • Help center
  • Blog & news
  • Global speed test

Company

  • About
  • Careers
  • Partners
  • Contact

© 2026-2028 sudun.com 保留所有权利

  • Privacy
  • Terms
  • Cookies

Is CNAME resolution effective? Do you access the CDN node or directly to the origin server? Is the cache really a hit? Is there really an increase in user access speed in different regions?

This article takes Sudun CDN as an example to provide you with a complete set of CDN validation methods from four dimensions. Whether you're new to CDNs or a technician who needs to troubleshoot issues, this guide will help you quickly check the working status of your CDN.

Chapter 1: Basic Verification - Whether CNAME Resolution Takes Effect

The first step in CDN activation is to ensure that your domain name has been correctly resolved to the CNAME record of Sudun CDN. If this step is not done well, there will be no way to talk about all subsequent accelerations.

1.1 View from the Sudun console

The easiest way to verify this is to log in to the Sudun CDN console. In the domain name management list, find the domain name you are connected to and check its status.

If you see CNAME configured or Normal, DNS resolution is already in effect.

If you see "CNAME not configured" or "Waiting to resolve", your CNAME record has not been configured successfully, or the DNS cache has not been updated.

However, the console showing "configured" does not mean that it is already in effect everywhere in the world, because there is a cache delay in DNS resolution. So further confirmation is required through the command line tool.

1.2 Verify with the nslookup command

Applicable systems: Windows, macOS, Linux

Open the command line terminal (open CMD or PowerShell for Windows users) and enter the following command:

bash
nslookup -type=CNAME 你的域名.com

For example, if your domain name is www.example.com, enter:

bash
nslookup -type=CNAME www.example.com

Analysis of results:

✅ Effective: The CNAME record is displayed in the return results with the same value as the CNAME address provided by the Sudun CDN that you configured (for example, www.example.com.Sudun.cdn.com)../)

❌ Not Effective: The return results show that there is no CNAME record, or that the A record (resolved directly to IP) is displayed, indicating that the CNAME configuration is not effective or the DNS cache is not updated.

1.3 Validation with the dig command (more detailed)

Applicable systems: macOS, Linux

bash
dig CNAME 你的域名.com

For example:

bash
dig CNAME www.example.com

Check the ANSWER SECTION that returns the results, and if the Sudun CDN CNAME address that you configured is displayed, the resolution has taken effect.

1.4 Notes: TTL cache time

Even if you have properly configured your CNAME with your DNS service provider, you will need to wait for the TTL (Time to Live) to expire before it takes effect globally. TTL is usually between 10 minutes and 24 hours. If you have just modified your DNS, you can wait patiently for a while before verifying.


Chapter 2: Accurate Verification - HTTP Response Header Detection

Successful CNAME resolution is only the first step, it only indicates that the user was directed to the CDN node. But the most precise way to confirm that the CDN node is indeed processing the request and returning cached content is to check the HTTP response header.

2.1 Use the browser developer tools

This is the most intuitive method and suitable for everyone.

Steps:

  1. Open Chrome or Edge browser and press F12 to open Developer Tools
  2. Switch to the Network tab
  3. Refresh your website pages
  4. In the request list, click on any resource (e.g., HTML document, image, CSS file)
  5. Review the Response Headers section

Key fields to look for (Sudun CDN exclusive):

Response header fieldMeaningNormal values
X-CacheCache hit stateHIT (Hit Cache), MISS (Miss), EXPIRED (Expired)
X-Sudun-CacheSudun-specific cache identifierHIT from xxx node
AgeThe time the file has been cached on the CDN node (seconds)Numbers greater than 0
ViaProxy server identification passedContains the word Sudun
ServerServer IDSudun-CDN or similar identification

If you see X-Cache: HIT or Age: 123 (greater than 0), the resource is indeed returned directly from the cache of the Sudun CDN node, and the acceleration takes effect.

2.2 Validate with curl command

If you're used to using the command line, curl is a more efficient validation tool.

bash
curl -I https://你的域名.com

For example:

bash
curl -I https://www.example.com

Example of returning results (Sudun CDN):

code
HTTP/2 200
server: Sudun-CDN
date: Thu, 12 Mar 2026 06:30:45 GMT
content-type: text/html; charset=utf-8
x-cache: HIT
age: 235
via: 1.1 Sudun-edge-node-sha

Focus on:

  • server: Sudun-CDN directly indicates that Sudun services are used
  • x-cache: HIT indicates cache hits
  • age: 235 means that this page has been cached on the Sudun node for 235 seconds

2.3 Cache State Interpretation

When using Sudun CDN, you may see the following cache states:

X-Cache valueMeaningDescription
HITHit the cacheContent is returned directly from Sudun nodes for the best acceleration effect
MISSMissed cacheNodes have no cache and need to be pulled back to the origin server, which is common for first access
EXPIREDCache expirationWhen the cache time has expired, the node returns to the origin server to verify the update
BYPASSBypass cacheEnforce non-caching according to rules (such as dynamic content).

Chapter 3: IP Attribution Verification - Confirm that the Sudun node is accessed

In addition to looking at the response header, there is a direct way to check whether the IP address actually connected by the user belongs to the node IP segment of Sudun CDN.

3.1 Obtain the IP of the actual connection

Method 1: Browser Developer Tools

In the Network panel, click on a request and look at the Remote Address or IP Address field, which is the server IP you are actually connected to.

Method 2: curl command

bash
curl -vso /dev/null https://你的域名.com 2>&1 | grep "Connected to"

The returned result will show that the IP in parentheses is the IP that is actually connected.Connected to 你的域名.com (xxx.xxx.xxx.xxx)

3.2 Use the official Sudun IP detection tool

The Sudun CDN console has a built-in IP detection tool that allows you to input the IP obtained from the previous step into the detection tool:

  1. Log in to the Sudun CDN console
  2. Go to Tools > IP Detection
  3. Enter the IP address to be detected
  4. Click Start Detection

Interpretation of test results:

✅ Sudun node: The system displays the node region and operator to which the IP address belongs, and confirms that it is a Sudun edge node.

❌ Not a Sudun node: The system does not recognize it, indicating that the request may not have gone through Sudun, or that you obtained the wrong IP address.

3.3 Why is it important to detect IP?

In some cases, the CNAME resolution is successful, but the IP address accessed by the user is the origin IP. This may be because:

  • The local hosts file is resolved to the origin server
  • A proxy or VPN is used
  • DNS cache pollution

IP attribution detection eliminates these interferences and confirms that the traffic does pass through the Sudun CDN network.


Chapter 4: Performance Comparison - Is CDN Really Faster?

Technical validation confirms that the CDN is working, but the end user is concerned: Is the website really getting faster? Through performance comparison tests, the acceleration effect of CDN can be quantified.

4.1 Multi-region ping test

Sudun CDN's global nodes will return the nearest node IP address for users in different regions. This can be verified by using multi-region ping testing.

Tools used:

Online tools like 17CE, Ping.pe, ITDOG, etc

Enter your domain name and select multiple test nodes worldwide.

Key points of observation:

  • Whether the IP addresses are pinged in different regions (such as Beijing, Shanghai, New York, and London) are different
  • Whether latency is significantly reduced by region (usually within 50ms)
  • Whether there are some regions that are inaccessible or have unusually high latency

4.2 Comparison of before and after performance data

Use a professional website performance testing tool to compare the data before and after connecting to Sudun CDN:

Tool NameTest contentOfficial website
WebPageTestMulti-location loading of waterfall charts, first byte timewebpagetest.org
GTmetrixPage load time, performance scoregtmetrix.com
Google PageSpeed InsightsCore web page metrics, mobile performancepagespeed.web.dev

Core Focus Indicators:

  • TTFB (Time to First Byte): Reflects the response speed of CDN nodes, which should decrease significantly after connecting to the CDN
  • LCP (Maximum Content Draw): Reflects page load speed, targeting < 2.5 seconds
  • Loading completion time: Overall page loading time

4.3 Sudun CDN Dial Tool

The Sudun console has a built-in URL testing tool that simulates users from different regions visiting your website and gets detailed performance reports.

Steps:

  1. Log in to the Sudun CDN console
  2. Go to Diagnostic Tools > URL Test
  3. Create a test task, select the test region and operator
  4. View the test report, including DNS latency, connection time, first package time, download speed, and other metrics

This is the most straightforward because the test request does go through Sudun's network, and the results are more informative.


Chapter 5: Online Tool Assisted Verification

In addition to the above methods, there are also convenient online tools that can quickly determine whether a CDN is effective.

5.1 CDN detection tools

CDN Planet(cdnplanet.com/tools/cdnfinder/)

Enter your domain name and it will automatically detect which CDN service is used. If Sudun CDN is displayed, the configuration is successful.

WhatIsMyCDN(whatismycdn.com)

Similar CDN detection tools can quickly confirm whether a domain name is accelerated by CDN.

5.2 Global Ping Tool

Ping.pe: Ping your domain name from dozens of nodes around the world, showing the IP and latency of each node

17CE.com: A commonly used performance testing platform in China, supporting multi-region and multi-operator ping and HTTP detection

With these tools, you can visualize how users are performing when accessing from different regions.

5.3 Certificate Information Verification

If HTTPS is configured, you can view the SSL certificate information:

  • Whether the certificate issuer contains Sudun-related information
  • Whether the certificate's alternate name (SAN) includes a Sudun-specific domain name

Visit the SSLLabs.com, enter your domain name, and view the detailed certificate chain and TLS configuration.


Chapter 6: Common Problems and Troubleshooting Guidelines

Even if you follow the above methodology, sometimes you will find that the CDN does not seem to be working. Here are common problems and how to fix them.

6.1 CNAME is configured, but there is no Sudun ID in the response header

Possible causes:

  • DNS cache not flushed: Wait for the TTL to expire, or try clearing the local DNS cache (Windows:)ipconfig /flushdns
  • Browser cache: Use incognito mode or clear browser cache
  • Origin Force Jump: Check if the origin server has redirect rules that cause CDN bypass

6.2 Some resources have CDN identities, while others do not

Possible causes:

  • Cache rule configuration issues: Check the cache rules of the Sudun console to confirm that the paths that need to be accelerated are configured correctly
  • First access: The first time a new resource is accessed, it will show MISS, and the second time it will be hit
  • Dynamic content: API interfaces and user login pages may be set to not be cached

6.3 IP detection shows that it is not a Sudun node

Possible causes:

  • Wrong way to obtain the IP: Make sure that the IP is actually connected to the user, not the IP resolved by the domain name
  • hosts file or proxy interference: Check the local hosts file for forced resolution
  • CNAME is not effective globally: DNS cache has not been updated in some regions

6.4 Slow or unavailable access to certain regions

Possible causes:

  • Cross-border access issues: If the origin site is in Chinese mainland and the service scope does not include overseas, overseas users' access may be affected
  • Insufficient node coverage: Contact Sudun technical support to confirm if there are nodes in the region
  • Origin server performance bottleneck: Check whether the origin server can respond to back-to-origin requests normally

6.5 Contact Sudun technical support

If none of the above troubleshoots resolve the issue, you can contact Sudun in the following ways:

  • Online customer service in the lower right corner of the console
  • Submit a ticket (with your domain name, test IP, response header screenshot, etc.)
  • Consult the official documentation: docs.Sudun.com

Chapter 7: Verification Checklist - One table for all inspections

To facilitate your execution, here is a list of Sudun CDN validation verifications:

Validation dimensionsValidation methodExpected resultsstate
CNAME parsingnslookup/dig for CNAMEReturn the CNAME address provided by Sudun☐
Console statusSudun console domain name managementDisplays "CNAME Configured" or "Healthy Operation"☐
Response headBrowser F12 or curl to viewIncludes X-Cache: HIT, server: Sudun-CDN☐
Cache timeLook at the Age fieldAge > 0☐
IP attributionSudun IP Detection ToolConfirm that the IP address is the Sudun node☐
Multi-region ping17CE or Ping.pe testedDifferent IPs are resolved in different regions and the latency is low☐
Performance comparisonWebPageTest/GTmetrixTTFB drops significantly and loading time is shortened☐
Dial test reportSudun URL testAvailability > 99% in all regions, and performance is up to standard☐

Conclusion: Make validation a habit of CDN O&M

Configuring the CDN is only the first step, and it is equally important to continuously verify the working status of the CDN. You can gain a comprehensive understanding of the health of Sudun CDN by using the four dimensions described in this article—DNS resolution verification, HTTP response head verification, IP attribution verification, and performance comparison verification.

For websites looking for extreme performance, it is recommended:

  • After the initial configuration: Perform the full validation checklist
  • Weekly: View the monitoring report in the Sudun console
  • Monthly: Test overall performance once with multi-geo tools
  • After the website is updated: Check if the cache refresh is active

Sudun CDN provides a wealth of diagnostic tools and technical support to help you stay informed about the acceleration status. If you encounter any issues during the verification process, feel free to contact the Sudun team, and we will help you ensure that your website always maintains the best acceleration results.

Remember: true acceleration lies not only in the moment of configuration, but also in every second that is continuously verifiable.