<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Iptables - trying to block multiple ip addresses in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161994#M9082</link>
    <description>I have a few more for you.&lt;BR /&gt;&lt;BR /&gt;All of these ip's have run formscript.cgi more than 10 times.&lt;BR /&gt;&lt;BR /&gt;Funny thing is, I didn't get a single form from the web.&lt;BR /&gt;&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 131.178.0.213 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.122.142.182 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.144.185.86 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.157.86.130 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 216.185.55.67 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.210.138.17 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 62.81.176.46  -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 24.82.81.169 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 12.161.118.34 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 200.11.183.252 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 205.147.224.92 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 207.61.246.194 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 208.186.102.78 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 213.173.154.230 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 194.102.248.251 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 194.254.160.78  -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 64.14.144.85    -j DROP&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Thu, 22 Jan 2004 16:54:49 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2004-01-22T16:54:49Z</dc:date>
    <item>
      <title>Iptables - trying to block multiple ip addresses</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161990#M9078</link>
      <description>Trying to block multiple ip's from my server.&lt;BR /&gt;&lt;BR /&gt;I'm using Easy Firewall Generator for IPTables.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://easyfwgen.morizot.net/gen/index.php" target="_blank"&gt;http://easyfwgen.morizot.net/gen/index.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I've added:&lt;BR /&gt;&lt;BR /&gt;# Drop everyting from the following ip's&lt;BR /&gt;echo "Process the bad people ..."&lt;BR /&gt;$IPT -A INPUT -p ALL -d 68.122.142.182 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -d 68.144.185.86 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -d 68.157.86.130 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -d 216.185.55.67 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -d 68.210.138.17 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -d 62.81.176.46 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -d 24.82.81.169 -j DROP&lt;BR /&gt;&lt;BR /&gt;Yet, 62.81.176.46 is still being logged in my maillog...&lt;BR /&gt;&lt;BR /&gt;I'm new to iptables - so be gentle....&lt;BR /&gt;&lt;BR /&gt;Server is a DNS, Mail, and web server running RH 9.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 12 Jan 2004 12:10:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161990#M9078</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-01-12T12:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: Iptables - trying to block multiple ip addresses</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161991#M9079</link>
      <description>okay - I think I got it - should be -s (source) not -d&lt;BR /&gt;&lt;BR /&gt;# Drop everyting from the following ip's&lt;BR /&gt;echo "Process the bad people ..."&lt;BR /&gt;$IPT -A INPUT -p ALL -s 68.122.142.182 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -s 68.144.185.86 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -s 68.157.86.130 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -s 216.185.55.67 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -s 68.210.138.17 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -s 62.81.176.46 -j DROP&lt;BR /&gt;$IPT -A INPUT -p ALL -s 24.82.81.169 -j DROP&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 12 Jan 2004 12:23:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161991#M9079</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-01-12T12:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Iptables - trying to block multiple ip addresses</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161992#M9080</link>
      <description>Looks like you have it Geoff.&lt;BR /&gt;&lt;BR /&gt;Are you working on my sendmail deal by using iptables to block the nasty person?&lt;BR /&gt;&lt;BR /&gt;Just wondering.  Got to block the soure.&lt;BR /&gt;&lt;BR /&gt;I have ehanced firewall logging going and am planning on matching the mail events to the iptables log and doing a iptables modification myself.&lt;BR /&gt;&lt;BR /&gt;I wouldn't mind seeing your final configuration in my investmenttool@yahoo.com account.&lt;BR /&gt;&lt;BR /&gt;The same guy may be messing with both of us.&lt;BR /&gt;&lt;BR /&gt;I'm going to get those points assigned btw, just dealing with other issues this morning.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 12 Jan 2004 12:27:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161992#M9080</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-01-12T12:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Iptables - trying to block multiple ip addresses</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161993#M9081</link>
      <description>I have used your list on my iptables firewall.&lt;BR /&gt;&lt;BR /&gt;I wish to refer to you two ip addresses that have been making my life miserable:&lt;BR /&gt;&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 66.47.86.187 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 131.178.0.213 -j DROP&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Punish them!&lt;BR /&gt;&lt;BR /&gt;I've developing a log analyzer that will give me the ip addresses of repeat users of my formscript.&lt;BR /&gt;&lt;BR /&gt;I will post when its done.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 22 Jan 2004 15:55:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161993#M9081</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-01-22T15:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Iptables - trying to block multiple ip addresses</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161994#M9082</link>
      <description>I have a few more for you.&lt;BR /&gt;&lt;BR /&gt;All of these ip's have run formscript.cgi more than 10 times.&lt;BR /&gt;&lt;BR /&gt;Funny thing is, I didn't get a single form from the web.&lt;BR /&gt;&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 131.178.0.213 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.122.142.182 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.144.185.86 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.157.86.130 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 216.185.55.67 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 68.210.138.17 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 62.81.176.46  -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 24.82.81.169 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 12.161.118.34 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 200.11.183.252 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 205.147.224.92 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 207.61.246.194 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 208.186.102.78 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 213.173.154.230 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 194.102.248.251 -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 194.254.160.78  -j DROP&lt;BR /&gt;-A INPUT -i eth0 -p ALL -s 64.14.144.85    -j DROP&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 22 Jan 2004 16:54:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptables-trying-to-block-multiple-ip-addresses/m-p/3161994#M9082</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-01-22T16:54:49Z</dc:date>
    </item>
  </channel>
</rss>

