Saturday, August 3, 2013

Khoá nhanh IP đang tấn công DDos

Bước 1: Lấy danh sách những top connection:
netstat -anp |grep 'tcp\|udp' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
Bước 2: chạy command
route add IP_ADDRESS reject
Bước 3: Gỡ bỏ IP khỏi bảng cấm:

route delete IP_ADDRESS reject

Related Posts:

  • Install php PHP Modules PHP also has a variety of useful libraries and modules that you can add onto your server. You can see the libraries that are available by typing: yum search php- Terminal then will display the list of possible … Read More
  • MySQL: Connect From an Other System / Computer How do I connect to my MySQL database server from an other server (say Apache or Tomcat app server) in same VLAN under CentOS / Fedora / RHEL / Redhat Linux?First, you need to turn on the r… Read More
  • Đếm số kết nối thực tếnetstat -nap |grep ESTA |wc -l… Read More
  • SGID and SUID What is SGID? SGID (Set Group ID up on execution) is a special type of file permissions given to a file/folder. Normally in Linux/Unix when a program runs, it inherits access permissions from the logged in use… Read More
  • Quản lý user trên linux1. Các khái niệm cơ bản về quản lý account của Linux và Unix - Account trên Linux/Unix bao gồm nhiều thông tin trong đó hai phần liên quan đến việc sử dụng là username và userID: username: khi sử dụng để login, gán quyền, v… Read More