<?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>Rowell Dionicio</title>
	<atom:link href="http://www.rowelldionicio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rowelldionicio.com</link>
	<description>Networking, System Administration and Current State of Tech</description>
	<lastBuildDate>Sun, 29 Apr 2012 05:19:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>EIGRP Notes Part I</title>
		<link>http://www.rowelldionicio.com/2012/04/eigrp-notes-part-i/</link>
		<comments>http://www.rowelldionicio.com/2012/04/eigrp-notes-part-i/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 05:19:04 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[eigrp]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=896</guid>
		<description><![CDATA[What is the general process that EIGRP follows when configured? router eigrp asn command is issued followed by one or more network net-id wildcard-mask statements. What are the rules for the above commands? 1. Neighboring routers must have the same ASN. 2. EIGRP is enabled on interfaces that match the network command. When enabled, router [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>What is the general process that EIGRP follows when configured?</strong><br />
router eigrp asn command is issued followed by one or more network net-id wildcard-mask statements.</p>
<p><strong>What are the rules for the above commands?</strong></p>
<p>1. Neighboring routers must have the same ASN.</p>
<p>2. EIGRP is enabled on interfaces that match the network command. When enabled, router does the following:</p>
<p>a. Attempts to find EIGRP neighbors by sending multicast EIGRP messages (Hello).</p>
<p>b. Advertises the connected subnet on interface to neighbors.</p>
<p>3. If no wildcard mask is configured on the network command, command will be classful network number.</p>
<p>4. If no wildcard mask is configured, on the network command, EIGRP is enabled on all router&#8217;s interfaces directly connected to configured classful number.</p>
<p>5. If wildcard mask is configured, router performs ACL logic when comparing the network-id configured in the network command with each interface&#8217;s IP using configured wildcard-mask as an ACL.</p>
<p>Example configuration:</p>
<p>router eigrp 1<br />
network 10.0.0.0 (classful)<br />
network 10.1.0.0 0.0.31.255 (wildcard ACL)</p>
<p><strong>What commands are used to verify EIGRP configuration?</strong></p>
<p>sh ip eigrp interfaces &#8211; lists working interfaces where EIGRP is enabled; omits passive interfaces.</p>
<p>sh ip protocols &#8211; lists contents of network configuration commands for each routing process and list of neighbor IP addresses.</p>
<p>sh ip eigrp neighbors &#8211; List of known neighbors; doesn&#8217;t list neighbors with mismatched paramters.</p>
<p>sh ip eigrp topology &#8211; lists all successor &amp; feasible successor routes known to the router. Doesn&#8217;t list all known topology details.</p>
<p>sh ip route &#8211; lists contents of the IP routing table.</p>
<p><strong>What are the three steps EIGRP follows to add routes to the IP routing table?</strong></p>
<p>1. Neighbor discovery: router sends Hello messages to discover neighbors and performs basic parameter checks to determine which routers should become neighbors.</p>
<p>2. Topology Exchange: Neighbors exchange full topology updates when relationship comes up, then partial updates as needed.</p>
<p>3. Choosing Routes: Each router analyzes their EIGRP topology tables to choose the lowest metric route to each subnet.</p>
<p><strong>How does EIGRP exchange topology information with neighbors?</strong></p>
<p>Through Update messages to multicast 224.0.0.10. Sent using Reliable Transport Protocol (RTP).</p>
<p><strong>How does EIGRP calculate the best route?</strong></p>
<p>metric = (( 10^7/least-bandwidth) + cumulative-delay) * 256</p>
<p>Least bandwidth is lowest bandwidth link in the route in kilobits per second.</p>
<p>Cumulative delay is the sum of all delay values in &#8220;tens of microseconds&#8221;.</p>
<p><strong>What are the features of EIGRP (summary)?</strong></p>
<p>Transport: IP, protocol 88.</p>
<p>Metric: Constrained bandwidth and cumulative delay.</p>
<p>Hello interval: Interval at which EIGRP sends Hello messages on an interface.</p>
<p>Hold timer: Timer used to determine when a neighboring router has failed.</p>
<p>Update destination address: Sent to 224.0.0.10 with retransmissions sent to neighbor&#8217;s unicast IP.</p>
<p>Full or partial updates: Full updates when neighbors are discovered; otherwise partial updates are used.</p>
<p>Authentication: Supports MD5 only.</p>
<p>VLSM/classless: EIGRP includes mask with each route allowing it to support discontiguous networks and VLSM.</p>
<p>Route tags: Allows EIGRP to tag routes as they are redistributed into EIGRP.</p>
<p>Next-hop field: Supports the advertisement of routes with a different next-hop router than the advertising router.</p>
<p>Manual route summarization: Allows route summarization at any point in the EIGRP network.</p>
<p>Automatic summarization: EIGRP supports and defaults to use automatic route summarization at classful network boundaries.</p>
<p>Multiprotocol: Supports the advertisement of IPX &amp; AppleTalk routes &amp; IPv6.</p>
<p><strong>What are the steps to learning the best loop-free routes?</strong></p>
<p>1. Establish EIGRP neighbor relationships with other routers on the same subnet.</p>
<p>2. Exchange EIGRP topology data with neighbors.</p>
<p>3. Calculate best IP route for each subnet based on known topology table and add to the IP routing table.</p>
<p><strong>What are EIGRP Hello messages for?</strong></p>
<p>To find neighbors and to confirm link between neighbors still works.</p>
<p><strong>What is the default Hello interval and Hold timer?</strong></p>
<p>5 &amp; 15, respectively.</p>
<p><strong>How would you optimize convergence between routers?</strong></p>
<p>Reduce Hello interval and Hold timer.</p>
<p><strong>How do you configure Hello interval and Hold timer?</strong></p>
<p>Per interface:</p>
<p>interface fastethernet0/1<br />
ip hello-interval eigrp asn integer-value<br />
ip hold-time eigrp asn integer-value</p>
<p><strong>Which command tells the local router what to do and which tells the neighbor what to do?</strong></p>
<p>Hello-interval: tells local router what to do<br />
hold-time: tells neighbor what to do</p>
<p><strong>What command verifies Hello interval?</strong></p>
<p>sh ip eigrp int type number detail</p>
<p><strong>How do you verify hold timer?</strong></p>
<p>Repeatedly issue sh ip eigrp neighbors</p>
<p><strong>How would you disallow neighbors on an interface?</strong></p>
<p>Configure passive interfaces</p>
<p><strong>How do you configure passive interfaces?</strong></p>
<p>Use command on router config mode: passive-interface type number</p>
<p>OR</p>
<p>passive-interface default with no passive-interface type number</p>
<p><strong>What are the two methods to prevent EIGRP neighbors?</strong></p>
<p>Passive interfaces<br />
Don&#8217;t enable EIGRP on interfaces and redistribute connected interfaces</p>
<p><strong>How do you verify passive interfaces?</strong></p>
<p>sh ip protocols</p>
<p><strong>How would you control EIGRP neighborships?</strong></p>
<p>Use authenitcation (MD5). Each message is authenticated.</p>
<p><strong>What is the process to enable EIGRP authentication?</strong></p>
<p>1. Create an authentication key chain</p>
<p>Global command: key chain name (doesn&#8217;t have to match on routers)</p>
<p>Create one or more keys: key number (doesn&#8217;t have to match on routers)</p>
<p>Define authentication key value: key-string value (must match on routers)</p>
<p>Optionally define lifetime</p>
<p>2. Enable EIGRP md5 authentication on interface for EIGRP ASN</p>
<p>ip authentication mode eigrp asn md5</p>
<p>3. Refer to correct key chain on interface</p>
<p>ip authentication key-chain eigrp asn name-of-chain</p>
<p><strong>Which keys are used for sending EIGRP messages?</strong></p>
<p>Lowest key among all currently valid keys.</p>
<p><strong>Which keys are used for receiving EIGRP messages?</strong></p>
<p>Uses all valid keys.</p>
<p>How do you verify EIGRP authentication?</p>
<p>sh ip eigrp neighbors</p>
<p>sh key chain</p>
<p>debug eigrp packet</p>
<p><strong>What should be kept in mind when troubleshooting EIGRP authentication?</strong></p>
<p>Examine the time (sh clock).</p>
<p>Key chain name and key number on two routers don&#8217;t have to match.</p>
<p>Key string on neighbors must match.</p>
<p>Check which keys are valid with sh key chain.</p>
<p>MD5 authentication and key chain must be configured on interface.</p>
<p><strong>Why would you statically configure EIGRP neighbors?</strong></p>
<p>To reduce overhead associated with EIGRP multicast messages.</p>
<p><strong>How do you configure a static EIGRP neighbor?</strong></p>
<p>Under EIGRP router subcommand: neighbor ip-address exit-interface</p>
<p><strong>What are the caveats to using EIGRP static neighbors?</strong></p>
<p>EIGRP multicast processing is disabled.</p>
<p>No dynamic neighbors are discovered on the interface which is used for static neighbor.</p>
<p>Existing dynamic neighbors will fail.</p>
<p><strong>What are neighbor requirements for EIGRP?</strong></p>
<p>Routers must be able to send IP packets to each other.</p>
<p>Interface&#8217;s primary IP&#8217;s must be on the same subnet.</p>
<p>Connected interface must not be passive.</p>
<p>Must use the same ASN.</p>
<p>Must pass EIGRP authentication.</p>
<p>K-values must match.</p>
<p><strong>How does an EIGRP router determine it&#8217;s router-id?</strong></p>
<p>1. Use the configured value (eigrp router-id a.b.c.d).</p>
<p>2. Use the highest configured up/up loopback interface IP address.</p>
<p>3. Use the highest IP address on an up/up non-loopback IP address.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/04/eigrp-notes-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book Review: MCTS Windows Server 2008 Active Directory Configuration Study Guide: Exam 70-640</title>
		<link>http://www.rowelldionicio.com/2012/04/book-review-mcts-windows-server-2008-active-directory-configuration-study-guide-exam-70-640/</link>
		<comments>http://www.rowelldionicio.com/2012/04/book-review-mcts-windows-server-2008-active-directory-configuration-study-guide-exam-70-640/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 00:24:09 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[book review]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=892</guid>
		<description><![CDATA[MCTS Windows Server 2008 Active Directory Configuration Study Guide: Exam 70-640, by William Panek, 624 pages, Published by Sybex. I had previously started out with the Microsoft Press material but found myself falling asleep after reading just a few pages. Technical material is rather dry and boring so it&#8217;s difficult to find the right books [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a title="MCTS Windows Server 2008 Active Directory Configuration Study Guide" href="http://www.amazon.com/gp/product/0470261676/ref=as_li_ss_tl?ie=UTF8&amp;tag=amaz046-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0470261676" target="_blank">MCTS Windows Server 2008 Active Directory Configuration Study Guide: Exam 70-640,</a> by William Panek, 624 pages, Published by Sybex.</p>
<p>I had previously started out with the Microsoft Press material but found myself falling asleep after reading just a few pages. Technical material is rather dry and boring so it&#8217;s difficult to find the right books to study with. After reading reviews on Amazon I picked up this book by William Panek.</p>
<p>William Panek has a number of Microsoft certifications &#8211; MCSA, MCSE &#8211; 200 &amp; 2003, MCT, MCDBA, MCTS and more.</p>
<p>What I find most valuable in this book is how simple it is to follow and learn the concepts. There are many exercises in each chapter. Steps are easy to follow with a simple VM setup. Concepts are explained clearly.</p>
<p>Each chapter begins with the objectives that they&#8217;ll be covering. I found this helpful for my own studies so I can drill in further on my weaknesses.</p>
<p>This book is a good resource for self-study of the 70-640 Microsoft exam but I wouldn&#8217;t make it your only resource. Additionally, some of the steps are different in Windows Server 2008 R2.</p>
<p>Chapters of the book:</p>
<p>Chapter 1 &#8211; Over of Active Directory<br />
Chapter 2 &#8211; Domain Name System (DNS)<br />
Chapter 3 &#8211; Planning and Installation of Active Directory<br />
Chapter 4 &#8211; Installing and Managing Trees and Forests<br />
Chapter 5 &#8211; Configuring Sites and Replication<br />
Chapter 6 &#8211; Configuring Active Directory Server Roles<br />
Chapter 7 &#8211; Administering Active Directory<br />
Chapter 8 &#8211; Configuring Group Policies<br />
Chapter 9 &#8211; Planning Security for Active Directory<br />
Chapter 10 &#8211; Active Directory Optimization and Reliability</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/04/book-review-mcts-windows-server-2008-active-directory-configuration-study-guide-exam-70-640/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Burning Out Over Lost Productivity</title>
		<link>http://www.rowelldionicio.com/2012/03/burning-out-over-lost-productivity/</link>
		<comments>http://www.rowelldionicio.com/2012/03/burning-out-over-lost-productivity/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 13:00:49 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=873</guid>
		<description><![CDATA[Endless emails, instant messages, endless meetings, long hours at work. Fatigue, emotionally drained, fat, thirsty, mentally detached. Those are just some of the words IT professionals would describe their workday and life. You wake up, get ready, drive to work, find donuts to eat, work through lunch, go home late, and go to sleep. Rinse [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright size-full wp-image-881" title="IT Burnout and Lost Productivity" src="http://www.rowelldionicio.com/wp-content/uploads/2012/03/IT-Burnout.jpg" alt="Frustration" width="320" height="212" />Endless emails, instant messages, endless meetings, long hours at work. Fatigue, emotionally drained, fat, thirsty, mentally detached.</p>
<p>Those are just some of the words IT professionals would describe their workday and life. You wake up, get ready, drive to work, find donuts to eat, work through lunch, go home late, and go to sleep. Rinse and repeat.</p>
<p>Is productivity linked to burnout? Not 100% but I bet it contributes a good portion.</p>
<p>Big offenders:</p>
<p><strong>Bringing laptop to meetings</strong>. I&#8217;ve seen others bring their laptops to meetings only to see that they aren&#8217;t even taking meeting notes. Their answering emails or surfing the interwebz.</p>
<p><strong>Checking emails too often</strong>. Outlook is always open. Once that cringing sound of new mail is heard or I see that new email icon, I drop what I&#8217;m doing. Sometimes that new email is just an all staff emailing telling everyone to buy Girl Scout cookies from their daughter.</p>
<p><strong>Disruptions at my desk</strong>. This is inevitable. Our coworkers will always come to our desk. Most of the time its because they have an issue. And most likely, you will stop what you&#8217;re doing and get up to help them.</p>
<p><strong>Multitasking</strong>. Most people say they are awesome at multitasking. I beg to differ. There are only a select few who really need dual screen monitors. The rest use the 2nd monitor as a dumping ground for everything non work related. One of the problems I&#8217;m trying to overcome is working on two or more issues at the same time. I&#8217;ve caught myself forgetting a step on the other task or completely forgetting what I&#8217;ve done.</p>
<blockquote><p>
&#8220;..When you switch away from a primary task to do something else, you&#8217;re increasing the time it takes to finish that task by an average of 25 per cent.&#8221; -<a title="The Magic of Doign One Thing At a Time" href="http://blogs.hbr.org/schwartz/2012/03/the-magic-of-doing-one-thing-a.html" target="_blank">Tony Schwartz </a></p></blockquote>
<p><em>Just focus on one task, be awesome at it, and complete it on time.</em></p>
<p><strong>Eliminate Burnout, Increase Productivity, Be Happier</strong></p>
<p>I&#8217;m going to outline the steps I will personally take to better myself. These tips should help but everyone is different.</p>
<p><strong>Eat healthier.</strong> Stop drinking soda, eating Cheetos and eating out. You are what you eat.</p>
<p><strong>Exercise.</strong> This is tough for me to fit into my schedule. The simplest way to get some form of exercise is to take a quick break from your desk, go outside and walk. Even if it&#8217;s just for 10 minutes. Fresh air will clear your brain.</p>
<p><strong>Take breaks.</strong> Ties into the tip above. How often are you staring into a computer screen 8+ hours a day straight.</p>
<p><strong>Get more sleep.</strong> I don&#8217;t know what it is but my body likes to fight off sleep. I wake up at 6am and wont go to bed until 11pm or later. Most of the time I&#8217;m catching up on RSS feeds, studying for a cert or doing more work. The goal for myself is to schedule these tasks and not do them every night.</p>
<p><strong>Stop multitasking.</strong> You&#8217;re probably laughing at me. I&#8217;ve gotten rid of my dual screen monitors. My main monitor is a wide 24&#8243;. My goal is to increase the quality of my work by focusing on one thing at a time.</p>
<blockquote><p>
&#8220;Multitasking increases the chances of mistakes,&#8221; according to <a title="Slow Down, Brave Multitasker, and Don’t Read This in Traffic " href="http://www.nytimes.com/2007/03/25/business/25multi.html?_r=1&amp;pagewanted=all" target="_blank">David E. Meyer</a></p></blockquote>
<p><strong>Don&#8217;t eat lunch at my desk.</strong> It&#8217;s not really a lunch. It&#8217;s just eating while working.</p>
<p><strong>Less social media.</strong> There are too many social networks with less than useful chatter. Create lists, add those who are influential and engage in valuable interactions.</p>
<p>The end result is feeling better, mentally and physically, and getting home to my wife and son for precious family time. I&#8217;m a work in progress and like the technology I work with, I need to optimize to get the best performance.</p>
<p class="alert">What are your tips for better productivity and avoiding burnout?</p>
<p><em>photo credit: <a href="http://www.flickr.com/photos/zachklein/54389823/">Zach Klein</a> via <a href="http://photopin.com">photopin</a> <a href="http://creativecommons.org/licenses/by/2.0/">cc</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/03/burning-out-over-lost-productivity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>To Teh Cloud..</title>
		<link>http://www.rowelldionicio.com/2012/03/to-teh-cloud/</link>
		<comments>http://www.rowelldionicio.com/2012/03/to-teh-cloud/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 13:00:41 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[cloud]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=850</guid>
		<description><![CDATA[So says the guy in the airport in a Microsoft commercial. Yes boys and girls I am officially backing up to the cloud. I&#8217;m referring to my personal Macbook Pro. Previous attempts to maintain a reliable backup have resulted in failure. The idea of using Time Machine, at the time, was attractive. Unfortunately, I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So says the guy in the airport in a Microsoft commercial. Yes boys and girls I am officially backing up to the cloud. I&#8217;m referring to my personal Macbook Pro.</p>
<p>Previous attempts to maintain a reliable backup have resulted in failure. The idea of using Time Machine, at the time, was attractive. Unfortunately, I didn&#8217;t want to bring an external hard drive with my <acronym title="Macbook Pro">MBP</acronym>. It was a burden and extra weight. The biggest drawback was having your backup at the same location as your laptop: at home. So God forbid a fire broke out or a burglar steals your data.</p>
<p>A local backup kept me up at night.</p>
<p>My solution: <a title="Backblaze Online Backup" href="http://www.rowelldionicio.com/backblaze" target="_blank">Backblaze</a></p>
<p><em>A secure, offsite and unlimited storage cloud backup. </em></p>
<p>The price is right for this online solution. For $50/year you get a plenty of features. $50 is nothing compared to the priceless photos of my family, financial documents, and years worth of work.</p>
<p>Follow me as I run through my favorite features:</p>
<h4>Backup online</h4>
<p style="text-align: center;"><a href="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backuponline.jpg" rel="lightbox[850]" title="Backblaze Backup Online"><img class="size-medium wp-image-853 aligncenter" title="Backblaze Backup Online" src="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backuponline-300x123.jpg" alt="Backblaze how it works" width="300" height="123" /></a></p>
<p>No more carrying around external hard drives. You won&#8217;t run out of space with <a title="Backblaze Cloud Backup" href="http://www.rowelldionicio.com/backblaze" target="_blank">Backblaze</a>. It backs up your data continuously as long as you have an Internet connection.</p>
<h4>Exclusions</h4>
<p style="text-align: center;"><a href="http://www.rowelldionicio.com/wp-content/uploads/2012/03/exclusions.jpg" rel="lightbox[850]" title="Backblaze Exclusions Settings"><img class="size-medium wp-image-856 aligncenter" title="Backblaze Exclusions Settings" src="http://www.rowelldionicio.com/wp-content/uploads/2012/03/exclusions-300x197.jpg" alt="Set up Backblaze to exclude folders" width="300" height="197" /></a></p>
<p>You decide what you want backed up. They make a few obvious selections for you but take it even further. I don&#8217;t back up my music because I get it from iTunes which has their own cloud.</p>
<h4>External Drives</h4>
<p>A nice feature here is that you can actually tell Backblaze to backup any external drives connected to your laptop. I have one external hard drive with data that I&#8217;ve moved off my laptop. I finally get to back that up and keep it safe. I can sleep like a baby tonight.</p>
<h4>Security</h4>
<p>If you have super duper private information then you&#8217;re going to want to enable encryption. Comes included with your purchase! You configure a top secret complex password to enable nuclear bunker type strength encryption. Technically speaking, Backblaze uses public/private and symmetric key algorithms.</p>
<p>I&#8217;m taking this directly from their site,</p>
<blockquote><p>We generate a new 2048-bit <a href="http://en.wikipedia.org/wiki/RSA">RSA public/private key</a> pair when our client is installed, store the public key on the local disk and transmit the private key to our datacenter via https. Then, for each backup session, we generate a new random 128-bit <a href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">AES symmetric key</a> which we use to encrypt the user’s data. We secure the 128-bit AES key by encrypting it with the user’s public key and transmit the encrypted file along with the encrypted key to our datacenter over https. We destroy the unencrypted 128-bit AES key at the end of each backup session and never write it to disk. To decrypt a file, the user’s private key is used to decrypt the 128-bit AES which is then used to decrypt the file.</p></blockquote>
<h4><a href="http://blog.backblaze.com/wp-content/uploads/2008/11/encryption_diagram_blog_small.jpg" rel="lightbox[850]" title="Backblaze Encryption Diagram"><img class="aligncenter" title="Backblaze Encryption Diagram" src="http://blog.backblaze.com/wp-content/uploads/2008/11/encryption_diagram_blog_small.jpg" alt="" width="550" height="360" /></a></h4>
<p><a href="http://blog.backblaze.com/wp-content/uploads/2008/11/decryption_diagram_blog_small.jpg" rel="lightbox[850]" title="Decryption Diagram"><img class="aligncenter" title="Decryption Diagram" src="http://blog.backblaze.com/wp-content/uploads/2008/11/decryption_diagram_blog_small.jpg" alt="" width="550" height="360" /></a></p>
<h4>The reports are good enough that Bill Lumbergh would give you a raise</h4>
<p><a href="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backblaze-reports.jpg" rel="lightbox[850]" title="Reports Generated by Backblaze"><img class="aligncenter size-medium wp-image-858" title="Reports Generated by Backblaze" src="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backblaze-reports-300x221.jpg" alt="" width="300" height="221" /></a></p>
<p>Backblaze generates detailed reports of your backups and delivers a simple bar graph categorizing the type of data being backed up and how much of it. Then there&#8217;s even more reports. You can get a list of what files are in the queue to be backed up. AND an event log for those who love looking at event logs.</p>
<h4>Recovery</h4>
<p><a href="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backblaze-how-to-restore.jpg" rel="lightbox[850]" title="How To Do A Restore with Backblaze"><img class="aligncenter size-medium wp-image-859" title="How To Do A Restore with Backblaze" src="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backblaze-how-to-restore-300x159.jpg" alt="Restoring from Backblaze is a breeze." width="300" height="159" /></a></p>
<p>Recovery is simple. You can log into their site, get an overview of your account, the amount of files backed up, etc. There&#8217;s an option to view/restore files. Once you&#8217;re there you have three options for restore. Either use the web interface and file management window to download the files you need, Have them ship you a USB flash drive up to 28GB for $99, or request a max 1 TB hard drive shipped to you for $189.</p>
<p>Three simple options depending on the severity of your outage or failed hardware. The download option is the easiest. I selected the file I needed, Backblaze will put your data into a zip file, email you when it&#8217;s ready and have it available for download.</p>
<p><a href="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backblaze-selection-restore.jpg" rel="lightbox[850]" title="Selected Restores with Backblaze"><img class="aligncenter size-medium wp-image-860" title="Selected Restores with Backblaze" src="http://www.rowelldionicio.com/wp-content/uploads/2012/03/backblaze-selection-restore-300x188.jpg" alt="" width="300" height="188" /></a></p>
<p>Backblaze is not a perfect back up solution but it&#8217;s pretty damn close. I assume the number one complaint is the amount of time it takes to fully back up your files. I&#8217;ve been backing up for 6 days now. Encryption will probably slow that down the upload as well.</p>
<p>That&#8217;s my extensive review/first look at cloud backup for personal use. It&#8217;s available for Windows and OSX. They even have an option for business use which I find a bit pricey. Try it out for yourself by downloading a free trial.</p>
<p class="alert">What backup solution are you using at home?</alert></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/03/to-teh-cloud/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ditching Gmail in Favor of Live</title>
		<link>http://www.rowelldionicio.com/2012/03/ditching-gmail-in-favor-of-live/</link>
		<comments>http://www.rowelldionicio.com/2012/03/ditching-gmail-in-favor-of-live/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 13:00:00 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=846</guid>
		<description><![CDATA[I&#8217;m now 2 months into using Windows Live. Yes I have thrown Google Gmail out the window and said hello to Windows Live. Now, I&#8217;ve been a long time Gmail user so what gives? Why move now.. and why Windows? Back in January I was browsing my Twitter feed. Paul Thorrutt had published an article [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;m now 2 months into using Windows Live. Yes I have thrown Google Gmail out the window and said hello to Windows Live. Now, I&#8217;ve been a long time Gmail user so what gives? Why move now.. and why Windows?</p>
<p>Back in January I was browsing my Twitter feed. Paul Thorrutt had published an article about <a title="Paul Thorrutt Hotmail" href="http://www.winsupersite.com/article/windows-live/hotmail-exchange-email-141856" target="_blank">consolidating email accounts</a>. It made me think about my email services. Being in IT, I felt that I had to do what I had learned to do.. evaluate and migrate.</p>
<p><strong>The Negatives of Gmail</strong></p>
<p>Paul Thorrutt&#8217;s article made me think about Gmail, their services, and how they fit in with my workflow. The one thing that really sticks out in my mind was making the change to the new Gmail themes that align with their Google+ feel and look. I absolutely hated it. The change made my logon times longer. Buttons and loading took longer to react to my mouse clicks.</p>
<p>The native integration of Google+. It&#8217;s finds its way into your inbox. It hovers to the side letting you know that you can chat with someone in one of your circles.</p>
<p>There is just too much going on that required much of my time to organize it.</p>
<p><strong>Live to the Rescue</strong></p>
<p>Paul went with Hotmail. I went with Live. To me, they are the same service just different domains.</p>
<p>Windows Live introduces a homepage where it tells you what emails you have in your inbox from your contacts, which important emails you have flagged, your upcoming calendar events and social media news (if you&#8217;ve connected them). I give it a glance and move right into email.</p>
<p>The interface is solid. It&#8217;s fast and responsive. Doesn&#8217;t take long to load either.</p>
<p>One of the nicest features of Windows Live is your ability to organize email by Social or Newsletters with one click. NICE!</p>
<p>Another added bonus is the SkyDrive. It&#8217;s quickly becoming a favorite over Dropbox. Once Microsoft releases an app that works across all platforms then I&#8217;m sold. Another bitchin feature is the integration of Office Web Apps. With Google I was using Google Docs. Just like Open Office but on the web. I can kiss that goodbye. I can now open and edit my documents not only on the web but also open them in my Office applications. Now that&#8217;s a nice feature.</p>
<p>One last feature I am warming up to, and Google had their way of doing this too, is the possibility of adding an Alias to your email account. So let&#8217;s say I want to sign up for newsletters, etc but I don&#8217;t want to give my personal email address. You can create an Alias email account and call it whatever you like and use that on the Internet. Live will deliver those emails in your inbox or you can create a folder just for those emails.</p>
<p><strong>Cross Platforms</strong></p>
<p>My biggest challenges occur when I crossover from work to home. Personally, I use a Macbook Pro and will always use one. At work I prefer to use Windows. I don&#8217;t use any installed applications for email, other than Exchange but that is only for work. My ideal set up is to use the cloud.</p>
<p>Currently, I have any Gmail messages automatically forward to my Live email. All emails arriving in Gmail are marked as read and archived. Gmail acts as an added spam filter at the moment which is making my Live account looking really clean. When the time comes I will cut that off and put up an auto responder for my Gmail account.</p>
<p class="alert">Have you had any positive experiences switching email accounts?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/03/ditching-gmail-in-favor-of-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tackling the Microsoft Windows Server Exams</title>
		<link>http://www.rowelldionicio.com/2012/02/tackling-the-microsoft-windows-server-exams/</link>
		<comments>http://www.rowelldionicio.com/2012/02/tackling-the-microsoft-windows-server-exams/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 13:00:28 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[70-640]]></category>
		<category><![CDATA[MCITP]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=843</guid>
		<description><![CDATA[Given my previous blog post about shifting focus to Microsoft technologies, I have decided to take on the Microsoft Server certification, MCITP: Server Administrator which involves passing the 70-640 Active Directory, Configuring 70-642 Network Infrastructure, Configuring 70-646 Server Administrator It will give me a solid foundation on administering Server 2008. So my current plan is [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Given my previous blog post about <a title="One Month In" href="http://www.rowelldionicio.com/?p=838">shifting focus</a> to Microsoft technologies, I have decided to take on the Microsoft Server certification, <a title="MCITP: Server Administrator" href="http://www.microsoft.com/learning/en/us/certification/cert-windowsserver.aspx" target="_blank">MCITP: Server Administrator</a> which involves passing the</p>
<ul>
<li><a title="70-640 Active Directory Configuring" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-640" target="_blank">70-640 Active Directory, Configuring</a></li>
<li><a title="70-642 Network Infrastructure, Configuring" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-642" target="_blank">70-642 Network Infrastructure, Configuring</a></li>
<li><a title="70-646 Server Administrator" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-646" target="_blank">70-646 Server Administrator</a></li>
</ul>
<p>It will give me a solid foundation on administering Server 2008. So my current plan is</p>
<ul>
<li>Reading Sybex subject books</li>
<li>Labbing using VMware Workstation</li>
<li>Utilizing TechNet subscription w/ Workstation</li>
<li>Microsoft Virtual Labs (free)</li>
<li>Notes using OneNote</li>
</ul>
<p>I hope the resources above will help me pass the exam.</p>
<p>Initially, I thought about just reading through the books and various TechNet resources without taking the certification exam but I later changed my mind. People in the office are proud to display their degrees and certificates. It made me realize that I should also be proud of my knowledge and expertise. So why not have it validated.</p>
<p>Hopefully, my study resources will help me pass the exam and you will know whether or not it will work since I&#8217;ll be posting my updates. Check back soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/02/tackling-the-microsoft-windows-server-exams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Month In</title>
		<link>http://www.rowelldionicio.com/2012/02/one-month-in/</link>
		<comments>http://www.rowelldionicio.com/2012/02/one-month-in/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 13:00:50 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Career]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=838</guid>
		<description><![CDATA[It&#8217;s been a month since I&#8217;ve been at my new employer. What&#8217;s different is that I&#8217;m more focused on a smaller set of technologies. On one side, I&#8217;m less exposed to the cutting edge. But now I can really focus on just a few technologies and become a subject matter expert. That leads to me [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>It&#8217;s been a month since I&#8217;ve been at my new employer. What&#8217;s different is that I&#8217;m more focused on a smaller set of technologies. On one side, I&#8217;m less exposed to the cutting edge. But now I can really focus on just a few technologies and become a subject matter expert.</p>
<p>That leads to me to say that you will be reading more about Microsoft technologies. It will be leaning on Active Directory, Exchange and SharePoint. Those are currently my primary areas of focus. I think they&#8217;re great topics and have lots of room for growth.</p>
<p>Networking will still be a large part of what I do since its what transfers the 1s and 0s. And it&#8217;s quite possible that I may be on a networking project.</p>
<p>My environment is definitely different. I&#8217;m going from a non-profit to a private equity firm. Huge change. I&#8217;m enjoying it. The people are great and fun to be around.</p>
<p>The current projects I&#8217;m looking at will help increase the productivity and reliability for the whole firm. It&#8217;s an exciting time to be in IT for the firm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/02/one-month-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something New</title>
		<link>http://www.rowelldionicio.com/2012/01/something-new/</link>
		<comments>http://www.rowelldionicio.com/2012/01/something-new/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 05:58:39 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Career]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=830</guid>
		<description><![CDATA[Friday the 13th was my last day at my non-profit employer. I had been there for a good five years. A good run for sure. I learned so much there. I did everything from configuring laptops, troubleshooting said laptops, configuring email on iPhones, Blackberries, Androids and tablets, provisioning servers, deploying VMs, dealing with alarms.. you [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Friday the 13th was my last day at my non-profit employer. I had been there for a good five years. A good run for sure. I learned so much there. I did everything from configuring laptops, troubleshooting said laptops, configuring email on iPhones, Blackberries, Androids and tablets, provisioning servers, deploying VMs, dealing with alarms.. you name it.</p>
<p>It was definitely a jack of all trades kind of thing. But then came a moment when I felt that I needed something different. A change.</p>
<p>Starting today I will be working at a private equity firm as a Sr. IT Support Specialist. I&#8217;ll be supporting a growing infrastructure. Similar to my previous job responsibilities.</p>
<p>In a way I&#8217;m happy to move back to a for-profit. There are many pros and cons to both for-profit and non-profit. Probably better fit for another blog post.</p>
<p>All I can say is that I&#8217;m looking forward to this new chapter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/01/something-new/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Moving Closer to VMware</title>
		<link>http://www.rowelldionicio.com/2012/01/moving-closer-to-vmware/</link>
		<comments>http://www.rowelldionicio.com/2012/01/moving-closer-to-vmware/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 11:00:51 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=818</guid>
		<description><![CDATA[One thing to consider for 2012 is that I will be using and learning more VMware. I&#8217;ve always had a strong interest in virtualization, especially with VMware&#8217;s technologies. Back in 2010 I took the VMware vSphere: Install, Configure, Manage class. I was impressed with their lab setup. Everything worked flawlessly. Even with recent moves to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>One thing to consider for 2012 is that I will be using and learning more VMware. I&#8217;ve always had a strong interest in virtualization, especially with VMware&#8217;s technologies. Back in 2010 I took the VMware vSphere: Install, Configure, Manage class. I was impressed with their lab setup. Everything worked flawlessly. Even with recent moves to the virtualized desktop and BYOC. It&#8217;s amazing what you can do now with virtualization.</p>
<p>I&#8217;ve already began refreshing my knowledge by reading through Scott Lowe&#8217;s <a title="Mastering VMware vSphere 4" href="http://www.amazon.com/gp/product/0470481382/ref=as_li_ss_tl?ie=UTF8&amp;tag=amaz046-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0470481382" target="_blank">Mastering VMware vSphere 4</a>. It&#8217;s full of useful information and I&#8217;m soaking in a lot. I&#8217;m planning out my lab, which will run on my Macbook Pro, using VMware Fusion. I still have my lab books from my VMware class so I will utilize those. Then I need to brush up on the new material for 4.1.</p>
<p>I&#8217;m actually aiming high and looking to sit in on the VCP 4 exam this month. You&#8217;ll see more VMware posts in the upcoming days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/01/moving-closer-to-vmware/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2011 In Review</title>
		<link>http://www.rowelldionicio.com/2012/01/2011-in-review/</link>
		<comments>http://www.rowelldionicio.com/2012/01/2011-in-review/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 18:07:41 +0000</pubDate>
		<dc:creator>rowelld</dc:creator>
				<category><![CDATA[Career]]></category>

		<guid isPermaLink="false">http://www.rowelldionicio.com/?p=815</guid>
		<description><![CDATA[Near the end of 2010 I set out some goals for myself to complete in 2011. Did I complete them? Hell no. But I&#8217;m not necessarily bummed out about it. In your professional career, you go where your career takes you. Sometimes it takes a different path. My career is still along the IT path [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Near the end of 2010 <a title="If You Could Open a Door Anywhere, Where Would You Go?" href="http://www.rowelldionicio.com/2010/12/developing-it-career-goals-2011/">I set out some goals</a> for myself to complete in 2011. Did I complete them? Hell no. But I&#8217;m not necessarily bummed out about it. In your professional career, you go where your career takes you. Sometimes it takes a different path. My career is still along the IT path but it has somewhat shifted a bit.</p>
<p>My major goal for 2011 was to get my CCNP RS. I attempted my <a title="CCNP ROUTE – Crash and Burn!" href="http://www.rowelldionicio.com/2011/08/ccnp-route-crash-and-burn/">CCNP ROUTE</a> but failed on my first attempt. No problem. I&#8217;m still studying for it now and will probably sit on the exam before March 2012. It&#8217;s still on my list of goals!</p>
<p>When I look back at 2011 I see it as a maintaining year for our network. Not too many implementations. Lots of troubleshooting and optimization. I did work on lots of planning and project management. Learned quite a bit there but nothing of a large scale.</p>
<p>I&#8217;ve had growing interest in more implementations for new systems and have been training myself in that area.</p>
<p>2012 will be an interesting year for me and I&#8217;m not going to create any major goals this year. What I want to do is see how my career plays out for a while. Let&#8217;s just say I&#8217;ll create some small goals <img src='http://www.rowelldionicio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.rowelldionicio.com/2012/01/2011-in-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

