Let us look at how to Configure mod_evasive with the support of our Apache hosting support at Bobcares.
What is mod_evasive?
mod_evasive is an Apache module that aids in server defense against brute force and denial of service assaults. Setting up mod_evasive provides us with a safety net to capture malicious players before they degrade server performance.
The module has numerous configuration settings that allow us to specify how many concurrent queries a client may make in a certain interval. After the limit is reached, more requests will be prevented for a period of time.
How to configure and Install mod_evasive to protect Against DoS and DDoS:?
The methods for installing mod_evasive to guard against DOS and DDOS are as follows.
-
Requirements to Configure mod_evasive:
Firstly, We must install the requirements. Run the following command on the terminal.
For Debian/Ubuntu follow the command given below:
sudo apt-get update
Copy Codesudo apt-get install apache2-utils
Copy CodeFor CentOS / Fedora:
sudo yum update
Copy Codesudo yum install httpd-devel
Copy Code -
Install mod_evasive:
To install mod_evasive, use the following command.
For Debian / Ubuntu:
sudo apt-get install libapache2-mod-evasive
Copy CodeFor CentOS / Fedora:
sudo yum install mod_evasive
Copy Code -
Configure mod_evasive:
After that, in a text editor, open the mod_evasive configuration file.
For Debian/Ubuntu:
sudo vi /etc/apache2/mods-enabled/evasive.conf
Copy CodeCentOS / Fedora:
sudo vi /etc/httpd/conf.d/mod_evasive.conf
Copy CodeIn a text editor, open the mod_evasive configuration file.
DOSHashTableSize 3097 DOSPageCount 2 DOSSiteCount 50 DOSPageInterval 1 DOSSiteInterval 1 DOSBlockingPeriod 10 DOSEmailNotify mail@yourdomain.com DOSLogDir "/var/log/apache2/"
Copy CodeChange the email against DOSEmailNotify to the email id so that we are alerted automatically if the website is attacked.
-
Restart Apache Server:
To make the modifications take effect, restart the Apache web server.
For Debian / Ubuntu:
sudo systemctl reload apache2
Copy CodeFor CentOS / Fedora:
sudo systemctl restart httpd.service
Copy Code -
Check to see whether mod_evasive is working:
Finally, Mod_evasive’s creators have given a test.pl script for testing. It will be held at:
/usr/share/doc/libapache2-mod-evasive/examples/test.pl
Copy CodeUse the following command to run the script:
perl /usr/share/doc/libapache2-mod-evasive/examples/test.pl
Copy CodeThe output should look like this:
HTTP/1.1 403 Forbidden HTTP/1.1 403 Forbidden HTTP/1.1 403 Forbidden HTTP/1.1 403 Forbidden HTTP/1.1 403 Forbidden HTTP/1.1 403 Forbidden
Copy Code
test.pl simply mimics a web server security attack and returns the result. The 403 response code in the preceding lines indicates that access to harmful request patterns has been blocked.
[Need assistance with similar queries? We are here to help]
Conclusion
To sum up we have now seen how to configure mod_evasive with the support of our tech support team.
PREVENT YOUR SERVER FROM CRASHING!
Never again lose customers to poor server speed! Let us help you.
Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.
0 Comments