<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Simone Tellini</title>
	<atom:link href="http://tellini.info/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tellini.info</link>
	<description>To strive, to seek, to find, and not to yield</description>
	<lastBuildDate>Sun, 13 May 2012 14:05:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Keeping script kiddies at bay with mod_evasive and iptables by Simone</title>
		<link>http://tellini.info/2011/11/keeping-script-kiddies-at-bay-with-mod_evasive-and-iptables/#comment-1550</link>
		<dc:creator>Simone</dc:creator>
		<pubDate>Sun, 13 May 2012 14:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=147#comment-1550</guid>
		<description>you can use the visudo command to edit the sudoers file (where you need to add that line, or a similar line if apache runs using a different user on your system). Check http://wiki.centos.org/TipsAndTricks/BecomingRoot
Also, note that the iptables commands are using a &quot;banned&quot; chain that doesn&#039;t usually exist. I set it up using something along the lines of:
iptables -N banned
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -j banned
before every other rule (it should be one of the first rules in your INPUT chain). Anyway, if you&#039;re not familiar with firewall rules, you should look for some tutorials and documentation to study a bit.</description>
		<content:encoded><![CDATA[<p>you can use the visudo command to edit the sudoers file (where you need to add that line, or a similar line if apache runs using a different user on your system). Check <a href="http://wiki.centos.org/TipsAndTricks/BecomingRoot" rel="nofollow">http://wiki.centos.org/TipsAndTricks/BecomingRoot</a></p>
<p>Also, note that the iptables commands are using a &#8220;banned&#8221; chain that doesn&#8217;t usually exist. I set it up using something along the lines of:</p>
<p>iptables -N banned<br />
iptables -A INPUT -i lo -j ACCEPT<br />
iptables -A INPUT -j banned</p>
<p>before every other rule (it should be one of the first rules in your INPUT chain). Anyway, if you&#8217;re not familiar with firewall rules, you should look for some tutorials and documentation to study a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Keeping script kiddies at bay with mod_evasive and iptables by sdj</title>
		<link>http://tellini.info/2011/11/keeping-script-kiddies-at-bay-with-mod_evasive-and-iptables/#comment-1549</link>
		<dc:creator>sdj</dc:creator>
		<pubDate>Sun, 13 May 2012 11:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=147#comment-1549</guid>
		<description>Sorry i didn&#039;t make my self clear, i&#039;ve already installed it , i know how to do it..
i am stuck here :
#!/bin/sh
IP=$1
IPTABLES=/sbin/iptables
$IPTABLES -A banned -s $IP -p TCP --dport 80 -j DROP
echo &quot;$IPTABLES -D banned -s $IP -p TCP --dport 80 -j DROP&quot; &#124; at now + 2 hours &quot; &gt;&gt;&gt;&gt;
i create this script and name it as &quot;/root/scripts/ban_ip.sh&quot; OK ?
Then i am stuck here :
Don’t forget to grant the permission to run the script to the account used by apache. My sudoers config contains:
www-data ALL=(ALL) NOPASSWD: /root/scripts/ban_ip.sh&quot;
I rerally need some help on that.. I mean do what ? chown that file as apache ?
please explain the steps to do that...
Thanks for helping me Simone :)
sdj</description>
		<content:encoded><![CDATA[<p>Sorry i didn&#8217;t make my self clear, i&#8217;ve already installed it , i know how to do it.. </p>
<p>i am stuck here : </p>
<p>#!/bin/sh<br />
IP=$1<br />
IPTABLES=/sbin/iptables<br />
$IPTABLES -A banned -s $IP -p TCP &#8211;dport 80 -j DROP<br />
echo &#8220;$IPTABLES -D banned -s $IP -p TCP &#8211;dport 80 -j DROP&#8221; | at now + 2 hours &#8221; &gt;&gt;&gt;&gt;</p>
<p>i create this script and name it as &#8220;/root/scripts/ban_ip.sh&#8221; OK ? </p>
<p>Then i am stuck here : </p>
<p>Don’t forget to grant the permission to run the script to the account used by apache. My sudoers config contains:</p>
<p>www-data ALL=(ALL) NOPASSWD: /root/scripts/ban_ip.sh&#8221;</p>
<p>I rerally need some help on that.. I mean do what ? chown that file as apache ?</p>
<p>please explain the steps to do that&#8230;</p>
<p>Thanks for helping me Simone <img src='http://tellini.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>sdj</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Keeping script kiddies at bay with mod_evasive and iptables by Simone</title>
		<link>http://tellini.info/2011/11/keeping-script-kiddies-at-bay-with-mod_evasive-and-iptables/#comment-1548</link>
		<dc:creator>Simone</dc:creator>
		<pubDate>Sun, 13 May 2012 09:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=147#comment-1548</guid>
		<description>http://library.linode.com/web-servers/apache/mod-evasive?format=source contains the isntructions to install mod_evasive on CentOS.
Once that is done, it&#039;s just a matter of editing a few files, I&#039;m not sure how I could make it simpler...</description>
		<content:encoded><![CDATA[<p><a href="http://library.linode.com/web-servers/apache/mod-evasive?format=source" rel="nofollow">http://library.linode.com/web-servers/apache/mod-evasive?format=source</a> contains the isntructions to install mod_evasive on CentOS.</p>
<p>Once that is done, it&#8217;s just a matter of editing a few files, I&#8217;m not sure how I could make it simpler&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Keeping script kiddies at bay with mod_evasive and iptables by sdj</title>
		<link>http://tellini.info/2011/11/keeping-script-kiddies-at-bay-with-mod_evasive-and-iptables/#comment-1547</link>
		<dc:creator>sdj</dc:creator>
		<pubDate>Sat, 12 May 2012 16:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=147#comment-1547</guid>
		<description>Hello , can you make it more simple to install this script for centos 5.8 for an not so advanced user ?
Thanks in advance really great post :) !</description>
		<content:encoded><![CDATA[<p>Hello , can you make it more simple to install this script for centos 5.8 for an not so advanced user ?</p>
<p>Thanks in advance really great post <img src='http://tellini.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serendipity to WordPress by rack</title>
		<link>http://tellini.info/2010/10/serendipity-to-wordpress/#comment-1537</link>
		<dc:creator>rack</dc:creator>
		<pubDate>Mon, 07 May 2012 18:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=117#comment-1537</guid>
		<description>THANX!!!</description>
		<content:encoded><![CDATA[<p>THANX!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serendipity to WordPress by Simone</title>
		<link>http://tellini.info/2010/10/serendipity-to-wordpress/#comment-1536</link>
		<dc:creator>Simone</dc:creator>
		<pubDate>Mon, 07 May 2012 17:47:17 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=117#comment-1536</guid>
		<description>you might want to check this: &lt;a href=&quot;http://codex.wordpress.org/Using_Permalinks#Fixing_.htaccess_Generation_Issues&quot; rel=&quot;nofollow&quot;&gt;http://codex.wordpress.org/Using_Permalinks#Fixing_.htaccess_Generation_Issues&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>you might want to check this: <a href="http://codex.wordpress.org/Using_Permalinks#Fixing_.htaccess_Generation_Issues" rel="nofollow">http://codex.wordpress.org/Using_Permalinks#Fixing_.htaccess_Generation_Issues</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serendipity to WordPress by rack</title>
		<link>http://tellini.info/2010/10/serendipity-to-wordpress/#comment-1535</link>
		<dc:creator>rack</dc:creator>
		<pubDate>Mon, 07 May 2012 13:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=117#comment-1535</guid>
		<description>Up and running in WP but I have a permalink problem I can&#039;t seem to fix. Too late now to go back and do it ever I am afraid.
WP is making no changes to .htaccess. Permission is 666 which I can&#039;t change from FTP.
I am using default in permalink settings. http://rackjite.com/?p=123
Anything else and I get the WP WHOOPS FILE NOT FOUND.
It all works well internally and outside coming into the domain url.
But Google results seem to have an /archive in the URL of all 9000 articles making 404s. (but I noticed today a day later that google has TWO results now for a string to me one works and one does not. Will the search engine bots fix this as the crawl?
So I guess I need help with a custom structure string. I would like to include the postname.
Do I need an .htaccesss code line to do or undo ARCHIVES.
And do I need to go SSH to change the CHOD of the .htaccess file so maybe WP can do all this automatically?
Traffic is poor!
Troubles at... rackjite.com
Thanx Simone, been a few days and I can&#039;t seem to get any help anywhere else on this.</description>
		<content:encoded><![CDATA[<p>Up and running in WP but I have a permalink problem I can&#8217;t seem to fix. Too late now to go back and do it ever I am afraid. </p>
<p>WP is making no changes to .htaccess. Permission is 666 which I can&#8217;t change from FTP. </p>
<p>I am using default in permalink settings. <a href="http://rackjite.com/?p=123" rel="nofollow">http://rackjite.com/?p=123</a><br />
Anything else and I get the WP WHOOPS FILE NOT FOUND.</p>
<p>It all works well internally and outside coming into the domain url.<br />
But Google results seem to have an /archive in the URL of all 9000 articles making 404s. (but I noticed today a day later that google has TWO results now for a string to me one works and one does not. Will the search engine bots fix this as the crawl?</p>
<p>So I guess I need help with a custom structure string. I would like to include the postname.<br />
Do I need an .htaccesss code line to do or undo ARCHIVES.<br />
And do I need to go SSH to change the CHOD of the .htaccess file so maybe WP can do all this automatically?</p>
<p>Traffic is poor!</p>
<p>Troubles at&#8230; rackjite.com</p>
<p>Thanx Simone, been a few days and I can&#8217;t seem to get any help anywhere else on this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serendipity to WordPress by Simone</title>
		<link>http://tellini.info/2010/10/serendipity-to-wordpress/#comment-1503</link>
		<dc:creator>Simone</dc:creator>
		<pubDate>Wed, 02 May 2012 11:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=117#comment-1503</guid>
		<description>they suggest to use that permalink structure only because it&#039;s easier to maintain the same URLs as the old s9y blog, if you also perform all the ID-fixing SQL steps, otherwise feel free to use other permalink settings.
As to SEO, having the post name in the URL is good, the &quot;archive&quot; bit is not a problem (nor a bonus).</description>
		<content:encoded><![CDATA[<p>they suggest to use that permalink structure only because it&#8217;s easier to maintain the same URLs as the old s9y blog, if you also perform all the ID-fixing SQL steps, otherwise feel free to use other permalink settings.</p>
<p>As to SEO, having the post name in the URL is good, the &#8220;archive&#8221; bit is not a problem (nor a bonus).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serendipity to WordPress by rack</title>
		<link>http://tellini.info/2010/10/serendipity-to-wordpress/#comment-1498</link>
		<dc:creator>rack</dc:creator>
		<pubDate>Tue, 01 May 2012 14:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=117#comment-1498</guid>
		<description>Thanx!  One more general question if you will. :)
I as advised to put the following in SETTINGS PERMALINK CUSTOM STRING
/archives/%post_id%-%postname%.html
And &quot;categories&quot; in category base.
Everything now has /archive/ in the link.  Is that a problem with SEO, or should I leave the /ARCHIVE  out or is that what helped make it all work? Ya think? :)</description>
		<content:encoded><![CDATA[<p>Thanx!  One more general question if you will. <img src='http://tellini.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I as advised to put the following in SETTINGS PERMALINK CUSTOM STRING</p>
<p>/archives/%post_id%-%postname%.html</p>
<p>And &#8220;categories&#8221; in category base.</p>
<p>Everything now has /archive/ in the link.  Is that a problem with SEO, or should I leave the /ARCHIVE  out or is that what helped make it all work? Ya think? <img src='http://tellini.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serendipity to WordPress by Simone</title>
		<link>http://tellini.info/2010/10/serendipity-to-wordpress/#comment-1497</link>
		<dc:creator>Simone</dc:creator>
		<pubDate>Tue, 01 May 2012 09:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://tellini.info/?p=117#comment-1497</guid>
		<description>you can skip them entirely</description>
		<content:encoded><![CDATA[<p>you can skip them entirely</p>
]]></content:encoded>
	</item>
</channel>
</rss>

