<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Server Monkey</title>
	<atom:link href="http://server-monkey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://server-monkey.com</link>
	<description></description>
	<lastBuildDate>Sat, 22 Jan 2011 18:59:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Server 2003 &amp; 2008 &#8211; DHCP Mac Address Filtering</title>
		<link>http://server-monkey.com/2011/01/22/server-2003-2008-dhcp-mac-address-filtering/</link>
		<comments>http://server-monkey.com/2011/01/22/server-2003-2008-dhcp-mac-address-filtering/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 18:58:18 +0000</pubDate>
		<dc:creator>Quinntin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=146</guid>
		<description><![CDATA[Hello everyone! One thing I wanted to post about today was mac address filtering using DHCP on Windows Server 2003. The Microsoft DHCP team has a utility just for this called the Mac Filter Callout. It is essentially a DLL file, a .txt file and some registry settings that allow you to administer the DHCP filtering [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone! One thing I wanted to post about today was mac address filtering using DHCP on Windows Server 2003. The Microsoft DHCP team has a utility just for this called the Mac Filter Callout. It is essentially a DLL file, a .txt file and some registry settings that allow you to administer the DHCP filtering on your server. While MAC addresses can be spoofed &#8211; I think this is a good first step or even a good step depending on your environment (personally I am a fan of RADIUS authentication).</p>
<p>The tool is downloadable here <a href="http://blogs.technet.com/cfs-file.ashx/__key/CommunityServer-Components-PostAttachments/00-02-09-83-36/MacFilterCalloutInstaller.zip">http://blogs.technet.com/cfs-file.ashx/__key/CommunityServer-Components-PostAttachments/00-02-09-83-36/MacFilterCalloutInstaller.zip</a> It will install several files in the following locations MacFilterCallout.dll and SetupDHCPMacFilter.rtf to %SystemRoot\%system32 on a 32bit system and %SystemRoot%\SysWOW64 on a 64bit system.</p>
<p>Make the following registry changes:</p>
<p>HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\DHCPServer\Parameters</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="175">Key Name</td>
<td width="120">Key Type</td>
<td width="324">Description</td>
</tr>
<tr>
<td width="175">CalloutDlls</td>
<td width="120">REG_MULTI_SZ</td>
<td width="324">The location of the MacFilterCallout.dll</td>
</tr>
<tr>
<td width="175">CalloutEnabled</td>
<td width="120">DWORD</td>
<td width="324">0 = Disable MacFilterCallout<br />
1 = Enable MacFilterCallout</td>
</tr>
<tr>
<td width="175">CalloutErrorLogFile</td>
<td width="120">REG_MULTI_SZ</td>
<td width="324">Log path. If this registry key is not specified, callout dll will output errors %WINDIR%\System32\Log.txt</td>
</tr>
<tr>
<td width="175">CalloutInfoLogFile</td>
<td width="120">REG_MULTI_SZ</td>
<td width="324">Info log path. If this key is not present, no information messages will be logged.</td>
</tr>
<tr>
<td width="175">CalloutMACAddressListFile</td>
<td width="120">REG_MULTI_SZ</td>
<td width="324">This is the name and location of the MAC filtering list you&#8217;re going to be creating next.</td>
</tr>
</tbody>
</table>
<p> </p>
<p>Mac Address List format:</p>
<p>#MACList.txt</p>
<p>MAC_ACTION = {ALLOW / DENY}</p>
<p>#List of MAC Addresses:</p>
<p>000a0c0d1254     #lab-server1</p>
<p>000d0c4a6723     #lab-server2</p>
<ul>
<li>File supports comments. Comments can be entered following a ‘#’ sign. Any text followed by ‘#’ till the end of line is treated as a comment.</li>
<li>First line in the file (excluding comments) should specify the action. Action can be either ALLOW or DENY
<ul>
<li>When action is specified as ALLOW, all requests from MAC address present in this list will be served by DHCP servers. All requests originating from MAC address not present in this list will be ignored.</li>
<li>When action is specified as DENY, all request from MAC address present in the list will be ignored by DHCP servers. All requests from MAC addresses not present in this list will be severed by DHCP server.</li>
<li>Only one action out of ALLOW or DENY can be specified in MAC Address List File</li>
</ul>
</li>
<li>MAC address should be specified in format XXXXXXXXXXXX (where X can be hex digit 0 – F).There should not any delimiter such as -, : in MAC address. Each MAC address should be specified in separate line.</li>
<li>If there is any error in MAC Address List File, it will be logged into CalloutErrorLogFile or default error log file. Following is expected behavior of dll in cases of errors
<ul>
<li>If the action is not specified correctly, then DHCP server will function as if there is no callout dll i.e. none of the requests will be ignored.</li>
<li>If one or more MAC addresses are not specified correctly, then in this case those MAC address entries will be ignored. Error for the same will be logged in error log file.</li>
</ul>
</li>
</ul>
<p>Once you are ready to start using the Mac Address filtering and you have your registry changes and Mac Address List filled out the way you like go ahead and perform the following:</p>
<p>Stop the DHCP Servive</p>
<p>Start the DHCP service. When DHCP server is started, event 1033 will be logged if Callout DLL is loaded correctly by the DHCP server.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2011/01/22/server-2003-2008-dhcp-mac-address-filtering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello!</title>
		<link>http://server-monkey.com/2010/12/26/hello/</link>
		<comments>http://server-monkey.com/2010/12/26/hello/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 05:03:31 +0000</pubDate>
		<dc:creator>Quinntin</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=144</guid>
		<description><![CDATA[Hello everyone, just signed up as a blogger/writer here. I hope to bring some new content to the site and some valuable info for everyone.]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, just signed up as a blogger/writer here. I hope to bring some new content to the site and some valuable info for everyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2010/12/26/hello/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verify Email Password With Telnet</title>
		<link>http://server-monkey.com/2009/08/29/verify-email-password-with-telnet/</link>
		<comments>http://server-monkey.com/2009/08/29/verify-email-password-with-telnet/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 05:45:16 +0000</pubDate>
		<dc:creator>Mark Muyskens</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=115</guid>
		<description><![CDATA[The quickest way to verify an email password is by using telnet. The few steps below will show you how to do so; telnet server-monkey.com 110 +OK Hello there. USER tut@server-monkey.com +OK Password required. PASS testpassword +OK logged in. quit +OK Bye-bye. Connection closed by foreign host.]]></description>
			<content:encoded><![CDATA[<p>The quickest way to verify an email password is by using telnet. The few steps below will show you how to do so;</p>
<p><strong>telnet server-monkey.com 110</strong></p>
<p>+OK Hello there.<br />
USER tut@server-monkey.com<br />
+OK Password required.<br />
PASS testpassword<br />
+OK logged in.<br />
quit<br />
+OK Bye-bye.<br />
Connection closed by foreign host.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/29/verify-email-password-with-telnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install IonCube Loader on WHM/Cpanel</title>
		<link>http://server-monkey.com/2009/08/29/how-to-install-ioncube-loader-on-whmcpanel/</link>
		<comments>http://server-monkey.com/2009/08/29/how-to-install-ioncube-loader-on-whmcpanel/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 05:37:08 +0000</pubDate>
		<dc:creator>Mark Muyskens</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=111</guid>
		<description><![CDATA[Download It; wget http://downloads.ioncube.com/loader_download /ioncube_loaders_lin_x86.tar.gz tar zfx ioncube_loaders_lin_x86.tar.gz mv ioncube /usr/local Find PHP.ini php -i &#124; grep php.ini Edit your php.ini pico /usr/local/lib/php.ini or nano /usr/local/lib/php.ini Add Extension to PHP.ini zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.2.so Restart Apache service httpd restart Check php -v PHP 5.2.10 (cli) (built: Aug 10 2009 05:47:14) Copyright (c) 1997-2009 The PHP Group Zend Engine [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Download It;<br />
</strong></p>
<p>wget http://downloads.ioncube.com/loader_download /ioncube_loaders_lin_x86.tar.gz<br />
tar zfx ioncube_loaders_lin_x86.tar.gz<br />
mv ioncube /usr/local</p>
<p><strong>Find PHP.ini</strong><br />
php -i | grep php.ini</p>
<p><strong>Edit your php.ini</strong><br />
pico /usr/local/lib/php.ini or nano /usr/local/lib/php.ini</p>
<p><strong>Add Extension to PHP.ini</strong><br />
zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.2.so</p>
<p><strong>Restart Apache</strong><br />
service httpd restart</p>
<p><strong>Check</strong><br />
php -v<br />
PHP 5.2.10 (cli) (built: Aug 10 2009 05:47:14)<br />
Copyright (c) 1997-2009 The PHP Group<br />
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies<br />
with the ionCube PHP Loader v3.1.34, Copyright (c) 2002-2009, by ionCube Ltd.<br />
with Suhosin v0.9.27, Copyright (c) 2007, by SektionEins GmbH</p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/29/how-to-install-ioncube-loader-on-whmcpanel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Back The F:\ Up!</title>
		<link>http://server-monkey.com/2009/08/25/back-the-f-up/</link>
		<comments>http://server-monkey.com/2009/08/25/back-the-f-up/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 03:48:18 +0000</pubDate>
		<dc:creator>Mark Muyskens</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=109</guid>
		<description><![CDATA[Remember kids, always be on the safe and back the f:\ up! This random post brought to you by Mozy; for an ultimate kick ass backup solution visit Mozy.com today! P.S. Enter &#8220;mark@server-monkey.com&#8221; as your referrer and get additional diskspace TOTALLY FREE!]]></description>
			<content:encoded><![CDATA[<p>Remember kids, always be on the safe and back the f:\ up!</p>
<p><img src="http://i31.tinypic.com/b3ubs0.jpg" alt="" /></p>
<p>This random post brought to you by Mozy; for an ultimate kick ass backup solution visit Mozy.com today!</p>
<p>P.S. Enter &#8220;mark@server-monkey.com&#8221; as your referrer and get additional diskspace TOTALLY FREE!</p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/25/back-the-f-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exim Cheatsheet</title>
		<link>http://server-monkey.com/2009/08/16/exim-cheatsheet/</link>
		<comments>http://server-monkey.com/2009/08/16/exim-cheatsheet/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 05:20:37 +0000</pubDate>
		<dc:creator>Mark Muyskens</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=83</guid>
		<description><![CDATA[While surfing the web, I discovered this great cheat sheet for troubleshoot mail issues in cPanel/DirectAdmin or any exim mail server. You can check it out at; http://bradthemad.org/tech/notes/exim_cheatsheet.php]]></description>
			<content:encoded><![CDATA[<p>While surfing the web, I discovered this great cheat sheet for troubleshoot mail issues in cPanel/DirectAdmin or any exim mail server.</p>
<p>You can check it out at;<br />
<a href="http://bradthemad.org/tech/notes/exim_cheatsheet.php">http://bradthemad.org/tech/notes/exim_cheatsheet.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/16/exim-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chattr, a more indepth look</title>
		<link>http://server-monkey.com/2009/08/16/chattr-a-more-indepth-look/</link>
		<comments>http://server-monkey.com/2009/08/16/chattr-a-more-indepth-look/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 20:21:53 +0000</pubDate>
		<dc:creator>Thor Erik</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=78</guid>
		<description><![CDATA[Chatter is a utility you&#8217;d find on most Linux systems, it&#8217;s sole purpose is to change file attributes. when you use Chattr you&#8217;ll probably use it in symbolic mode, this means you will be using +, &#8211; and =(plus, minus and equals) plus either of the attributes: A, S, a, c, D, d, I, i, [...]]]></description>
			<content:encoded><![CDATA[<p>Chatter is a utility you&#8217;d find on most Linux systems, it&#8217;s sole purpose is to change file attributes.</p>
<p>when you use Chattr you&#8217;ll probably use it in symbolic mode, this means you will be using +, &#8211; and =(plus, minus and equals) plus either of the attributes: A, S, a, c, D, d, I, i, j, s, T, t, u.</p>
<p><strong>Symbols</strong></p>
<p>+ adds a attribute</p>
<p>- removes a attribute</p>
<p>= causes the attribute to be the only</p>
<p><strong>Attributes</strong></p>
<p>a (small A) is append only, this only allows someone to add to a file.</p>
<p>c (small C) is compressed</p>
<p>d (small D) is no dump</p>
<p>i (small I) is immutable, meaning no delete for anyone, not even root</p>
<p>j (small J) is journaling</p>
<p>s (small S) is secure deletion, incase you want to remove a file completely with no way of recovery(except IBAS)</p>
<p>t (small T) is no tailing</p>
<p>u (small U) is undeleteable</p>
<p>A (capital A) is no atime updates</p>
<p>D (capital D) is synchronousdirectory updates</p>
<p>S (capital S) is synchronous updates</p>
<p>T (capital T) is top of directory hierarchy, useful for important files</p>
<p><strong>Options</strong></p>
<p>As with most commands you got options as well</p>
<p>chattr got most of the common ones:</p>
<p>-R, recursive</p>
<p>-V, verbose</p>
<p>-f, suppress most errors</p>
<p>-v, version</p>
<p>options go first of course</p>
<p><strong>Common use</strong></p>
<p>most of the time you won&#8217;t use all of these options, but some you will run into quite often would be</p>
<p>chattr +i/chattr =i to protect files from accidental deletion</p>
<p>chattr +T to make a important file top of the file listings</p>
<p>chattr +d to prevent dumping of a file</p>
<p>and in some rare cases<br />
chattr +ad to  only allowing appending and prevent backup using</p>
<pre>dump</pre>
<p>, this could be useful for log files etc. that you only want to be appended to and not backed up</p>
<h5><em>Source: man chattr</em></h5>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/16/chattr-a-more-indepth-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.htaccess to redirect domain to subfolder</title>
		<link>http://server-monkey.com/2009/08/15/htaccess-to-redirect-domain-to-subfolder/</link>
		<comments>http://server-monkey.com/2009/08/15/htaccess-to-redirect-domain-to-subfolder/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 22:47:06 +0000</pubDate>
		<dc:creator>Mark Muyskens</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=74</guid>
		<description><![CDATA[Here&#8217;s a quick htaccess edit that will redirect your domain to a subfolder; RewriteEngine On Options +FollowSymlinks RewriteBase / RewriteCond %{HTTP_HOST} www.domainname [OR] RewriteCond %{HTTP_HOST} domainname RewriteCond %{REQUEST_URI} !subfolder/ RewriteRule ^(.*)$ subfolder/$1 [L]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick htaccess edit that will redirect your domain to a subfolder;</p>
<blockquote><p><strong>RewriteEngine On</strong></p>
<p><strong>Options +FollowSymlinks</strong></p>
<p><strong>RewriteBase /</strong></p>
<p><strong>RewriteCond %{HTTP_HOST} www.domainname [OR]</strong></p>
<p><strong>RewriteCond %{HTTP_HOST} domainname</strong></p>
<p><strong>RewriteCond %{REQUEST_URI} !subfolder/</strong></p>
<p><strong>RewriteRule ^(.*)$ subfolder/$1 [L]</strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/15/htaccess-to-redirect-domain-to-subfolder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep your clocks in sync</title>
		<link>http://server-monkey.com/2009/08/10/keep-your-clocks-in-sync/</link>
		<comments>http://server-monkey.com/2009/08/10/keep-your-clocks-in-sync/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 10:13:32 +0000</pubDate>
		<dc:creator>Thor Erik</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[ntp]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=59</guid>
		<description><![CDATA[An issue I&#8217;ve come across a lot is that clocks don&#8217;t stay correct for a long time&#8230; Now some smart heads thought up a way to fix that, it&#8217;s called NTP, Network Time Protocol. Setting it up is easy: on RHEL/Fedora/CentOS: centos ~ # yum install ntp on Debian and debian based distributions: debian ~ [...]]]></description>
			<content:encoded><![CDATA[<p>An issue I&#8217;ve come across a lot is that clocks don&#8217;t stay correct for a long time&#8230;</p>
<p>Now some smart heads thought up a way to fix that, it&#8217;s called NTP, Network Time Protocol.</p>
<p>Setting it up is easy:</p>
<p>on RHEL/Fedora/CentOS:</p>
<p>centos ~ # <em>yum install ntp</em></p>
<p>on Debian and debian based distributions:</p>
<p>debian ~ # <em>apt-get install ntp</em></p>
<p>(everything is root of course)</p>
<p>on debian you are done now, NTPD should be started, of course if you want to specify your own NTP server or NTP pool, you just edit /etc/ntp.conf</p>
<p>on RHEL it&#8217;s just a few more steps:</p>
<p><em>chkconfig ntpd on</em></p>
<p><em>ntpdate pool.ntp.org</em></p>
<p><em>/etc/init.d/ntpd start</em></p>
<p>and that should be it, please do know that if it&#8217;s a VPS forget about NTP, the system time is inherited from the host, unless you run it on a windows host(ex. Windows 2008 or in my debian server&#8217;s case, Windows 2008 R2 and using Hyper-V)</p>
<p>The error you get will be something like this:</p>
<p><em>ntpdate[18411]: step-systime: Operation not permitted</em></p>
<p>after trying to run <em>ntpdate pool.ntp.org</em></p>
<p>On Windows it&#8217;s all a hell lot easier(in gui that is)</p>
<p>Right click on the clock and choose Adjust time and date</p>
<p>go to the Internet time tab.</p>
<p>then click the button saying Change settings.</p>
<p>make sure the checkbox is checked, and if you prefer a different ntp server, change it from time.microsoft.com (but it&#8217;s good as well, NTP takes latency into account when setting clock)</p>
<p>Windows does not support ntp pools, so please define a proper NTP server.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/10/keep-your-clocks-in-sync/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mozy</title>
		<link>http://server-monkey.com/2009/08/09/mozy/</link>
		<comments>http://server-monkey.com/2009/08/09/mozy/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 22:35:12 +0000</pubDate>
		<dc:creator>Mark Muyskens</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://server-monkey.com/?p=51</guid>
		<description><![CDATA[Lets face it. Most of us suck when it comes to backing up our systems, but what if there was a quick, simple, painless way of backing up you system without the headaches of extra work. Well, now there is! Mozy is the ultimate backup solution for quick and painless backups. Simply signup for an [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://i30.tinypic.com/2cqjjgz.png" alt="" /></p>
<p>Lets face it. Most of us suck when it comes to backing up our systems, but what if there was a quick, simple, painless way of backing up you system without the headaches of extra work.</p>
<p>Well, now there is! Mozy is the ultimate backup solution for quick and painless backups. Simply signup for an account, download the software, and select your folders, ITS THAT SIMPLE! Mozy provides unlimited backups for the low price of $4.95 per month. Still not sure if you want to use this service? Mozy offers 2GB of storage COMPLETELY FREE. No credit card needed, no setup fees,  no expiration date, BUT ABSOLUTELY FREE! You&#8217;ll be up and running within minutes!</p>
<p>What are you waiting for! Give it a try today!</p>
<p>Signup now at <a href="https://mozy.com/?ref=JARRZH">https://mozy.com/?ref=JARRZH</a></p>
<p>Use the above referral line or enter &#8220;<span>mark@server-monkey.com&#8221; as your referral and we both get extra storage space! Signup now!</p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://server-monkey.com/2009/08/09/mozy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

