• 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

Documentation

  • Introduction
  • Best Practices
Docs/Security Protection/Access Control

Access Control

速盾网络 Team
Docs

Tags

  • DDoS防护

On this page

No outline

Share

𝕏fin

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

Configure access controls to restrict who can access your content. Use IP restrictions, geographic blocking, and authentication to protect sensitive resources.

Access Control Methods

MethodDescription
IP RestrictionsAllow/block specific IPs
Geo BlockingBlock by country/region
Token AuthURL token validation

IP Restrictions

Allow Specific IPs

json
{
  "ip_access": {
    "mode": "allowlist",
    "ips": ["10.0.0.0/8", "192.168.1.0/24"]
  }
}

Block Specific IPs

json
{
  "ip_access": {
    "mode": "blocklist",
    "ips": ["1.2.3.4", "5.6.7.8"]
  }
}

Geographic Restrictions

Block Countries

json
{
  "geo_blocking": {
    "action": "block",
    "countries": ["XX", "YY"]
  }
}

Token Authentication

javascript
function generateSignedUrl(url, secret, expiry) {
  const expires = Math.floor(Date.now() / 1000) + expiry;
  const signature = crypto
    .createHmac("sha256", secret)
    .update(url + expires)
    .digest("hex");
  return url + "?expires=" + expires + "&signature=" + signature;
}

API Reference

bash
curl -X GET https://api.Sudun.com/v1/domains/{domain}/access \
  -H "Authorization: Bearer YOUR_API_KEY"

Need help? Contact support@Sudun.com