<?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>Donet Blog</title>
	<atom:link href="http://blog.donet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.donet.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 13 Nov 2009 01:00:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://blog.donet.com</link>
  <url>http://www.donet.com/favicon.ico</url>
  <title>Donet Blog</title>
</image>
		<item>
		<title>Scheduled Maintenance Notification – November 14, 2009</title>
		<link>http://blog.donet.com/2009/11/12/scheduled-maintenance-notification-%e2%80%93-november-14-2009/</link>
		<comments>http://blog.donet.com/2009/11/12/scheduled-maintenance-notification-%e2%80%93-november-14-2009/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 00:58:06 +0000</pubDate>
		<dc:creator>alek</dc:creator>
				<category><![CDATA[Maintenance]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1247</guid>
		<description><![CDATA[Donet system administrators will be performing scheduled maintenance starting at 7:00 AM EST on Saturday (11/14/2009) with an anticipated completion time of 11:00 AM EST on Saturday (11/14/2009)
Our Windows and Unix System Administrators will be applying vendor released system updates and performing other maintenance related tasks on many of our shared and managed servers.  [...]]]></description>
			<content:encoded><![CDATA[<p>Donet system administrators will be performing scheduled maintenance starting at 7:00 AM EST on Saturday (11/14/2009) with an anticipated completion time of 11:00 AM EST on Saturday (11/14/2009)</p>
<p>Our Windows and Unix System Administrators will be applying vendor released system updates and performing other maintenance related tasks on many of our shared and managed servers.  Service interruptions are expected to be brief, and will likely go unnoticed, but some minor service interruptions may occur.</p>
<p>Donet performs regularly scheduled maintenance to ensure the security, performance and reliability of the services we provide to our customers.  We regret any inconvenience our scheduled maintenance activities may cause to our customers.  If you have any questions or concerns, please contact the Donet Technical Support Team at (937) 226-68964</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/11/12/scheduled-maintenance-notification-%e2%80%93-november-14-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange Shell Script to Output Mailbox Sizes for All Users</title>
		<link>http://blog.donet.com/2009/10/20/exchange-shell-script-to-output-mailbox-sizes-for-all-users/</link>
		<comments>http://blog.donet.com/2009/10/20/exchange-shell-script-to-output-mailbox-sizes-for-all-users/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 14:57:15 +0000</pubDate>
		<dc:creator>Eric Wright</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1239</guid>
		<description><![CDATA[The following script outputs all mailbox names and their size in MB to a flat file (c:\sizes.txt). You can copy and paste this script into exchange management shell to output all of the sizes of your mailboxes to a text file for your review. The script also sums up all of the mailbox sizes and [...]]]></description>
			<content:encoded><![CDATA[<p>The following script outputs all mailbox names and their size in MB to a flat file (c:\sizes.txt). You can copy and paste this script into exchange management shell to output all of the sizes of your mailboxes to a text file for your review. The script also sums up all of the mailbox sizes and outputs an average.  </p>
<p>#&#8212;&#8212;&#8211;begin script&#8212;&#8212;&#8211;<br />
del C:\sizes.txt<br />
$totalsize=0<br />
$totalusers=0<br />
$databases = get-mailboxdatabase<br />
foreach ($database in $databases)<br />
{<br />
$mailboxes = get-mailbox -database $database<br />
foreach ($mailbox in $mailboxes)<br />
 {<br />
 $user = get-mailboxstatistics $mailbox.name<br />
 $user = [string]$user.totalitemsize<br />
 $user = $user.Replace(&#8221;B&#8221;,&#8221;")<br />
 $user = [int]$user<br />
 $totalsize = $totalsize + $user<br />
 $totalusers = $totalusers + 1<br />
 $user = $user / 1024<br />
 $user = $user / 1024<br />
 $mailbox.name | out-file c:\sizes.txt -append | out-null<br />
 $user = [math]::round($user, 2)<br />
 $user = [string]$user<br />
 $user = $user + &#8221; MB&#8221;<br />
 $user | out-file c:\sizes.txt -append | out-null<br />
 }<br />
}</p>
<p>$totalsize = $totalsize / 1024<br />
$totalsize = $totalsize / 1024<br />
$totalsize = [math]::round($totalsize, 2)<br />
$newline = &#8220;`n&#8221; | out-file c:\sizes.txt -append | out-null<br />
$totalmailboxsize = &#8220;Total size of all mailboxes: $totalsize MB&#8221;<br />
$totalmailboxsize | out-file c:\sizes.txt -append | out-null<br />
$totalnumbermailboxes = &#8220;Total number of mailboxes is: $totalusers&#8221;<br />
$totalnumbermailboxes | out-file c:\sizes.txt -append | out-null<br />
$average = $totalsize / $totalusers<br />
$average = [math]::round($average, 2)<br />
$averagesize = &#8220;The average is: $average MB&#8221;<br />
$averagesize | out-file c:\sizes.txt -append | out-null</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;End Script&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/10/20/exchange-shell-script-to-output-mailbox-sizes-for-all-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scheduled Maintenance Notification – October 17, 2009</title>
		<link>http://blog.donet.com/2009/10/15/scheduled-maintenance-notification-%e2%80%93-october-17-2009/</link>
		<comments>http://blog.donet.com/2009/10/15/scheduled-maintenance-notification-%e2%80%93-october-17-2009/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 03:52:57 +0000</pubDate>
		<dc:creator>Eric Westfall</dc:creator>
				<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Scheduled Maintenance]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1235</guid>
		<description><![CDATA[Donet system administrators will be performing scheduled maintenance starting at 7:00 AM EST on Saturday (10/17/2009) with an anticipated completion time of 11:00 AM EST on Saturday (10/17/2009)
Our Windows and Unix System Administrators will be applying vendor released system updates and performing other maintenance related tasks on many of our shared and managed servers.  Service interruptions [...]]]></description>
			<content:encoded><![CDATA[<p>Donet system administrators will be performing scheduled maintenance starting at 7:00 AM EST on Saturday (10/17/2009) with an anticipated completion time of 11:00 AM EST on Saturday (10/17/2009)</p>
<p>Our Windows and Unix System Administrators will be applying vendor released system updates and performing other maintenance related tasks on many of our shared and managed servers.  Service interruptions are expected to be brief, and will likely go unnoticed, but some minor service interruptions may occur.</p>
<p>Donet performs regularly scheduled maintenance to ensure the security, performance and reliability of the services we provide to our customers.  We regret any inconvenience our scheduled maintenance activities may cause to our customers.  If you have any questions or concerns, please contact the Donet Technical Support Team at (937) 226-6896.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/10/15/scheduled-maintenance-notification-%e2%80%93-october-17-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Access to Your PC or Mac</title>
		<link>http://blog.donet.com/2009/09/24/remote-access-to-your-pc-or-mac/</link>
		<comments>http://blog.donet.com/2009/09/24/remote-access-to-your-pc-or-mac/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 15:00:43 +0000</pubDate>
		<dc:creator>Tim Sanderson</dc:creator>
				<category><![CDATA[Digital Life]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Remote Access]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[tims]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1219</guid>
		<description><![CDATA[Need to access your work or home computer remotely? Firewall not VPN capable? Using a computer without the VPN client you need? Is a firewall or filter policy blocking direct Remote Desktop and VNC use? Do you need an alternate or backup method of remote control?
In this information age, users often need to access their [...]]]></description>
			<content:encoded><![CDATA[<p>Need to access your work or home computer remotely? Firewall not VPN capable? Using a computer without the VPN client you need? Is a firewall or filter policy blocking direct Remote Desktop and VNC use? Do you need an alternate or backup method of remote control?</p>
<p>In this information age, users often need to access their home or work desktops remotely. They may need to work from home and access their work computer. They may be on vacation and need to access their home computer. How is this done? Can the same method be used for both a work and home computer?</p>
<p>Access to a remote desktop  is typically configured through:</p>
<ul>
<li> Port forwarding <a title="What is Remote Desktop?" href="http://www.wisegeek.com/what-is-remote-desktop.htm" target="_blank">Windows Remote Desktop</a> or <a title="What is VNC?" href="http://www.wisegeek.com/what-is-virtual-network-computing.htm" target="_blank">VNC</a> application ports at the firewall</li>
<li>Virtual private networking (<a title="What is a VPN?" href="http://www.wisegeek.com/what-is-a-vpn.htm" target="_blank">VPN</a>)</li>
<li>An <a title="SSH Tunneling Explained" href="http://www.ssh.com/support/documentation/online/ssh/winhelp/32/Tunneling_Explained.html" target="_blank">SSH tunnel</a></li>
</ul>
<p>All of these choices require knowledge of networking and firewall configuration and management that not everyone has or even wants to have. Also, port forwarding at the firewall, while much easier to implement than virtual private networking and SSH tunneling, is not the most secure option. Wouldn&#8217;t it be great if there were another option-one that would work through a firewall without needing to change and manage the firewall configuration, and provided strong encryption like a VPN connection?</p>
<p><a title="Free Remote Access from LogMeIn" href="https://secure.logmein.com/US/products/free/" target="_blank">LogMeIn Free</a> gives you remote control of your PC or Mac from any other computer with an Internet connection. Install LogMeIn on the computer you want to access, log into your account from another computer and click the computer you want to control. You&#8217;ll see its desktop and be able to use all the applications on your remote computer as if you were sitting in front of it.<br />
* Works with Windows PCs and Mac OS X<br />
* Two-minute set-up<br />
* 100% free</p>
<p>The Free version does not provide file transfer, remote sound, or full printing capabilities. It only provides basic remote control of your desktop from anywhere with an internet connection. If you decide you want the full features and are willing to pay the price, you might also consider <a title="Get Secure Remote Access with GoToMyPC" href="https://www.gotomypc.com/" target="_blank">GoToMyPC</a>.</p>
<p>Is LogMeIn secure? As always that depends on your definition of &#8220;secure&#8221;. The remote control session uses SSL at either 128 or 256 bit encryption. For most, that encryption level will be sufficient. The only real question you must ask yourself is, &#8220;Do I trust my data to pass through the LogMeIn gateway-over which I have no control?&#8221; For more information on LogMeIn security, read their <a title="LogMeIn Security: an In-Depth Look" href="https://secure.logmein.com/documentation/Security/wp_lmi_security.pdf" target="_blank">white paper</a>.</p>
<p><img src="http://blog.donet.com/wp-content/uploads/2009/09/logmein-architecture.png" alt="LogMeIn Architecture" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/09/24/remote-access-to-your-pc-or-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed Test Results from Inside Donet</title>
		<link>http://blog.donet.com/2009/09/23/speed-test-results-from-inside-donet/</link>
		<comments>http://blog.donet.com/2009/09/23/speed-test-results-from-inside-donet/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 12:00:10 +0000</pubDate>
		<dc:creator>david</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Neato]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[speedtest]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1208</guid>
		<description><![CDATA[Can your network do this?]]></description>
			<content:encoded><![CDATA[<p>I love working on the Internet from Donet HQ.  &#8216;Nuff said.</p>
<p>Compare your speeds at <a href="https://my.donet.com/speedtest">https://my.donet.com/speedtest</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/09/23/speed-test-results-from-inside-donet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Email Encryption and Non-repudiation</title>
		<link>http://blog.donet.com/2009/09/17/email-encryption/</link>
		<comments>http://blog.donet.com/2009/09/17/email-encryption/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 14:50:35 +0000</pubDate>
		<dc:creator>Tim Sanderson</dc:creator>
				<category><![CDATA[Digital Life]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[PGP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[tims]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1123</guid>
		<description><![CDATA[Email is usually harmless. It is often simple, everyday conversation about something interesting, a daily event, or a possible contract. However, there are still many people using the Internet that continue to send passwords, credit card information, and personal information in unencrypted public email messages. The reality of the dangers that exist within email are [...]]]></description>
			<content:encoded><![CDATA[<p>Email is usually harmless. It is often simple, everyday conversation about something interesting, a daily event, or a possible contract. However, there are still many people using the Internet that continue to send passwords, credit card information, and personal information in unencrypted public email messages. The reality of the dangers that exist within email are not apparent to them. Even with the multiple problems exposed with major e-commerce sites, too few people consider email a danger. With the potential for identity theft and fraudulent account access, email encryption should be as ubiquitous as email itself but email encryption has not yet significantly penetrated the home and small business. When was the last time you received an encrypted email? Did you even know it was possible to do so without expensive software and support?</p>
<p>Email content security is typically done through one of two methods, personal email certificates or PGP. Each has their pros and cons. Each has capabilities for single user, manual implementation or enterprise, centralized, automated control.</p>
<p><strong>The problem with Email Certificates and <a title="S/MIME defined at Wikipedia" href="http://en.wikipedia.org/wiki/S/MIME" target="_blank">S/MIME</a></strong></p>
<p>Certificate aware email applications supporting S/MIME can digitally sign an email you send to someone, allowing a recipient to prove that an email came from you and has not been modified in transit by someone else (aka non-repudiation). Another person, also with a certificate aware email program, can use your public key and send an encrypted email to you that only you can decrypt with your private key. S/MIME relies on the multipart/signed MIME type that is described in RFC 1847 for moving signed messages over the Internet. The signature is created using the <strong><em>entire</em></strong> body of the email message. It is common today for companies and free email providers to modify an email message as it passes through their email servers by adding disclaimers or ads to the end of the email. This modification invalidates the email&#8217;s digital signature making the use of email certificate digital signatures and MIME in general an ineffective non-repudiation method. (*Note, this is also a problem with PGP/MIME and OpenPGP/MIME for the same reasons). But the encryption function when using email certificates still works, right? It sure does but can you trust an encryption key you received from someone who&#8217;s identity you cannot validate? Opinions vary.</p>
<p>If you would like to learn more about how to use email certificates and get some practical personal experience using one, try a personal email certificate from <a title="thawte Personal E-mail Certificate" href="http://www.thawte.com/secure-email/personal-email-certificates/" target="_blank">Thawte.com</a>. You&#8217;ll have to convince a colleague to do it too so you can practice sending signed and encrypted email messages back and forth between each other.</p>
<p><strong><a title="PGP defined at Wikipedia" href="http://en.wikipedia.org/wiki/Pretty_Good_Privacy" target="_blank">Pretty Good Privacy</a> for Email</strong></p>
<p>There are two types of PGP use in email:</p>
<ol>
<li>Inline-PGP</li>
<li>PGP/MIME</li>
</ol>
<p>Unlike email certificates, PGP can be used in-line as well as through MIME. The in-line method is usually manual but allows support of all email clients including webmail. In other words, the email client can have no awareness of PGP at all. The in-line method allows the PGP application to copy the text that is to be secured to the clipboard, encrypt and/or sign it, and then paste the cipher text back into the email window. To the email client the PGP cipher text is nothing special; it is just a long string of text in the body of the email (but your spellchecker will not like it-DO NOT modify PGP cipher text). Other text and objects can be added before or after the in-line PGP text and they do not tamper with or invalidate the PGP security. In other words, inline-PGP allows only part of an email body to be signed and/or encrypted without affecting or being affected by any other part of the email body.</p>
<p><strong>A Few PGP Implementations to Try</strong></p>
<ul>
<li>Mozilla <a title="Mozilla Thunderbird" href="http://www.mozillamessaging.com/en-US/thunderbird/" target="_blank">Thunderbird</a> for Windows and <a title="Enigmail OpenPGP add-on for Thunderbird" href="http://enigmail.mozdev.org/" target="_blank">Enigmail</a> OpenPGP add-on</li>
</ul>
<p>Don&#8217;t use Thunderbird? Try these:</p>
<ul>
<li><a title="PGP Desktop Trial Software (Client Only)" href="http://www.pgp.com/downloads/desktoptrial/desktoptrial2.html" target="_blank">PGP Desktop Trial Software (Client Only)</a>. My personal favorite for free <em><strong>inline</strong></em>-PGP.</li>
<li><a title="GNU Privacy Guard" href="http://www.gnupg.org/" target="_blank">GnuPG</a> and <a title="EMail-Security using GnuPG for Windows" href="http://www.gpg4win.org/" target="_blank">Gpg4win</a>. Not as fancy but they work. (Gpg4win works with Microsoft Outlook)</li>
</ul>
<p><strong>Don&#8217;t Give Up</strong></p>
<p>If you&#8217;re not familiar with public key encryption, certificates, or PGP then your first attempt at using them can be challenging. It may take a period of trial and error before you have all the options and capabilities working and configured exactly how you want them. Press on, and reply to this post with any questions or comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/09/17/email-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Donet Phone Lines Down</title>
		<link>http://blog.donet.com/2009/09/15/donet-phone-lines-down/</link>
		<comments>http://blog.donet.com/2009/09/15/donet-phone-lines-down/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 14:36:00 +0000</pubDate>
		<dc:creator>david</dc:creator>
				<category><![CDATA[Maintenance]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1134</guid>
		<description><![CDATA[There is currently a major telephone outage affecting customers in the Dayton area, including Donet&#8217;s administrative offices. Our staff is working as quickly as we can to come up with a workaround to the problem.
If you need assistance before the phone lines are again operational please contact us via email at support@donet.com.
Please check back here [...]]]></description>
			<content:encoded><![CDATA[<p>There is currently a major telephone outage affecting customers in the Dayton area, including Donet&#8217;s administrative offices. Our staff is working as quickly as we can to come up with a workaround to the problem.</p>
<p>If you need assistance before the phone lines are again operational please contact us via email at <a href="mailto:support@donet.com">support@donet.com</a>.</p>
<p>Please check back here often for updates as they become available.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/09/15/donet-phone-lines-down/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scheduled Maintenance Notification – September 12, 2009</title>
		<link>http://blog.donet.com/2009/09/09/scheduled-maintenance-notification-%e2%80%93-september-12-2009/</link>
		<comments>http://blog.donet.com/2009/09/09/scheduled-maintenance-notification-%e2%80%93-september-12-2009/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 18:01:39 +0000</pubDate>
		<dc:creator>Eric Westfall</dc:creator>
				<category><![CDATA[Maintenance]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1127</guid>
		<description><![CDATA[Donet system administrators will be performing scheduled maintenance starting at 7:00 AM EST on Saturday (09/12/2009) with an anticipated completion time of 11:00 AM EST on Saturday (09/12/2009)
Our Windows and Unix System Administrators will be applying vendor released system updates and performing other maintenance related tasks on many of our shared and managed servers.  Service interruptions [...]]]></description>
			<content:encoded><![CDATA[<p>Donet system administrators will be performing scheduled maintenance starting at 7:00 AM EST on Saturday (09/12/2009) with an anticipated completion time of 11:00 AM EST on Saturday (09/12/2009)</p>
<p>Our Windows and Unix System Administrators will be applying vendor released system updates and performing other maintenance related tasks on many of our shared and managed servers.  Service interruptions are expected to be brief, and will likely go unnoticed, but some minor service interruptions may occur.</p>
<p>Donet performs regularly scheduled maintenance to ensure the security, performance and reliability of the services we provide to our customers.  We regret any inconvenience our scheduled maintenance activities may cause to our customers.  If you have any questions or concerns, please contact the Donet Technical Support Team at (937) 226-6896.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/09/09/scheduled-maintenance-notification-%e2%80%93-september-12-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Desktop Security at Home</title>
		<link>http://blog.donet.com/2009/08/28/windows-desktop-security-at-home/</link>
		<comments>http://blog.donet.com/2009/08/28/windows-desktop-security-at-home/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 21:05:45 +0000</pubDate>
		<dc:creator>Tim Sanderson</dc:creator>
				<category><![CDATA[Digital Life]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Hosts file]]></category>
		<category><![CDATA[personal data]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[tims]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=1052</guid>
		<description><![CDATA[Everyone connecting to the Internet will be exposed to malware. Malware is a catch-all term for computer viruses, worms, trojan horses, most rootkits, spyware, dishonest adware, crimeware, and spam. When your computer meets malware, will it become the latest addition to a botnet, or will your personal data be stolen? Every home computer user must [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone connecting to the Internet will be exposed to malware. Malware is a catch-all term for computer viruses, worms, trojan horses, most rootkits, spyware, dishonest adware, crimeware, and spam. When your computer meets malware, will it become the latest addition to a botnet, or will your personal data be stolen? Every home computer user must take responsibility for their use of the internet and take steps to secure themselves from internet malware. Consider it being a good internet neighbor.</p>
<p>Try these basic techniques to mitigate malware exposure:</p>
<p>I. Common, well known techniques:<br />
(1) Use antiviris software, enable real-time agents, update often. Run scans frequently.<br />
(2) Use antispyware software, enable real-time agents, update often. Run scans frequently.<br />
(3) Use a firewall.<br />
(4) Take advantage of the spam settings on your web mail accounts. Never open suspicious email or attachments.<br />
(5) Apply software and operating system patches often.<br />
&#8230;ok, now that we have those out of the way&#8230;</p>
<p>II. Less common at home, but very effective techniques:<br />
(2) Use OpenDNS<br />
(3) Use a custom HOSTS file</p>
<p><strong>Using OpenDNS</strong></p>
<p>The names used by a web browser to load web pages must be translated from the friendly name you type into your browser to an IP address. A program on your computer called a DNS client sends a query to a DNS server asking what the IP address is for the particular fully qualified domain name in the URL you are trying to reach. The DNS server sends back a response with the IP address of the web server. Then your browser makes the actual HTTP request to the web server for the desired web page. You can take advantage of this  DNS client/server operation to filter out unwanted content by using the DNS servers of OpenDNS. All you need to know to implement this service on your home network is available at <a href="http://www.opendns.com/" target="_blank">www.opendns.com</a>.</p>
<p>I use this service on my own home network. I find it very effective at blocking adult content, P2P file sharing programs, and social networking sites I would rather my children not be able to access.</p>
<p>Benefits of OpenDNS:</p>
<ol>
<li>Phishing protection</li>
<li>Content blocking. Especially useful if you have children in the house.</li>
</ol>
<p><strong>Using a Custom Hosts File</strong></p>
<p>The Hosts file is a static text file containing mappings of IP addresses to host names,found locally on every computer. This file is loaded into memory (cache) at startup. Windows checks this information before it queries any DNS servers, which enables it to override addresses in the DNS Server. This prevents access to the sites listed in the HOSTS file by redirecting any connection attempts back to the local (your) machine. Since the local machine is not the web server for the particular site, the content is not available. Simple, isn&#8217;t it? Another feature of the HOSTS file is its ability to block other applications from connecting to the Internet, providing the entry exists. You can use a HOSTS file to block ads, banners, 3rd party Cookies, 3rd party page counters, web bugs, and even most hijackers. This is accomplished by blocking the connections that supply them. For more information about this technique and how to implement it, visit <a title="Blocking Unwanted Parasites with a Hosts File" href="http://www.mvps.org/winhelp2002/hosts.htm" target="_blank">www.mvps.org</a>.</p>
<p>Benefits of a Custom Hosts File:</p>
<ol>
<li>Speed the loading of web pages by not having to wait for ads, annoying banners, hit counters, etc. to load.</li>
<li>Protect your privacy and security by blocking sites that may track your viewing habits, also known as  &#8220;click-thru tracking&#8221; or <a title="Definition of Data Miner" href="http://www.webopedia.com/TERM/D/data_miner.html" target="_blank">Data Miners</a>.</li>
</ol>
<p>Do you have any simple but effective techniques you use to protect your home network? Reply to this post and share it with everyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/08/28/windows-desktop-security-at-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows System Resource Manager &#8211; QoS For The Rest Of Us</title>
		<link>http://blog.donet.com/2009/08/14/windows-system-resource-manager-qos-for-the-rest-of-us/</link>
		<comments>http://blog.donet.com/2009/08/14/windows-system-resource-manager-qos-for-the-rest-of-us/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 22:00:24 +0000</pubDate>
		<dc:creator>Eric Westfall</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Denial of Service]]></category>
		<category><![CDATA[QoS]]></category>
		<category><![CDATA[Quality of Service]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Uptime]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://blog.donet.com/?p=988</guid>
		<description><![CDATA[What is quality of service? In the technology field, this term refers to the ability to provide differentiated priority to applications or data, or to ensure a certain level of perfomance. For example, in the networking world, quality of service may be applied to ensure that a Voice Over IP implementation is guaranteed a certain [...]]]></description>
			<content:encoded><![CDATA[<p>What is quality of service? In the technology field, this term refers to the ability to provide differentiated priority to applications or data, or to ensure a certain level of perfomance. For example, in the networking world, quality of service may be applied to ensure that a Voice Over IP implementation is guaranteed a certain data rate to prevent poor call quality or packet loss.</p>
<p>Many technology professionals are familiar with the concepts of quality of service when it comes to the networking world; concepts such as rate limiting and differentiated services are common techniques used in the networking world to ensure a consistent and reliable experience. But did you know that those of us in the systems administration world also have options available to us to provide the same quality and consistency in our user services? Let&#8217;s take a look at one method we can use to accomplish QoS in Windows, the Windows System Resource Manager.</p>
<p><strong>What is Windows System Resource Manager?</strong><br />
WSRM is a resource reservation control mechanism built into Windows Server 2008 and Windows Server 2003 R2 that enables the allocation of system resources amongst different applications based on defined priorities. In simpler terms, WSRM allows administrators to define the amount of processor and memory a particular application or process is allowed to consume.</p>
<p><strong>How does it work?</strong><br />
So how does WSRM work? Well things can get pretty tricky when considering all the technical options, suffice it to say that WSRM in its most basic form uses two distinct configuration areas to accomplish its magic:</p>
<p><em>Process Matching Criteria</em><br />
A process matching criteria allows you to define rules that identify an application or process for later assignment to a resource allocation policy. You can define an identification rule for any type of object such as an application, process, registered service, or an IIS application pool. When defining a rule, you can enter multiple binaries or even a combination of all the types of objects described above.</p>
<p><em>Resource Allocation Policies</em><br />
A resource allocation policy does exactly what it sounds like, defines the allocation of system resources. A resource allocation policy can define limits for two primary resource areas: processor percentage and committed/working set memory. When defining a resource allocation policy, you will choose the process matching criteria that the policy applies to, and define the resource limits and the action to be taken when limits are exceeded.</p>
<p><strong>So why use Windows System Resource Manager?</strong><br />
It&#8217;s a good idea to implement a QoS mechanism for many reasons, but let&#8217;s take a look a just a few examples where WSRM shines.</p>
<p><em>Shared Terminal Server</em><br />
A major area of struggle for administrators responsible for one or more terminal servers is that sometimes you may have one or two particularly resource hungry users that consume 90% of the systems resources, making the experience for other users terrible. A great way to solve this problem is to define a resource allocation policy that implements the &#8216;equal per user&#8217; condition to ensure that each user receives an equal share of processor time.</p>
<p><em>Securing Against Denial of Service</em><br />
Certain types of vulnerabilities and exploits affect application or service performance, these are often referred to as Denial of Service Attacks. In many Denial of Service (DoS) attacks, the attacker or malware rapidly replicates pieces of code or application requests until they overload the systems processor and/or memory resources. With WSRM, you can define a resource allocation policy that protects against a DoS attack by limiting the system resources available. For example, you could define a resource allocation policy that prevents a single web application from taking down an entire web server by limiting the amount of processor and working set memory available to the web application pool.</p>
<p><em>System Profiling</em><br />
WSRM contains accounting features which allow you to profile a server and learn more about how applications and processes are consuming system resources before applying resource constraints on the system. This is also a great way to supplement performance counters in order to provide a very comprehensive view of how a system is performing.</p>
<p><strong>Closing Thoughts</strong><br />
This article only discussed a very small subset of the capabilities of WSRM and the scenarios where it is useful, but hopefully it inspires you as a systems administrator to look at WSRM deeper and start thinking of ways QoS could be applied to your environment to ensure a secure, reliable and consistent experience for your users.</p>
<p>For more information about Windows System Resource Manager, check out the <a href="http://technet.microsoft.com/en-us/library/cc755056.aspx">Microsoft TechNet Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donet.com/2009/08/14/windows-system-resource-manager-qos-for-the-rest-of-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
