<?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>Victor M. Font Jr.</title>
	<atom:link href="http://victorfont.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://victorfont.com</link>
	<description>Professional IT Services and WordPress Consulting - Call 919-604-5828</description>
	<lastBuildDate>Mon, 20 May 2013 13:19:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How To Configure WP-DBManager and PHP</title>
		<link>http://victorfont.com/configuring-wp-dbmanager-and-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=configuring-wp-dbmanager-and-php</link>
		<comments>http://victorfont.com/configuring-wp-dbmanager-and-php/#comments</comments>
		<pubDate>Sun, 19 May 2013 21:31:59 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[Computers and Internet]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2767</guid>
		<description><![CDATA[WP-DBManager by Lester Chan is a popular WordPress plugin. With over 811,000 downloads as of this writing, WP-DBManager is a full-featured database management and backup tool that allows you to optimize, repair, backup, and restore your WordPress installation&#8217;s MySQL database. In addition, the plugin can delete backup copies of your database, drop tables, and run [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://victorfont.com/files/2011/10/how-to-featured.jpg" rel="lightbox[2767]"><img src="http://victorfont.com/files/2011/10/how-to-featured.jpg" alt="How To Configure WP-DBManager and PHP" width="150" height="150" class="alignleft size-full wp-image-1775" /></a><a href="http://wordpress.org/extend/plugins/wp-dbmanager/" title="WP-DBManager on WordPress.org" target="_blank">WP-DBManager</a> by <a href="http://victorfont.com/go/bcp-overview/" title="WP-DBManager's Author's Home Page" target="_blank">Lester Chan</a> is a popular WordPress plugin. With over 811,000 downloads as of this writing, WP-DBManager is a full-featured database management and backup tool that allows you to optimize, repair, backup, and restore your WordPress installation&#8217;s MySQL database. In addition, the plugin can delete backup copies of your database, drop tables, and run selected queries. It also supports the automatic scheduling of back ups, optimization, and repair of your database. Sounds like a great tool, doesn&#8217;t it?</p>
<h2>WP-DBManager Installation Issues</h2>
<p>It really is a great plugin once you get it running. Unfortunately, depending on how your host has PHP configured on your server, you are likely to receive the following error when you attempt to backup your database for the first time:</p>
<div align="center">
<a href="http://victorfont.com/files/2013/05/wp-dbmanager1.jpg" rel="lightbox[2767]"><img src="http://victorfont.com/files/2013/05/wp-dbmanager1-300x149.jpg" alt="WP-DBManager and PHP Configuration Error" width="300" height="149" class="aligncenter size-medium wp-image-3215" /></a></div>
<p>If the PHP installation is configured properly, you&#8217;ll see the following screen instead:</p>
<div align="center">
<a href="http://victorfont.com/files/2013/05/wp-dbmanager2.jpg" rel="lightbox[2767]"><img src="http://victorfont.com/files/2013/05/wp-dbmanager2-300x213.jpg" alt="WP-DBManager and Configured Properly PHP" width="300" height="213" class="aligncenter size-medium wp-image-3216" /></a></div>
<p>Fixing your PHP installation so WP-DBManager works and you see the second screen instead of the first is as easy as adding the following code to your .htaccess file:</p>

<div class="bwp-syntax-block clearfix"><div class="bwp-syntax-control"><a href="javascript:;" class="bwp-syntax-source-switch" title="View Source Code"></a></div>
<div class="bwp-syntax-wrapper clearfix bwp-syntax-simple"><table class="html4strict"><tbody><tr class="li1"><td class="ln"><pre class="de1">1
2
3
4
5
</pre></td><td class="de1"><pre class="de1">suPHP_ConfigPath /home/<span class="sc2">&lt;your-path&gt;</span>/public_html
<span class="sc2">&lt;Files php.ini&gt;</span>
order allow,deny
deny from all
<span class="sc2">&lt;<span class="sy0">/</span>Files&gt;</span></pre></td></tr></tbody></table></div>
<div class="bwp-syntax-source"><pre class="no-parse">suPHP_ConfigPath /home/&lt;your-path&gt;/public_html
&lt;Files php.ini&gt;
order allow,deny
deny from all
&lt;/Files&gt;</pre></div></div>

<p>At this point, you&#8217;re probably wondering what this code actually does. Let me explain.</p>
<h2>suPHP</h2>
<p><a href="http://www.suphp.org/Home.html" title="suPHP Home Page" target="_blank">suPHP</a> is a tool for executing PHP scripts with the permissions of their owners. It consists of an Apache module (mod_suphp) and a setuid root binary (suphp) that is called by the Apache module to change the uid of the process executing the PHP interpreter. </p>
<h3>suPHP _ConfigPath</h3>
<p>This option tells mod_suphp which path to pass on to the PHP-interpreter (by setting the PHPRC environment variable). Do *NOT* refer to a file but to the directory the file resists in. You must have a valid php.ini file for the version of php you are using in the directory specified in this path.</p>
<p>E.g.: If you want to use &#8220;/path/to/server/config/php.ini&#8221;, use &#8220;suPHP_ConfigPath /path/to/server/config&#8221;.</p>
<h2>Securing php.ini</h2>
<p>The rest of this code secures the php.ini file in the specified path from access through a web browser. Restricting directory and/or file access s one of the most frequently uses of .htaccess. To deny all http requests for the restricted php.ini, add the &#8220;deny from all&#8221; directive as shown to your .htaccess file.</p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/configuring-wp-dbmanager-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UConn Part 8: Continuity of Operations Training Program</title>
		<link>http://victorfont.com/continuity-of-operations-training-uconn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=continuity-of-operations-training-uconn</link>
		<comments>http://victorfont.com/continuity-of-operations-training-uconn/#comments</comments>
		<pubDate>Tue, 07 May 2013 00:40:45 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=3019</guid>
		<description><![CDATA[Continuity of Operations training instructs business users how to plan for keeping their business functions operational in the event of the loss of the computer systems they depend so highly upon. At UConn, the loss of the primary data center may require 30 days or longer to fully recover system operations. The sad truth is [...]]]></description>
				<content:encoded><![CDATA[<p><div id="attachment_3021" class="wp-caption alignleft" style="width: 310px"><a href="http://victorfont.com/files/2013/05/IMG_5766.jpg" rel="lightbox[3019]"><img src="http://victorfont.com/files/2013/05/IMG_5766-300x200.jpg" alt="Continuity of Operations Training" width="300" height="200" class="size-medium wp-image-3021" /></a><p class="wp-caption-text">Photo by Lorraine Fox Costanzo</p></div>Continuity of Operations training instructs business users how to plan for keeping their business functions operational in the event of the loss of the computer systems they depend so highly upon. At UConn, the loss of the primary data center may require 30 days or longer to fully recover system operations. The sad truth is that University Information Technology Services (UITS), the central IT group supporting over 40,000 students, faculty, and professional staff, has no viable disaster recovery plan. There are some very high level ideas of what needs to be done, but no detailed documented plan. In fact, there&#8217;s never been a <a href="http://victorfont.com/go/bia-template/" title="BIA Template" target="_blank">Business Impact Analysis</a> done for current production systems. Estimates run from anywhere from $4 million to $30 million to completely provide for UConn&#8217;s IT disaster recovery needs.</p>
<p>It&#8217;s no substitute for a viable disaster recovery plan, but a continuity of operations training program for IT&#8217;s business partners is essential. Establishing a training program became even more relevant when an audit of the Student Administration Systems found that the business had no Continuity of Operation Plan. The Student Administration business partners turned to UITS to provide guidance in developing their plan.</p>
<p>The first time I conducted an overview presentation for the Student Administration Directors, I was told that I scared them. I showed them the photo of the burned out data center and let them know about our water based fire suppression system. At first, they didn&#8217;t believe me until the CIO confirmed the facts with them. Before I left UConn, I facilitated a 3-hour workshop with the Graduate School Dean and his administrative staff. I provided them with template for a Facilities Resilience Plan and a Pandemic Influenza Plan.I also recruited a few trainers who can carry on the program without me. I hope UConn continues this training program and it doesn&#8217;t fall by the wayside.</p>
<h2>Continuity of Operations Training Documents and Templates</h2>
<p>All of these documents are in the public domain without copyright. Please feel free to download them and adapt them for your own use.</p>
<ul>
<li>Continuity of Operations Training PowerPoints:
<ul>
<li><a href="http://victorfont.com/go/bcp-overview/" title="BCP Overview" target="_blank">BCP Overview</a> (25 minute walk through)</li>
<li><a href="http://victorfont.com/go/intro-to-coop/" title="Intro to COOP" target="_blank">Continuity of Operations Overview</a> (1-hour presentation)</li>
<li><a href="http://victorfont.com/go/continuity-plan-group-workshop/" title="Continuity Plan Group Workshop" target="_blank">Continuity of Operations Group Workshop</a> (3-hours)</li>
<li><a href="http://victorfont.com/go/coop-tte/" title="COOP TTE" target="_blank">Continuity of Operations TT&#038;E</a> (1-hour)</li>
<li><a href="http://victorfont.com/go/developing-a-cap/" title="Developing a CAP" target="_blank">Developing a Corrective Action Plan</a></li>
</ul>
</li>
<li>Continuity of Operations Templates:
<ul>
<li><a href="http://victorfont.com/go/facility-resilience-template/" title="Facility Resilience Template" target="_blank">Facility Resilience Template</a></li>
<li><a href="http://victorfont.com/go/pandemic-influenza-template/" title="Pandemic Influenza Template" target="_blank">Pandemic Influenza Template</a></li>
</ul>
</li>
</ul>
<p><a rel="prev" href="http://victorfont.com/remote-critical-infrastructure-site-uconn/" title="UConn Part 7: Remote Critical Infrastructure Protection Site">&lt;&#8211; UConn Part 7: Remote Critical Infrastructure Protection Site</a></p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a></p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/continuity-of-operations-training-uconn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UConn Part 7: Remote Critical Infrastructure Protection Site</title>
		<link>http://victorfont.com/remote-critical-infrastructure-site-uconn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=remote-critical-infrastructure-site-uconn</link>
		<comments>http://victorfont.com/remote-critical-infrastructure-site-uconn/#comments</comments>
		<pubDate>Mon, 06 May 2013 20:32:55 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2987</guid>
		<description><![CDATA[A Remote Critical Infrastructure Protection (CIP) site offers the best protection against catastrophic system disruptions. After Hurricane Sandy, University Information Technology Services (UITS) scrambled to build a local CIP site in the Chemistry building approximately 300 yards distant from the Math Science Building (MSB) where UConn&#8217;s central data center is located. While the MSB data [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://victorfont.com/files/2013/05/uchc_nite__lg.jpg" rel="lightbox[2987]"><img class="alignleft size-medium wp-image-2990" alt="UCHC Remote Critical Infrastructure Protection Location" src="http://victorfont.com/files/2013/05/uchc_nite__lg-300x201.jpg" width="300" height="201" /></a>A Remote Critical Infrastructure Protection (CIP) site offers the best protection against catastrophic system disruptions. After Hurricane Sandy, University Information Technology Services (UITS) scrambled to build a local CIP site in the Chemistry building approximately 300 yards distant from the Math Science Building (MSB) where UConn&#8217;s central data center is located. While the MSB data center has redundant power feeds, the Chemistry site is a high risk gamble because of its proximity to MSB. If anything happens to take down the power on the Storrs campus, the Chemistry site will fail in its mission. UConn Storrs desperately needs a remote critical infrastructure protection site. </p>
<p>The harsh reality these days is that campuses all across America face similar threats to their health, safety, and economy. UConn&#8217;s Department of Public Safety plans for situations that include active campus shooter, international or domestic terrorism, severe weather emergencies, pandemic influenza, and other natural or man made disasters. As I departed UConn, an individual sent me this email:</p>
<blockquote><p>A while back, I had the UConn Police dismantle a bomb making lab in MSB that a graduate student set up, so the risks you point out are actually quite real.</p></blockquote>
<p>Since he sent this reply to the entire distribution list, it created quite a stir. As it turns out, the incident was reported in the news in the year 2000. It&#8217;s old news, but it punctuates the fact that we are at risk for a serious disruptive event every single day. Also, the UConn Storrs campus is situated approximately 35 miles from two nuclear facilities. UConn Storrs is designated as an evacuation destination in the event of an accident at the Millstone Nuclear Power Plant in Waterford, CT. A fast attack nuclear submarine base is located a few miles further south from Millstone in Groton, CT. The U.S. Navy will neither confirm nor deny the presence of nuclear weapons on the base, but if I had to venture a guess&#8230;I think our enemies might just consider the base a first strike target.</p>
<h2>University Of Connecticut Health Center (UCHC)</h2>
<p>The University of Connecticut Health Center (UCHC), located in Farmington, Connecticut, is an integrated academic medical center that is involved in three areas: academics, research, and clinical care. UCHC is at the center of Bioscience Connecticut, a plan introduced by Connecticut Governor Dannel P. Malloy and approved by the Connecticut General Assembly in 2011. It is home to the School of Medicine, School of Dental Medicine, John Dempsey Hospital, UConn Medical Group, UConn Health Partners, University Dentists and a thriving research enterprise. While UConn Health Center is closely linked with the University&#8217;s main campus in Storrs through multiple, cross-campus academic projects, functionally it operates almost as a separate entity with it&#8217;s own CIO and IT Group.</p>
<p>As a hospital, UCHC has multiple redundancy built into every one of it&#8217;s systems. After visiting several alternatives, I thought UCHC would make an excellent remote critical infrastructure protection site. The UConn Storrs CIO thought I had no chance of convincing UCHC officials to provide space in their data center for a remote site because of the political climate that existed between the two schools. I risked it anyway and met with the Chief Administrative Officer, Chief Information Officer, and VP of IT for UCHC. I explained to them what I was doing at Storrs, what my goals were, and simply asked for space in their data center. They said, &#8216;Yes!&#8217;</p>
<h2>Remote Critical Infrastructure Protection at UCHC</h2>
<p>With space secured, the new problem is, &#8220;How are we going to pay for the remote critical infrastructure build-out?&#8221; This is a question that, as of the time of this writing, is yet to be answered. It&#8217;s on the list of strategic priorities for the 2013-2014 fiscal year, but funding has not yet been approved. I applied for $4.26 million from Connecticut&#8217;s IT Capital Investment Program managed by the Office of Policy and Management. While they haven&#8217;t said no to any requests yet, and this project is on the list of those destined for approval, it still needs to be vetted by the bond commission because these projects are funded with public debt. Nobody knows what&#8217;s going to happen, but I can only hope that UConn&#8217;s leadership keeps the momentum going for this vital need.</p>
<p><a rel="prev" href="http://victorfont.com/critical-infrastructure-protection-uconn/" title="UConn Part 6: Critical Infrastructure Protection">&lt;&#8211; UConn Part 6: Critical Infrastructure Protection</a></p>
<p><a href="http://victorfont.com/continuity-of-operations-training-uconn/" title="UConn Part 8: Continuity of Operations Training Program" rel="next">UConn Part 8: Continuity of Operations Training Program &#8211;&gt;</a></p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a></p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/remote-critical-infrastructure-site-uconn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UConn Part 6: Critical Infrastructure Protection</title>
		<link>http://victorfont.com/critical-infrastructure-protection-uconn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=critical-infrastructure-protection-uconn</link>
		<comments>http://victorfont.com/critical-infrastructure-protection-uconn/#comments</comments>
		<pubDate>Mon, 06 May 2013 03:34:51 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2913</guid>
		<description><![CDATA[Information systems are vital to the University of Connecticut’s mission/business functions. It is critical that services provided by University Information Technology Services (UITS) are able to operate effectively without excessive interruption. The Critical Infrastructure Protection Plan (CIPP) establishes comprehensive procedures to fail over and/or recover critical infrastructure and key resources (CIKR) quickly and effectively following [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://victorfont.com/files/2013/05/datacenter-rack.jpg" rel="lightbox[2913]"><img class="alignleft size-medium wp-image-2915" alt="Critical Infrastructure Data Center Rack" src="http://victorfont.com/files/2013/05/datacenter-rack-199x300.jpg" width="199" height="300" /></a>Information systems are vital to the University of Connecticut’s mission/business functions. It is critical that services provided by University Information Technology Services (UITS) are able to operate effectively without excessive interruption. The Critical Infrastructure Protection Plan (CIPP) establishes comprehensive procedures to fail over and/or recover critical infrastructure and key resources (CIKR) quickly and effectively following a service disruption.</p>
<h2>Critical Infrastructure and Key Resources (CIKR)</h2>
<p>CIKR are those components of the UITS critical infrastructure that are deemed so vital that their loss would have a debilitating effect on the safety, security, economy, and/or health of the University of Connecticut. Protecting and ensuring the resiliency of UConn’s CIKR is essential to the University’s security, public health and safety, economic vitality, and way of life. Attacks on or failures of CIKR could significantly disrupt UConn. Direct international or domestic terrorist attacks and natural, man made, or technological hazards could produce catastrophic losses in terms of human casualties, property destruction, and economic effects, as well as profound damage to student, faculty and staff morale and confidence.</p>
<h2>Critical Infrastructure Protection Plan</h2>
<p>A CIPP is a set of processes and procedures that serve to protect and recover these assets and mitigate risks and vulnerabilities. The CIPP defines the roles and responsibilities for protection, develop partnerships and information sharing relationships, implement the risk management framework, and integrate emergency preparedness, protection and resiliency of critical infrastructure.</p>
<h2>Critical Infrastructure Protection at UConn</h2>
<p>After the rush to prepare critical backup systems for Hurricane Sandy, Provost Mun Choi ordered UITS to establish the critical infrastructure protection site. I assembled a team of about 25 technical resources from the server support group, networking, the PMO, and data center operations. As a group we decided to use rack space in the Chemistry building&#8217;s telecommunication data center. That location has enough power, UPS redundancy and air conditioning to support our needs. We were given space for 2 racks. The Chemistry building is about 300 yards from the primary data center in the Math Science building (MSB). It&#8217;s not an optimal location because of its proximity to MSB, but it&#8217;s all that we had. The systems included at this site include:</p>
<ul>
<li>Authentication services (LDAP, Kerberos, CAS)</li>
<li>Radius</li>
<li>Active Directory</li>
<li>Exchange</li>
</ul>
<p>Two other emergency communications systems, RAVE and ListServ, are outsourced. We also purchased 100Gb of Hitachi storage to support these systems. The total cost for this site fell just short of $1 million USD. There are no load balancers and fail over requires some manual intervention, so at best we can only call this a warm site, and a temporary warm site at that.</p>
<p>The following critical communication websites are outsourced to the Amazon eastern region cloud:</p>
<ul>
<li><a title="University of Connecticut" href="http://uconn.edu" target="_blank">UConn.edu</a></li>
<li><a title="UConn Today" href="http://today.UConn.edu" target="_blank">today.UConn.edu</a></li>
<li><a title="UConn Alert Notification System" href="http://alert.UConn.edu" target="_blank">alert.UConn.edu</a></li>
<li><a title="UConn University Information Technology Services System Status" href="http://alert.UConn.edu" target="_blank">itstatus.UConn.edu</a></li>
</ul>
<p>These sites also require manual intervention for data synchronization and fail over.</p>
<p>I ran the project as a Scrum project and can&#8217;t speak more favorably of daily standup meetings to help keep project team members committed and accountable to each other. We ran into purchasing delays and school imposed moratoriums where we had to work around student schedules, exams, and breaks. The team working on this project also had their normal day-to-day support activities and other project duties on their plates. The project required approximately 6 months to complete and make ready for a complete fail over test. All component testing worked and we enjoyed an inadvertent test of Exchange when production servers had to be taken down for patching and the Exchange servers in Chemistry automatically picked up the load. The Chemistry site is a complete victory for UITS.</p>
<p>Because UConn&#8217;s Critical Infrastructure Protection Plan contains proprietary details, the document is not available for download.</p>
<p><a href="http://victorfont.com/sdlc-bcpdr-integration-uconn/" title="UConn Part 5: SDLC BCP/DR Integration" rel="prev">&lt;&#8211; UConn Part 5: BCP/DR Integration Into New Project Process</a></p>
<p><a rel="next" href="http://victorfont.com/remote-critical-infrastructure-site-uconn/" title="UConn Part 7: Remote Critical Infrastructure Protection Site">UConn Part 7: Remote Critical Infrastructure Protection Site &#8211;&gt;</a></p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a></p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/critical-infrastructure-protection-uconn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UConn Part 5: SDLC BCP/DR Integration</title>
		<link>http://victorfont.com/sdlc-bcpdr-integration-uconn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sdlc-bcpdr-integration-uconn</link>
		<comments>http://victorfont.com/sdlc-bcpdr-integration-uconn/#comments</comments>
		<pubDate>Sun, 05 May 2013 04:58:53 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2892</guid>
		<description><![CDATA[As the author of &#8220;The Ultimate Guide to the SDLC,&#8221; I am somewhat of an expert with the System Development Life Cycle (SDLC). Business profitably is driven by a balance of margin, sales and net profit. The success of an IT organization to deliver high business value is driven by the three-legged stool of IT [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.amazon.com/Ultimate-Guide-SDLC-Victor-Font/dp/0985566647/ref=sr_1_1?ie=UTF8&#038;qid=1367729854&#038;sr=8-1&#038;keywords=the+ultimate+guide+to+the+sdlc" target="_blank" ><img src="http://victorfont.com/files/2013/05/front-cover-image-243x300.jpg" alt="Front cover: The Ultimate Guide to the SDLC" width="243" height="300" class="alignleft size-medium wp-image-2902" /></a>As the author of &#8220;The Ultimate Guide to the SDLC,&#8221; I am somewhat of an expert with the System Development Life Cycle (SDLC). Business profitably is driven by a balance of margin, sales and net profit. The success of an IT organization to deliver high business value is driven by the three-legged stool of IT Governance, the Project/Program Management Method and the Systems Development Life Cycle. The three are inextricably linked and together form a trilogy that are foundational to IT success and the business value IT provides.</p>
<p>Business Continuity and Disaster Recovery are areas that most SDLCs neglect. Perhaps neglect is too strong a word, since purposefulness is implied when something is neglected, omitted might be better. Why is it then that many SDLCs omit BCP/DR? This is my opinion. I have no hard facts, but I believe most organizations don&#8217;t implement BCP/DR processes until something bad happens. </p>
<p><a href="http://victorfont.com/files/2013/05/data-center-fire.jpg" rel="lightbox[2892]"><img class="alignright size-medium wp-image-2893" alt="Data Center Fire" src="http://victorfont.com/files/2013/05/data-center-fire-300x225.jpg" width="300" height="225" /></a>Look at the photo on the right. On March 19, 2008, a fire destroyed 75 servers, routers and switches in the data center at <a href="http://www.cccp.com/" target="_blank">Camera Corner/Connecting Point</a>, a Green Bay, Wisconsin business offering IT services and web site hosting. It took 10 days to get customer web sites back online, indicating the company had no live backup plan. That was a problem for one customer, the Green Bay Blizzard arena football team, which was counting on selling tickets online for their home opener. Camera Corner/Connecting Point CEO Rick Chernick insisted the company had thought a lot about disaster recovery:</p>
<blockquote><p>As part of your plan: Where are you going to go? Where are you going to set up? Where are you going to put phones in?” Chernick said. “We had all that planned out so we knew where we were going to go…if we had a fire.</p></blockquote>
<p>And yet customer web sites were offline for at least 10 days. The local media didn’t ask tougher questions about whether that was adequate.</p>
<h2>Don&#8217;t Think, Do!</h2>
<p>Thinking a lot about disaster recovery is not the same as actually having documented, exercised plans and a hot, warm, or even cold backup site ready to go. UConn&#8217;s University Information Technology Services (UITS) group had no documented plans. The data center is located in the Math Science Building (MSB). It is old, outdated, and there&#8217;s a high risk that it could be shut down due to water penetration. Plenum cabling is run under the flooring as it is with many older data centers. Water filled HVAC piping runs in the drop ceiling above all the production IT equipment. During my engagement, a heating pipe leaked. Fortunately, the leak happened in an area that is used for storage. No damage occurred to the production hardware. Of greater concern is the fact that the fire suppression system is water based. While the likelihood is remote that a fire would occur like the one in Green Bay, if just one wisp of smoke from a blown capacitor triggers the fire suppression system, UConn&#8217;s data center is toast. We all know how well water and electronic equipment mix.</p>
<h2>SDLC New Project Integration</h2>
<p>The Project Management Office (PMO) is now integrating the development of a Business Impact Analysis and Information System Contingency Plan into the planning phase of their SDLC for all new projects going forward. The goal is that no project will roll into production until both of these processes are complete. This is really a BIG deal for UITS. There has never been a Business Impact Analysis done for any of their supported systems, let alone contingency plans. Not only did I have to build the templates, but I had to build enough information into the planning documentation to teach people how to use them.</p>
<p>Cost is always a consideration for BCP/DR. Hot sites are expensive. They usually duplicate production and can function as a load balanced, automatic fail over site if something happens to take out the primary data center. Warm sites are less expensive, cold sites are the least expensive. The less you pay up front, the more the work required to get the site up and running in a disaster situation. You need to determine the proper cost/benefit ratio for your organization, but having something in place, <em>anything</em> in place, is better than having nothing at all.</p>
<p><a href="http://victorfont.com/bcpdr-toolkit-document-library-uconn/" title="UConn Part 4: BCP/DR Toolkit &#038; Document Library" rel="prev">&lt;&#8211; UConn Part 4: BCP/DR Toolkit &#038; Document Library</a></p>
<p><a href="http://victorfont.com/critical-infrastructure-protection-uconn/" title="UConn Part 6: Critical Infrastructure Protection" rel="next">UConn Part 6: Critical Infrastructure Protection &#8211;&gt;</a></p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a></p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/sdlc-bcpdr-integration-uconn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UConn Part 4: BCP/DR Toolkit &amp; Document Library</title>
		<link>http://victorfont.com/bcpdr-toolkit-document-library-uconn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bcpdr-toolkit-document-library-uconn</link>
		<comments>http://victorfont.com/bcpdr-toolkit-document-library-uconn/#comments</comments>
		<pubDate>Sun, 05 May 2013 00:02:22 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2845</guid>
		<description><![CDATA[After forming the governance teams and dealing with Hurricane Sandy, much of my time was spent creating a BCP/DR toolkit and document library. When I arrived at UConn, all they had was a single document they called a Business Continuity template. It was wholly inadequate to serve the needs of BCP/DR program. There are many [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_2848" class="wp-caption alignleft" style="width: 253px"><a href="http://victorfont.com/files/2013/05/ContingencyPlanCover_02152013.jpg" rel="lightbox[2845]"><img class="size-medium wp-image-2848" alt="UConn Document Library IT Contingency Plan Cover" src="http://victorfont.com/files/2013/05/ContingencyPlanCover_02152013-243x300.jpg" width="243" height="300" /></a><p class="wp-caption-text">Cover design by <a href="http://www.linkedin.com/profile/view?id=7871235&amp;authType=NAME_SEARCH&amp;authToken=7Sov&amp;locale=en_US&amp;srchid=49c7353a-4b88-4264-aec4-4fa01dd9500f-0&amp;srchindex=1&amp;srchtotal=1&amp;goback=.fps_PBCK_katrina+garbiel_*1_*1_*1_*1_*1_*1_*2_*1_Y_*1_*1_*1_false_1_R_*1_*51_*1_*51_true_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2&amp;pvs=ps&amp;trk=pp_profile_name_link" target="_blank">Katrina Garbiel</a></p></div>
<p>After forming the governance teams and dealing with Hurricane Sandy, much of my time was spent creating a BCP/DR toolkit and document library. When I arrived at UConn, all they had was a single document they called a Business Continuity template. It was wholly inadequate to serve the needs of BCP/DR program.</p>
<p>There are many documents that can written for a BCP/DR document library. My choice was to either write them from the ground up or adapt best in breed documents that already exist in cyberspace. Since I don&#8217;t believe in reinventing the wheel and I knew this assignment was a short one, I chose the latter. In a previous assignment working for the <a title="Space and Naval Warfare Systems Command" href="http://www.public.navy.mil/spawar/Pages/default.aspx" target="_blank">Space and Naval Warfare Systems Command</a> Atlantic (SPAWAR), I became very familiar with IT documents from the <a title="National Institute of Standards and Technology" href="http://www.nist.gov/index.html" target="_blank">National Institute of Standards and Technology</a> (NIST) Special Publication 800-series. The series reports on research, guidelines, and outreach efforts in information system security, and its collaborative activities with industry, government, and academic organizations. The NIST provides the series for use or adoption by any organization without copyright. All the UConn documents are adaptations of this series as well as others from the Federal Information Processing Standards Publications (FIPS PUBS) also by the NIST.</p>
<h2>Document Library and Toolkit Downloads</h2>
<p>The documents in the document library toolkit are:</p>
<ul>
<li><a title="UITS Contingency Plan and Planning Guide" href="http://victorfont.com/go/uits-contingency-plan-and-planning-guide/" target="_blank">Information Technology Contingency Plan and Planning Guide</a></li>
<li><a title="BIA Template" href="http://victorfont.com/go/bia-template/" target="_blank">Business Impact Analysis Template</a></li>
<li><a title="Categorization of University Information and Information Systems" href="http://victorfont.com/go/categorization-of-university-information-and-information-systems/" target="_blank">Categorization of University Information and Information Systems</a></li>
<li><a title="UITS ISCP Guide" href="http://victorfont.com/go/uits-iscp-guide/" target="_blank">Information System Contingency Plan Guide</a></li>
<li>Information System Contingency Plan Templates for <a title="ISCP High-Impact Template" href="http://victorfont.com/go/iscp-high-impact-template/" target="_blank">High</a>, <a title="ISCP Moderate-Impact Template" href="http://victorfont.com/go/iscp-moderate-impact-template/" target="_blank">Moderate</a>, and <a title="ISCP Low-Impact Template" href="http://victorfont.com/go/iscp-low-impact-template/" target="_blank">Low</a> availability security objectives</li>
<li><a title="UITS-TT&amp;E-Plan" href="http://victorfont.com/go/uits-tte-plan/" target="_blank">Testing, Training, and Exercise Planning Guide</a></li>
<li>Templates for:
<ul>
<li><a title="Tabletop Exercise Facilitator Guide" href="http://victorfont.com/go/tabletop-exercise-facilitator-guide/" target="_blank">Tabletop Exercise Facilitator Guide</a></li>
<li><a title="Tabletop Exercise Participant Guide" href="http://victorfont.com/go/tabletop-exercise-participant-guide/" target="_blank">Tabletop Exercise Participant Guide</a></li>
<li><a title="Tabletop Exercise After Action Report" href="http://victorfont.com/go/tabletop-exercise-after-action-report/" target="_blank">Tabletop Exercise After Action Report</a></li>
</ul>
</li>
</ul>
<p>Unfortunately, this toolkit remains incomplete. I didn&#8217;t have the opportunity to create the functional exercise guides. Since all of these documents are in the public domain without copyright, you are free to download them by clicking their links above. You may adapt them for your own use or hire me to adapt them for you (*wink*, *wink*).</p>
<p><a title="UConn Part 3: UITS Emergency Operations Plan" href="http://victorfont.com/uconn-part-3-uits-emergency-operations-plan/" rel="prev">&lt;&#8211; UConn Part 3: UITS Emergency Operations Plan</a></p>
<p><a title="UConn Part 5: SDLC BCP/DR Integration" href="http://victorfont.com/sdlc-bcpdr-integration-uconn/">UConn Part 5: BCP/DR Integration Into New Project Process &#8211;&gt;</a></p>
<p><!-- Technorati Tags Start --><br />
Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a><br />
<!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/bcpdr-toolkit-document-library-uconn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UConn Part 3: UITS Emergency Operations Plan</title>
		<link>http://victorfont.com/uconn-part-3-uits-emergency-operations-plan/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=uconn-part-3-uits-emergency-operations-plan</link>
		<comments>http://victorfont.com/uconn-part-3-uits-emergency-operations-plan/#comments</comments>
		<pubDate>Sat, 04 May 2013 14:15:12 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2816</guid>
		<description><![CDATA[Category 3 Hurricane Sandy, October 22, 2012 – October 31, 2012, produced winds as high as 115 mph (185 km/h) and was responsible for 285 deaths. It was the deadliest and most destructive hurricane of the 2012 Atlantic hurricane season, as well as the second-costliest hurricane in United States history. It was also an eye [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_2818" class="wp-caption alignleft" style="width: 310px"><a href="http://victorfont.com/files/2013/05/sandy_goe.jpg" rel="lightbox[2816]"><img class="size-medium wp-image-2818" alt="Emergency Operations Plan: Hurricane Sandy Geostationary Operational Environmental Satellite Image" src="http://victorfont.com/files/2013/05/sandy_goe-300x200.jpg" width="300" height="200" /></a><p class="wp-caption-text">Photo Courtesy of <a href="http://earthobservatory.nasa.gov/NaturalHazards/view.php?id=79553" target="_blank">NASA</a></p></div>
<p>Category 3 Hurricane Sandy, October 22, 2012 – October 31, 2012, produced winds as high as 115 mph (185 km/h) and was responsible for 285 deaths. It was the deadliest and most destructive hurricane of the 2012 Atlantic hurricane season, as well as the second-costliest hurricane in United States history. It was also an eye opening experience for UConn&#8217;s University Information Technology Services (UITS) leadership team.</p>
<h2>Department of Public Safety&#8217;s Emergency Operations Plan</h2>
<p>With over 40,000 students, faculty, and professional staff, the University of Connecticut operates like a small city with its own Department of Public Safety providing Police, Fire, and Emergency Medical Services. The department is led by <a title="Chief Barbara O'Connor takes the oath of office" href="http://today.uconn.edu/blog/2012/04/a-change-of-command/" target="_blank">Chief Barbara O&#8217;Connor</a>, an exemplar of <a title="Servant Leadership" href="http://victorfont.com/servant-leadership/">servant leadership</a>. At any time on campus, there may be as many as 10,000 individuals in resident population. In addition, the Connecticut State Response Framework, developed by the Connecticut Department of Emergency Services and Public Protection (DESPP) and Division of Emergency Management and Homeland Security (DEMHS) in partnership with other CT State Agencies and Non-Governmental Organizations involved in emergency preparedness and response activities, requires the Department of Education to:</p>
<blockquote><p>Coordinate shelter, mass feeding, non-surgical medical care, and temporary housing at state colleges, regional community colleges, and the University of Connecticut depending upon student populations.</p></blockquote>
<p>On Thursday, October 25<sup>th</sup>, the Department of Public Safety invited UITS to participate in a 3pm meeting to detail the planned opening of their Emergency Operations Center (EOC) and direct UConn departments to prepare their own responses accordingly. The key focus areas discussed were human and animal safety and communications. All departments were asked to make certain they provided representation to the EOC for the duration of the operational period.</p>
<p>Public Safety has had a written Emergency Operations Plan in place since around 2009. In the plan, UITS is designated as Emergency Support Function #2 with the following 5 core responsibilities:</p>
<ul>
<li>Coordinates between Telecommunications and Network Services and the EOC for all Campus telecommunications, and network services.</li>
<li>Plans for and establishes alternate and emergency telecommunications and Network and in support of the emergency response operations</li>
<li>Plans for the emergency installation of Campus telecommunications data networking for critical operations and programs</li>
<li>Provides technical support to EOC</li>
<li>Manages the utilization of the Volunteer Ham Radio Services when available</li>
</ul>
<h2>UITS Emergency Operations Plan Genesis</h2>
<p>After the initial EOC briefing, UITS held it&#8217;s own internal briefing to plan our response. The meeting lasted about an hour and a half and we thought we covered everything necessary. I was designated as the EOC liaison and by default, the incident commander. I only learned later that the decision to have me lead the response was vigorously debated overnight by some members of the UITS leadership team because as a contract employee I had no official authority. The person who protested the most actually wanted to be the designated leader. Thankfully, she relented.</p>
<h2>UITS Emergency Operations Plan Response</h2>
<p>Since UITS did not have an IT contingency plan, the technical teams rushed to stand-up critical back-up systems to ensure communications would continue throughout the operational period. Fortunately, Hurricane Sandy did not cause any significant outages on campus and IT escaped without incident. There were power outages to some of the dorms and some dorm windows were blown out in the outlying areas. A construction containment fence was blown over on the main campus and we had a lot debris and tree branches. The most significant incident occurred near the campus in the town of Mansfield for which the UConn Department of Public Safety provides mutual aid response. An eighty-year old woman died as she tried to leave her home for safe shelter. As she was walking down her driveway, a large tree blew over on top of her killing her instantly.</p>
<h2>Emergency Operations Plan After Action Report</h2>
<p>When the operational period ended, I conducted an after action debrief. We <a title="Hurricane Sandy After Action Report" href="http://victorfont.com/go/hurricane-sandy-after-action-report/" target="_blank">documented</a> our incident response, what we did well, and what we need to improve. The experience led me to develop the IT department&#8217;s <a title="UITS Emergency Operations Plan" href="http://victorfont.com/go/uits-emergency-operations-plan/" target="_blank">Emergency Operation Plan</a> (EOP). We had an opportunity to exercise the Emergency Operations Plan for the Blizzard of 2013. We were informed that the EOC was opening for weather monitoring purposes. We treated the incident as one requiring an emergency response and invoked the Emergency Operations Plan. We held our planning session using the Emergency Operations Plan checklists as our guide. Our planning session was complete in 25 minutes, down from the 1 1/2 hours that was required for Hurricane Sandy.</p>
<p>The UConn <a href="http://victorfont.com/go/uits-emergency-operations-plan/" title="UITS Emergency Operations Plan" target="_blank">Emergency Operations Plan</a> and Emergency Operations Plan <a href="http://victorfont.com/go/hurricane-sandy-after-action-report/" title="Hurricane Sandy After Action Report" target="_blank">After Action Report</a> for Hurricane Sandy can be downloaded by clicking their respective links.</p>
<p>Want to laugh? Here&#8217;s something funny that happened during the Hurricane Sandy operational period. The UConn police department monitors Twitter feeds with <a title="Hootsuite Web Site" href="http://hootsuite.com/" target="_blank">Hootsuite</a>. They learn about incidents on campus more rapidly from Twitter than from people calling 911 or using the campus emergency Blue Phone system. As we were watching the Twitter feeds, one student tweeted that he was &#8220;In the woods sitting near a tree hiding from the cops.&#8221; Now if you were a police officer and saw that tweet, what would you do? The officer in charge of the EOC drilled down on the tweet to view the student&#8217;s account. It was clear from the earlier tweets that the student was talking about going into the woods on campus to smoke an illegal substance. The student also had his phone&#8217;s location services turned on. The officer simply had to click on the tweet&#8217;s location and a map opened showing the woods and the tree the student was sitting near. So much for hiding from the cops!</p>
<p><a title="UConn Part 2: BCP/DR Governance Teams" href="http://victorfont.com/uconn-part-2-bcpdr-governance-teams/" rel="prev">&lt;&#8211; UConn Part 2: BCP/DR Governance Teams</a></p>
<p><a title="UConn Part 4: BCP/DR Toolkit &amp; Document Library" href="http://victorfont.com/bcpdr-toolkit-document-library-uconn/" rel="next">UConn Part 4: BCP/DR Toolkit &amp; Document Library &#8211;&gt;</a></p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a></p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/uconn-part-3-uits-emergency-operations-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UConn Part 2: BCP/DR Governance Teams</title>
		<link>http://victorfont.com/uconn-part-2-bcpdr-governance-teams/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=uconn-part-2-bcpdr-governance-teams</link>
		<comments>http://victorfont.com/uconn-part-2-bcpdr-governance-teams/#comments</comments>
		<pubDate>Sat, 04 May 2013 04:01:47 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2788</guid>
		<description><![CDATA[As I began gathering requirements from key stakeholders, one major task that had to be accomplished is to develop a governance structure over the Business Continuity / Disaster Recovery (BCP/DR) program. At UConn, this is easier said than done because of the tenuous history between University Information Technology Services (UITS) and the independent IT organizations [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_2789" class="wp-caption alignleft" style="width: 160px"><a href="http://victorfont.com/files/2013/05/leadership.jpg" rel="lightbox[2788]"><img class="size-thumbnail wp-image-2789" alt="BCP/DR Governance" src="http://victorfont.com/files/2013/05/leadership-150x150.jpg" width="150" height="150" /></a><p class="wp-caption-text">Image by <a href="http://thegoldguys.blogspot.com/" target="_blank">http://thegoldguys.blogspot.com/</a></p></div>
<p>As I began gathering requirements from key stakeholders, one major task that had to be accomplished is to develop a governance structure over the Business Continuity / Disaster Recovery (BCP/DR) program. At UConn, this is easier said than done because of the tenuous history between University Information Technology Services (UITS) and the independent IT organizations that evolved on campus.</p>
<p>Due to high turnover in leadership, a lack of consistent, measurable, repeatable process, and a long history of slow delivery, and failed projects or budget overruns, some of the schools that comprise UConn created their own independent IT organizations. This is just like the situation that existed at Pfizer when I worked there. Pfizer had a central IT organization that consistently failed in its mission. As a result, the five divisions grew their own independent IT organizations. Each had their own processes and none talked to each other. It took a transformational leader to change things. In this role at UConn, I had to be a transformational leader and be able to build two governance teams, work across a matrix organization, and drive change when I didn&#8217;t own or control any of the levers. I was successful and after a short while, volunteers were asking me to participate on the BCP/DR Working Group.</p>
<h2>Steering Committee Governance</h2>
<p>The first governance team I established (reconstituted actually) is the BCP/DR Steering Committee. The BCP/DR steering committee is a governance body that reviews, monitors and prioritizes BCP/DR projects from a cross-functional perspective. In addition to vision and leadership dimensions, the two key concerns of the steering committee are:</p>
<ul>
<li><strong>Alignment</strong>. The committee helps ensure that the BCP/DR strategy is aligned with the University&#8217;s strategic goals.</li>
<li><strong>Ownership</strong>. The business units represented on the steering committee have ultimate ownership over the larger BCP/DR strategic decisions since those decisions will impact their processes.</li>
</ul>
<p>There was an earlier BCP/DR Steering Committee that met one time under the CIO&#8217;s leadership after the news outlets made an issue of the lack of preparedness. I spoke to each of those early participants, reconfirmed their commitment and expanded the team by inviting participants from additional business areas. The team that eventually formed includes:</p>
<div align="center">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td rowspan="2" width="59"><b>De Facto Members:</b></td>
<td colspan="2" valign="top" width="383">Mun Choi, Provost</td>
</tr>
<tr>
<td colspan="2" valign="top" width="383">Nancy Bull, Vice Provost and Chief Information Officer</td>
</tr>
<tr>
<td valign="top" width="59"><b>Chair:</b></td>
<td colspan="2" valign="top" width="383">Victor Font, Business Continuity/Disaster Recovery Coordinator</td>
</tr>
<tr>
<td rowspan="4" width="59"><b>Members:</b></td>
<td width="180">John Saddlemire, VP Student Affairs</td>
<td width="203">Barbara O’Connor, Chief of Public Safety</td>
</tr>
<tr>
<td width="180">Suman Singha, VP Research</td>
<td width="203">Jason Pufahl, Chief Information Security Officer</td>
</tr>
<tr>
<td width="180">Rich Gray, Chief Financial Officer</td>
<td width="203">Rachel Krinsky Rudnick, Assistant Director of Compliance/Privacy</td>
</tr>
<tr>
<td width="180">Deb Cunningham, VP UConn Foundation</td>
<td width="203"></td>
</tr>
</tbody>
</table>
</div>
<h2>BCP/DR Working Team Governance</h2>
<p>The working team is an IT management group focused on implementing the necessary programs and controls, delivering value, and measuring performance. Assembling a working team was slow work at first, but as news spread about what I was doing and the successes that were being achieved, the working team developed a life of it&#8217;s own. By the second monthly meeting, we had several new volunteers and recommendations for other participants from sitting members. The team that came together includes:</p>
<div align="center">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="55"><b>Chair:</b></td>
<td colspan="2" valign="top" width="388">Victor Font, Business Continuity/Disaster Recovery Coordinator</td>
</tr>
<tr>
<td width="55"><b> </b></td>
<td width="185">Stephanie Kernozicky, Student Affairs IT</td>
<td width="203">Andy Rittner, Research</td>
</tr>
<tr>
<td rowspan="5" width="55"><b>Members:</b></td>
<td width="185">Dan Nevelos, UConn Foundation</td>
<td width="203">Tom Hine, Public Safety</td>
</tr>
<tr>
<td width="185">George Assard, School of Engineering</td>
<td width="203">Carrie Gray, IT Internal Audit</td>
</tr>
<tr>
<td width="185">Ryan Kocsondy, UITS Regional Campuses</td>
<td width="203">John Gwinnell, Team Lead SSG Unix</td>
</tr>
<tr>
<td width="185">Robert Swanson, Unix System Administrator, HBL Library</td>
<td width="203">Tim Ruggieri, CLAS</td>
</tr>
<tr>
<td width="185">Jonathan Gill, UITS</td>
<td width="203">Dan Capetta, SAIT</td>
</tr>
</tbody>
</table>
</div>
<p>I don&#8217;t know what&#8217;s going to happen to these governance teams or to the momentum that we built up over the past few months. My contract at UConn ended a couple of months earlier than expected because of budget issues. No one has been named to replace me.</p>
<p><a rel="prev" href="http://victorfont.com/bringing-business-continuity-disaster-recovery-to-uconn/" title="Bringing Business Continuity / Disaster Recovery to UConn">&lt;&#8211; Bringing Business Continuity / Disaster Recovery to UConn</a></p>
<p><a rel="next" href="http://victorfont.com/uconn-part-3-uits-emergency-operations-plan/" title="UConn Part 3: UITS Emergency Operations Plan">UConn Part 3: UITS Emergency Operation Plan &#8211;&gt;</a></p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a></p>
</p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/uconn-part-2-bcpdr-governance-teams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bringing Business Continuity and Disaster Recovery to UConn</title>
		<link>http://victorfont.com/bringing-business-continuity-and-disaster-recovery-to-uconn/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bringing-business-continuity-and-disaster-recovery-to-uconn</link>
		<comments>http://victorfont.com/bringing-business-continuity-and-disaster-recovery-to-uconn/#comments</comments>
		<pubDate>Fri, 03 May 2013 15:43:49 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[BCP/DR]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[SDLC]]></category>
		<category><![CDATA[Business Continuity]]></category>
		<category><![CDATA[business transformation]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[UConn]]></category>
		<category><![CDATA[University of Connecticut]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2775</guid>
		<description><![CDATA[It&#8217;s rare these days for anyone in IT to build a program from the ground up. Yet, I recently had the opportunity to establish a Business Continuity and Disaster Recovery (BCP/DR) program for the University Information Technology Services (UITS) group of the University of Connecticut in Storrs, CT (UConn). UITS is UConn&#8217;s central IT service [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://uconn.edu" target="_blank"><img src="http://victorfont.com/files/2013/05/31-300x200.jpg" alt="Business Continuity and Disaster Recovery at UConn" width="300" height="200" class="alignleft size-medium wp-image-2778" /></a>It&#8217;s rare these days for anyone in IT to build a program from the ground up. Yet, I recently had the opportunity to establish a Business Continuity and Disaster Recovery (BCP/DR) program for the University Information Technology Services (UITS) group of the <a href="http://uconn.edu" target="_blank" >University of Connecticut in Storrs, CT (UConn)</a>. UITS is UConn&#8217;s central IT service provider for over 40,000 students, faculty, and professional staff.</p>
<p>When I arrived at UConn, UITS had barely more than a basic BCP/DR Policy written by the Information Security Office that essentially says:</p>
<blockquote><p>Each University department will maintain a current, written and tested Business Continuity Plan (BCP) that addresses the department’s response to unexpected events that disrupt normal business (for example, fire, vandalism, system failure, and natural disaster).</p></blockquote>
<p>Apart from the policy, there was nothing else except a rudimentary Microsoft Word business continuity template that didn&#8217;t even come close to meeting the University&#8217;s needs. There were no IT contingency plans, no training materials, no instructions, no definitions, no other templates…<em>nothing!</em> How could anyone comply with a policy without the requisite accompanying program?</p>
<p>To complicate matters, UITS had been cited in audits for years for not having a Business Continuity and Disaster Recovery program in place. Around March of 2012, local news outlets picked up on the story about UConn&#8217;s lack of preparedness and the University&#8217;s reputation suffered. The audits also called out the need to hire a full time Business Continuity and Disaster Recovery Coordinator. As of this writing, that job has not yet been posted or filled. To date, the University has not provided a budget for Business Continuity and Disaster Recovery.</p>
<h2>Business Continuity and Disaster Recovery Coordinator</h2>
<p>In my role as Business Continuity and Disaster Recovery Coordinator, I reported into <a href="http://www.linkedin.com/in/jasonpufahl/" title="Jason Pufahl, CISO UConn" target="_blank">Jason Pufahl</a>, Chief Information Security Officer. Jason shared his vision of what needed to be done and I was off to the races. At some point during the first couple of weeks, Jason commented, &#8220;I&#8217;ve never seen anyone hit the ground running so fast. Every time I talk to someone on campus about the need to meet and talk to you, you&#8217;ve already met with them!&#8221; For me it was no big deal. I was just doing my job. But what I accomplished for UConn over the next 6 to 7 months provided a foundation for a Business Continuity and Disaster Recovery program that rivals any other campus based resilience program in the United States. My hope is that they continue making progress in this vital area. What I delivered for UConn includes:</p>
<ul>
<li><a href="http://victorfont.com/uconn-part-2-bcpdr-governance-teams/" title="UConn Part 2: BCP/DR Governance Teams">BCP/DR Governance Teams Established</a></li>
<li><a href="http://victorfont.com/uconn-part-3-uits-emergency-operations-plan/" title="UConn Part 3: UITS Emergency Operations Plan">UITS Emergency Operation Plan</a></li>
<li><a href="http://victorfont.com/bcpdr-toolkit-document-library-uconn/" title="UConn Part 4: BCP/DR Toolkit &#038; Document Library">BCP/DR Toolkit &#038; Document Library</a></li>
<li><a href="http://victorfont.com/sdlc-bcpdr-integration-uconn/" title="UConn Part 5: SDLC BCP/DR Integration">BCP/DR Integration Into New Project Process</a></li>
<li><a href="http://victorfont.com/critical-infrastructure-protection-uconn/" title="UConn Part 6: Critical Infrastructure Protection">Critical Infrastructure Protection (CIP) Site in Chemistry</a></li>
<li><a href="http://victorfont.com/remote-critical-infrastructure-site-uconn/" title="UConn Part 7: Remote Critical Infrastructure Protection Site">Negotiated with University of Connecticut Health Center for CIP Remote Site</a></li>
<li><a href="http://victorfont.com/remote-critical-infrastructure-site-uconn/" title="UConn Part 7: Remote Critical Infrastructure Protection Site">IT Capital Investment Funds Requested</a></li>
<li><a href="http://victorfont.com/continuity-of-operations-training-uconn/" title="UConn Part 8: Continuity of Operations Training Program">Business Partner Training Program Established</a></li>
</ul>
<p>This series of articles discusses the challenges discovered at UConn and describes how those challenges were overcome to build this program. All the documents created for the University of Connecticut are in the public domain and may be downloaded for your own adaptation. </p>
<p><a rel="next" href="http://victorfont.com/uconn-part-2-bcpdr-governance-teams/" title="UConn Part 2: BCP/DR Governance Teams">UConn Part 2: BCP/DR Governance Teams &#8211;></a></p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags: <a href="http://technorati.com/tag/Business%20Continuity" rel="tag">Business Continuity</a>, <a href="http://technorati.com/tag/Disaster%20Recovery" rel="tag">Disaster Recovery</a>, <a href="http://technorati.com/tag/UConn" rel="tag">UConn</a>, <a href="http://technorati.com/tag/University%20of%20Connecticut" rel="tag">University of Connecticut</a>, <a href="http://technorati.com/tag/SDLC" rel="tag">SDLC</a>, <a href="http://technorati.com/tag/Best%20Practice" rel="tag">Best Practice</a>, <a href="http://technorati.com/tag/Business%20Transformation" rel="tag">Business Transformation</a></p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/bringing-business-continuity-and-disaster-recovery-to-uconn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s New in WordPress 3.4?</title>
		<link>http://victorfont.com/whats-new-in-wordpress-3-4/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=whats-new-in-wordpress-3-4</link>
		<comments>http://victorfont.com/whats-new-in-wordpress-3-4/#comments</comments>
		<pubDate>Wed, 13 Jun 2012 20:05:22 +0000</pubDate>
		<dc:creator>Victor Font</dc:creator>
				<category><![CDATA[Computers and Internet]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://victorfont.com/?p=2592</guid>
		<description><![CDATA[WordPress version 3.4 has been released. While many of the improvements are under the hood, there a few you need to know about. Watch the video and feel free to share it with anyone.]]></description>
				<content:encoded><![CDATA[<p><a href="http://victorfont.com/whats-new-in-wordpress-3-4/"><em>Click here to view the embedded video.</em></a></p>
<p>WordPress version 3.4 has been released. While many of the improvements are under the hood, there a few you need to know about. Watch the video and feel free to share it with anyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://victorfont.com/whats-new-in-wordpress-3-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  victorfont.com/feed/ ) in 0.70970 seconds, on May 22nd, 2013 at 5:04 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 22nd, 2013 at 6:04 am UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  victorfont.com/feed/ ) in 0.06414 seconds, on May 22nd, 2013 at 5:27 am UTC. -->