Skip to main contentSkip to navigation
[email protected]
Client AreaSupport
Hosting Mammoth
HostingMammothYour Data, Our Responsibility
Home
Solutions
Hosting Services
Store
Pricing
About
Blog
API
Contact

Stay Ahead of the Curve

Get the latest insights on cybersecurity, AI innovations, and enterprise data solutions delivered to your inbox.

Hosting Mammoth
HostingMammothEnterprise Solutions

Enterprise-grade data solutions. Hosting, recovery, cybersecurity, and AI-powered services for businesses worldwide.

[email protected]
Sun - Fri, 9:00am - 5:00pm

Services

  • Cloud Hosting
  • Data Recovery
  • Cybersecurity
  • Legal Support
  • MSP Services
  • Web Development
  • AI Services
  • Free Server Migration

Hosting

  • VPS Hosting (NVMe SSD)
  • VDS Hosting (NVMe)
  • Storage VPS (High SSD)
  • GPU Servers
  • Managed Services
  • Cloud Firewall
  • Load Balancer
  • One-Click Apps
  • n8n Hosting
  • Object Storage
  • FAQ

Company

  • Store
  • Pricing
  • About Us
  • Locations
  • Blog
  • Testimonials
  • Contact
  • Affiliate Program
  • White-Label
  • Terms of Service
  • Privacy Policy
  • Browser Cookies
  • SLA

Support

  • Client Area
  • Submit Ticket
  • Knowledge Base
  • Server Status
  • API Documentation

© 2026 Hosting Mammoth. All rights reserved.

Knowledge Base
Getting StartedAccount ManagementVPS HostingGPU ServersStorage VPSCloud FirewallLoad BalancerServer ManagementBilling & PaymentsSupport & TicketsAffiliate ProgramReseller ProgramMarketplace & Appsn8n HostingManaged ServicesServer MigrationAPI & DevelopersSecurityTroubleshootingGlossaryInstall Guides
  1. Home
  2. /
  3. Support
  4. /
  5. Security
  6. /
  7. Ddos Protection
GUIDESecurity

DDoS Protection — What We Offer

4 min read

Distributed Denial of Service (DDoS) attacks flood your server with malicious traffic, making it unavailable to legitimate users. Data Mammoth provides DDoS protection to detect and mitigate these attacks, keeping your services online even under attack.

What Is a DDoS Attack?

A DDoS attack uses many compromised systems to overwhelm a target with traffic. Common types include:

Attack TypeDescriptionLayer
VolumetricFloods bandwidth with massive traffic (UDP flood, DNS amplification)Network (L3/L4)
ProtocolExploits protocol weaknesses (SYN flood, Ping of Death)Transport (L4)
ApplicationTargets specific applications (HTTP flood, Slowloris)Application (L7)

Data Mammoth DDoS Protection

Standard Protection

All Data Mammoth servers include baseline DDoS protection at no additional cost:

  • Automatic detection — Our network monitors for traffic anomalies.
  • Network-level filtering — Volumetric attacks are filtered at the network edge.
  • Always-on — Protection is active at all times, not just during attacks.

Enhanced DDoS Protection

For servers requiring higher levels of protection, enhanced DDoS protection is available as an add-on:

  • Higher mitigation capacity — Handles larger attack volumes.
  • Advanced filtering — More sophisticated traffic analysis and filtering.
  • Application-layer protection — Mitigation of L7 attacks targeting your web applications.
  • Faster response — Quicker detection and mitigation thresholds.
  • Dedicated support — Priority support during active attacks.
To enable enhanced protection, see Managing Server Add-ons.

How DDoS Mitigation Works

  • Detection — Traffic patterns are continuously analyzed for anomalies.
  • Routing — When an attack is detected, traffic is routed through scrubbing centers.
  • Filtering — Malicious traffic is identified and dropped.
  • Delivery — Clean, legitimate traffic is forwarded to your server.
  • Monitoring — The attack is monitored until it subsides.
  • During mitigation, legitimate users experience minimal to no disruption.

    Signs of a DDoS Attack

    Indicators that your server may be under attack:

    • Sudden traffic spike — Network traffic increases dramatically without a corresponding increase in legitimate visitors.
    • Server unresponsive — Your server becomes slow or unreachable.
    • High CPU/bandwidth — Resource usage spikes unexpectedly.
    • Connection timeouts — Legitimate users cannot connect.
    • Error pages — Web server returns 502 or 503 errors.

    What to Do During an Attack

  • Do not panic — DDoS protection is active and working to mitigate the attack.
  • Check the dashboard — Monitor server metrics for traffic patterns.
  • Enable enhanced protection — If not already active, enable the enhanced DDoS add-on.
  • Submit a support ticket — Contact our team if the attack is causing significant impact. Use Critical priority.
  • Review firewall rules — Temporarily restrict traffic if you can identify attack patterns. See Server Firewall Hardening Guide.
  • Additional Protection Measures

    Complement Data Mammoth's DDoS protection with these server-level defenses:

    Use a CDN

    A Content Delivery Network distributes your content across global edge servers, absorbing attack traffic before it reaches your origin server.

    Rate Limiting

    Configure your web server to limit requests per IP:

    Nginx:

    nginx
    limit_req_zone $binary_remote_addr zone=one:10m rate=10r/s;

    server { location / { limit_req zone=one burst=20 nodelay; } }

    Connection Limits

    Limit concurrent connections per IP:

    Nginx:

    nginx
    limit_conn_zone $binary_remote_addr zone=addr:10m;

    server { location / { limit_conn addr 10; } }

    Fail2ban

    Configure Fail2ban to detect and block IPs showing attack patterns. See the initial server setup guides for Fail2ban configuration.

    What to Do Next

    • Server Firewall Hardening Guide — Complement DDoS protection.
    • Managing Server Add-ons — Enable enhanced protection.
    • Monitoring Server Performance — Detect traffic anomalies.
    • Complete Server Security Checklist — Full security review.

    Was this article helpful?

    ← Back to SecurityBrowse all categories →

    Still have questions?

    Contact Support →Submit a Ticket