From 28f7146c532033dfed4520125ae405d6d1a37945 Mon Sep 17 00:00:00 2001 From: Georg Kahest Date: Thu, 16 Jul 2015 13:44:39 +0300 Subject: [PATCH] typo fix --- doc/debian_build_doc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/debian_build_doc.md b/doc/debian_build_doc.md index 2de7b1410..5ee934097 100644 --- a/doc/debian_build_doc.md +++ b/doc/debian_build_doc.md @@ -58,7 +58,7 @@ Once the file is created, reload the xt_recent kernel module via modprobe -r xt_ #!/bin/bash iptables -A INPUT -p tcp --dport 443 -m recent --name repp --rcheck --seconds 60 --hitcount 25 -j DROP iptables -A INPUT -p tcp --dport 443 -m state --state NEW -m recent --set --rsource --name repp -j ACCEPT -iptables -A INPUT -p tcp --dport 443 -m recent --name rwhois --rcheck --seconds 60 --hitcount 25 -j DROP +iptables -A INPUT -p tcp --dport 80 -m recent --name rwhois --rcheck --seconds 60 --hitcount 25 -j DROP iptables -A INPUT -p tcp --dport 80 -m state --state NEW -m recent --set --rsource --name rwhois -j ACCEPT ````