Hello , I am facing an DDOS Attack from 3 days.
DataCenter also not helping me. I asked them how much GBPS attack is going on right now? They said 10-15-20GBPS attack is going on.
Is there any way to protect my dedicated server from 10-15gbps ddos attack ?
Hi! I hope you're doing fine! There are 3 steps to stop it even you got a small budget
1.
Ensure to make your server as fast as possible
For a start, your web server should be as fast as possible. In other words, it must be able to answer a request in milliseconds. If you are using an IIS server, the easiest way to achieve this is to enable HTTP Keep-Alive. This will allow your webserver to process multiple requests in parallel using a single connection
2.
Make use of a CDN service
Another way to achieve a high rate of requests per second is to use a CDN service. This is a distributed network of servers that will send your content to the end-user instead of your web server. This way, your web server only needs to deal with requests from the CDN servers.
A CDN service can undoubtedly help you mitigate a DDoS attack with a small budget, but you will still need to implement a few other things to increase your protection level.
A reverse proxy server can accept incoming requests and forward them to your web server. The web server will then decide if the reverse proxy server can handle the request or if it needs to be sent to a different server. This way, you can have multiple web servers behind a single IP address or have a single server with multiple IP addresses (VIPs).
3. The use of SSL encryption
Another trick to reduce your attack surface is to use SSL encryption. With SSL, you can secure your web server, the reverse proxy server, and your CDN servers. This way, your attackers are unable to access your network because all your servers use encryption.
source
Take care and all the best!