<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Linux HOW To's !!!</title>
	<atom:link href="http://linuxhow2.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://linuxhow2.net</link>
	<description>Tips  n  Tricks for Linux Administration !!!</description>
	<pubDate>Sat, 27 Mar 2010 19:12:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Apache Server Status &#038; Error Codes !!!</title>
		<link>http://linuxhow2.net/?p=62</link>
		<comments>http://linuxhow2.net/?p=62#comments</comments>
		<pubDate>Sat, 27 Mar 2010 18:59:20 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Linux Misc !!]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=62</guid>
		<description><![CDATA[Apache Server Status &#38; Error Codes !!!

Successful Client Requests
200 OK
201 Created
202 Accepted
203 Non-Authorative Information
204 No Content
205 Reset Content
206 Partial Content

Client Request Redirected
300 Multiple Choices
301 Moved Permanently
302 Moved Temporarily
303 See Other
304 Not Modified
305 Use Proxy
Client Request Errors
400 Bad Request
401 Authorization Required
402 Payment Required (not used yet)
403 Forbidden
404 Not Found
405 Method Not Allowed
406 Not Acceptable (encoding)
407 Proxy [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=62</wfw:commentRss>
		</item>
		<item>
		<title>How to check and close your open DNS servers ?</title>
		<link>http://linuxhow2.net/?p=40</link>
		<comments>http://linuxhow2.net/?p=40#comments</comments>
		<pubDate>Thu, 11 Feb 2010 07:36:08 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Linux Misc !!]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=40</guid>
		<description><![CDATA[
Open DNS servers
1) Go to http://www.dnsreport.com/tools/dnsreport.ch?domain=mydomain.com
2) Check for BIG RED “FAIL” (7th box, going down from up) saying “Open DNS servers”.
If you see the message, you can correct it the following way:
1) login to your server as root
2) nano -w /etc/named.conf (if you are running Bind)
3) Look for  // query-source address * port 53; [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=40</wfw:commentRss>
		</item>
		<item>
		<title>Install mod_evasive !!!</title>
		<link>http://linuxhow2.net/?p=38</link>
		<comments>http://linuxhow2.net/?p=38#comments</comments>
		<pubDate>Thu, 11 Feb 2010 07:33:54 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Install and Configure]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=38</guid>
		<description><![CDATA[Mod_Evasive will help to stop basic attacks on a server (HTTP, DDoS attack and brute force attack). Detection is performed by creating an internal dynamic hash table of IP Addresses and URIs, and denying any single IP address from any of the following:
-Requesting the same page more than a few times per second
-Making more than [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=38</wfw:commentRss>
		</item>
		<item>
		<title>self signed certificate for ftpserver !!</title>
		<link>http://linuxhow2.net/?p=36</link>
		<comments>http://linuxhow2.net/?p=36#comments</comments>
		<pubDate>Thu, 11 Feb 2010 07:20:01 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Linux Misc !!]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=36</guid>
		<description><![CDATA[To create a self-signed certificate, you can use the following commands :
mkdir -p /etc/ssl/private
openssl req -x509 -nodes -newkey rsa:1024 -keyout \
/etc/ssl/private/pure-ftpd.pem \
-out /etc/ssl/private/pure-ftpd.pem
chmod 600 /etc/ssl/private/*.pem
]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=36</wfw:commentRss>
		</item>
		<item>
		<title>Optimizing host.conf</title>
		<link>http://linuxhow2.net/?p=42</link>
		<comments>http://linuxhow2.net/?p=42#comments</comments>
		<pubDate>Mon, 11 Jan 2010 07:37:27 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Linux Misc !!]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=42</guid>
		<description><![CDATA[Optimizing host.conf
#!/bin/sh
cp /etc/host.conf /etc/host.back
echo “# Lookup names via DNS first then fall back to /etc/hosts.” &#62; /etc/host.conf
echo “order bind,hosts” &#62;&#62; /etc/host.conf
echo “# We have machines with multiple IP addresses.” &#62;&#62; /etc/host.conf
echo “multi on” &#62;&#62; /etc/host.conf
echo “# Check for IP address spoofing.” &#62;&#62; /etc/host.conf
echo “nospoof on” &#62;&#62; /etc/host.conf
]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=42</wfw:commentRss>
		</item>
		<item>
		<title>How do I manually move an account to another server?</title>
		<link>http://linuxhow2.net/?p=44</link>
		<comments>http://linuxhow2.net/?p=44#comments</comments>
		<pubDate>Fri, 11 Dec 2009 09:45:57 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Linux Misc !!]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=44</guid>
		<description><![CDATA[When an account is too large to feasibly move using the web browser, I do the  following to move the account :
The setup :
Domain : domain.com
Username : dom
make a temp directory on /home (i’ll call it /home/cptemp/) where you can store  the accounts files while copying.
#mkdir /home/cptemp
Almost all space for an account is in their [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=44</wfw:commentRss>
		</item>
		<item>
		<title>secure /tmp with noexec and nosuid</title>
		<link>http://linuxhow2.net/?p=46</link>
		<comments>http://linuxhow2.net/?p=46#comments</comments>
		<pubDate>Sun, 22 Nov 2009 11:48:44 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Install and Configure]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=46</guid>
		<description><![CDATA[The /tmp partition is one the common places for script kiddies and crackers alike to place trojans or scripts. Because of that you should have the /tmp partition mounted noexec. First we need to check if your /tmp is secure.
#df -h &#124;grep tmp
If that displays nothing then go below to create a tmp partition. If [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=46</wfw:commentRss>
		</item>
		<item>
		<title>Stop PHP nobody Spammers !!!</title>
		<link>http://linuxhow2.net/?p=67</link>
		<comments>http://linuxhow2.net/?p=67#comments</comments>
		<pubDate>Tue, 20 Oct 2009 19:05:17 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=67</guid>
		<description><![CDATA[Stop PHP nobody Spammers

PHP and Apache has a history of not being able to track which users are sending out mail through the PHP mail function from the nobody user causing leaks in formmail scripts and malicious users to spam from your server without you knowing who or where.
Watching your exim_mainlog doesn&#8217;t exactly help, you [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=67</wfw:commentRss>
		</item>
		<item>
		<title>OpenVPN Setup</title>
		<link>http://linuxhow2.net/?p=29</link>
		<comments>http://linuxhow2.net/?p=29#comments</comments>
		<pubDate>Tue, 14 Jul 2009 17:19:34 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Linux Misc !!]]></category>

		<category><![CDATA[openvpn]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=29</guid>
		<description><![CDATA[Check out how OpenVPN works..
I had installed OpenVPN server on the Linux machine  and installed OpenVPN client on a windows machine. My linux machine has two network cards. One with the local IP address and another with the public IP address.
I will go through the steps to connect to the local network from outside [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=29</wfw:commentRss>
		</item>
		<item>
		<title>Mysql Tweaking !!</title>
		<link>http://linuxhow2.net/?p=25</link>
		<comments>http://linuxhow2.net/?p=25#comments</comments>
		<pubDate>Tue, 14 Jul 2009 16:31:12 +0000</pubDate>
		<dc:creator>bazzii</dc:creator>
		
		<category><![CDATA[Mysql]]></category>

		<category><![CDATA[query_cache]]></category>

		<category><![CDATA[tweaking]]></category>

		<guid isPermaLink="false">http://linuxhow2.net/?p=25</guid>
		<description><![CDATA[I thought of explaining mysql tweaking &#8230;
Login to the server and check out your my.cnf file.. To check whether your server is using the correct resourses perform the below commands and checks !!
Here it goes   !!!!   Njoy  !!!!
mysql&#62; show status like '%Open%_tables';
mysql&#62; show variables like 'table_cache';
Run the above two commands [...]]]></description>
		<wfw:commentRss>http://linuxhow2.net/?feed=rss2&amp;p=25</wfw:commentRss>
		</item>
	</channel>
</rss>
