Use iptables to prevent php-ddos packet Distribution

Source: Internet
Author: User
Tags web hosting

Recently, php-ddos flood, many web hosting service providers worry that their websites are implanted with php-ddos due to website permissions or vulnerabilities, and a large number of data packets are sent externally, this will cause unnecessary troubles and losses. To this end, we can use iptables to prohibit external packet sending from the root cause of php-ddos.


1. Allow ports (such as DNS) requiring UDP services)
Iptables-I OUTPUT-p udp -- dport 53-d 8.8.8.8-j ACCEPT

Ii. Prohibit the local machine from sending UDP packets externally
Iptables-a output-p udp-j DROP

The green "53" is the UDP port required by DNS, and the yellow "8.8.8.8" is the dns ip address, which is determined based on your server settings, if you do not know the dns ip address used by your server, you can run the following command in SSH to obtain it:


Cat/etc/resolv. conf | grep nameserver | awk 'nr = 1 {print $2 }'

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.