<?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>Miocon Team Blog</title>
	<atom:link href="http://www.gomiocon.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gomiocon.com</link>
	<description>Insight into Technology Solutions</description>
	<lastBuildDate>Mon, 30 Apr 2012 00:35:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configuring SNMP V3 on Cisco ASA and IOS</title>
		<link>http://www.gomiocon.com/2012/04/29/configuring-snmp-v3-on-cisco-asa-and-ios/</link>
		<comments>http://www.gomiocon.com/2012/04/29/configuring-snmp-v3-on-cisco-asa-and-ios/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 00:18:45 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[SNMP]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=733</guid>
		<description><![CDATA[The focus of this article is configuring SNMP V3 on Cisco ASAs with a brief overview of an IOS configuration. This article assumes a basic understanding of SNMP and its operation. The most common and sought after reasoning behind an upgrade to SNMP V3 is security. SNMP versions 1 and 2(c) transmit data between the [...]]]></description>
			<content:encoded><![CDATA[<p>The focus of this article is configuring SNMP V3 on Cisco ASAs with a brief overview of an IOS configuration. This article assumes a basic understanding of SNMP and its operation.</p>
<p>The most common and sought after reasoning behind an upgrade to SNMP V3 is security. SNMP versions 1 and 2(c) transmit data between the SNMP server and the SNMP agent “in the clear”. This makes your infrastructure and corresponding infrastructure devices far more vulnerable to attack and or misuse. Weak SNMP provides attackers with low hanging fruit they sometimes need for improved attack vectors.</p>
<p>SNMP V3’s focus was to improve this security flaw. SNMP V3 adds authentication and privacy options to secure its communication between SNMP servers and SNMP agents.</p>
<p><span style="text-decoration: underline;">SNMP V3 Security Models</span></p>
<p>The authentication (auth) and privacy (priv) options are grouped into security models.</p>
<ul>
<li>NoAuthPriv – no authentication and no privacy</li>
<li>AuthNoPriv – authentication and no privacy</li>
<li>AuthPriv – you guessed it – authentication and privacy</li>
</ul>
<p><span style="text-decoration: underline;">SNMP Groups</span></p>
<p>SNMP groups provide an access control policy to which users are added. The user will inherit the security model of the group. If the SNMP group “SEC3” has the AuthPriv security model, users assigned to it will inherit the AuthPriv security model.</p>
<p><span style="text-decoration: underline;">SNMP Users</span></p>
<p>SNMP users are assigned a username, a group to which they belong, authentication password, encryption password, and associated algorithms to use.</p>
<p>Authentication algorithms are MD5 and SHA<br />
Encryption algorithms are DES, 3DES, and AES (128,192,256)</p>
<p><span style="text-decoration: underline;">SNMP Host</span></p>
<p>An SNMP host is the server to which SNMP notifications and traps are sent. SNMP V3 hosts require the SNMP server IP address and SNMP username. Each SNMP host can only have one username associated with it. The user credentials on the NMS (CiscoWorks, Solarwinds, etc.) must match the SNMP username credentials.</p>
<p>Configuring SNMP V3:<br />
Note – the brackets &lt;&gt; are used to indicate a variable you assign a name to. I used these brackets to emphasize these important variables.</p>
<ol>
<li>Enable SNMP<br />
<strong>snmp-server enable</strong></li>
<li>Enable the SNMP traps (this will change depending on environment and business requirements). The following example enables all but this could be limited to a subset of traps.<br />
<strong>snmp-server enable traps all</strong></li>
<li>Create the SNMP group<br />
Note the following meanings:<br />
auth indicates authention only<br />
noauth indicates no authentication or encryption<br />
priv indicates encryption and authentication<br />
<strong>snmp-server group  &lt;GROUPNAME&gt; v3 {auth | noauth | priv}</strong></li>
<li>Create the SNMP user<br />
<strong>snmp-server user &lt;USERNAME&gt; &lt;GROUPNAME&gt; v3 encrypted auth md5 &lt;AUTHENTICATION-PASSWORD&gt; priv AES 128 &lt;ENCRYPTION-KEY&gt;</strong></li>
<li>Create the SNMP Server host<br />
<strong>snmp-server host &lt;INTERFACE-NAME&gt; &lt;HOSTNAME&gt; version 3 &lt;USERNAME&gt;</strong></li>
</ol>
<p><span style="text-decoration: underline;">Full Configuration Example for the Cisco ASA (Version 8.4)</span></p>
<p>snmp-server group SEC3 v3 priv</p>
<p>snmp-server user SNMPUSER3 SEC3GROUP v3 encrypted auth md5 thisshouldbeastrongpassword priv aes 128 thisshouldbeastrongencryptionkey</p>
<p>snmp-server host mgmt 10.20.30.10 version 3 SNMPUSER3</p>
<p>snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart</p>
<p>snmp-server enable traps ipsec start stop</p>
<p>snmp-server enable traps remote-access session-threshold-exceeded</p>
<p><span style="text-decoration: underline;">Full Configuration Example for the Cisco IOS</span></p>
<p>snmp-server view SNMPMGR iso included</p>
<p>snmp-server group SEC3GROUP v3 priv read SNMPMGR write SNMPMGR notify SNMPMGR</p>
<p>snmp-server user SNMPUSER3 SEC3GROUP v3 auth md5 thisshouldbeastrongpassword priv aes 128 thisshouldbeastrongencryptionkey</p>
<p>snmp-server enable traps config</p>
<p><strong>Note</strong> – in IOS you won’t see the following line:<br />
snmp-server user SNMPUSER3 SEC3GROUP v3 auth md5 thisshouldbeastrongpassword priv aes 128 thisshouldbeastrongencryptionkey</p>
<p>IOS hides the authentication password and encryption key from the “show run” and “show startup”.</p>
<p><span style="text-decoration: underline;">More Information</span></p>
<p>Cisco Configuration Guide for ASA 8.4 and 8.6</p>
<p><a href="http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/monitor_snmp.html#wp1239780" target="_blank">http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/monitor_snmp.html#wp1239780</a></p>
<p>Cisco Configuration Guide for ASA 8.4 and 8.6 PDF</p>
<p><a href="http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/monitor_snmp.pdf" target="_blank">http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/monitor_snmp.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2012/04/29/configuring-snmp-v3-on-cisco-asa-and-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Communication From Your iPad, iPhone, or iTouch using Cisco AnyConnect Secure Mobility Client</title>
		<link>http://www.gomiocon.com/2011/10/30/secure-communication-from-your-ipad-iphone-or-itouch-using-cisco-anyconnect-secure-mobility-client/</link>
		<comments>http://www.gomiocon.com/2011/10/30/secure-communication-from-your-ipad-iphone-or-itouch-using-cisco-anyconnect-secure-mobility-client/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 19:45:30 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Decisions for Business]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTouch]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[anyconnect]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[iPad2]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[secure]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=706</guid>
		<description><![CDATA[The Cisco AnyConnect Secure Mobility Client provides an excellent solution for connecting your iPad, iPhone, or iTouch to your critical business resources. Staying productive is a key ingredient to having a business edge on your competition. If you already enjoy your “i” product for personal use Cisco AnyConnect now provides justification for all those gadgets. Now [...]]]></description>
			<content:encoded><![CDATA[<p>The Cisco AnyConnect Secure Mobility Client provides an excellent solution for connecting your iPad, iPhone, or iTouch to your critical business resources. Staying productive is a key ingredient to having a business edge on your competition. If you already enjoy your “i” product for personal use Cisco AnyConnect now provides justification for all those gadgets. Now your iPad can really be for work and not trying to beat your friends high score in Angry Birds! It gets hard to justify Angry Birds as strategic planning learning credits.</p>
<p>Using SSLVPN technology, Cisco AnyConnect establishes a secure connection to your ASA5500 series firewall with ease. The network administrator bears the brunt of most of the work while end users just download Cisco AnyConnect from the Apple AppStore and configure a few settings.</p>
<p>Let’s get started with the necessary requirements.</p>
<p><strong>SYSTEM REQUIREMENTS:</strong></p>
<p>• AnyConnect is designed specifically for Apple iOS 4 (4.1+) (And now version 5)</p>
<p>• Apple iPhone 3G, 3GS, and 4</p>
<p>• Apple iPod touch (second, third, and fourth generations)</p>
<p>• Apple iPad support available after Apple iOS 4.2 &#8211; November 2010 release</p>
<p>I have confirmed Cisco AnyConnect works well on iPad2 and iTouch running the new iOS version 5.</p>
<p>Connectivity has been tested and verified with Cisco ASA5500 Series 8.3 and 8.4 code using RADIUS authentication.</p>
<p>You must have AnyConnect for Mobile licenses installed on the Cisco ASA5500 series firewall for each active mobile node. Note that if you are running ASA failover the license propagates to the failover unit. Here’s an example of the “show version” on a Cisco ASA5510. Note the <strong>bolded</strong> line.</p>
<p>Licensed features for this platform:</p>
<p>Maximum Physical Interfaces    : Unlimited      perpetual<br />
Maximum VLANs                  : 100            perpetual<br />
Inside Hosts                   : Unlimited      perpetual<br />
Failover                       : Active/Active  perpetual<br />
VPN-DES                        : Enabled        perpetual<br />
VPN-3DES-AES                   : Enabled        perpetual<br />
Security Contexts              : 2              perpetual<br />
GTP/GPRS                       : Disabled       perpetual<br />
SSL VPN Peers                  : 2              perpetual<br />
Total VPN Peers                : 250            perpetual<br />
Shared License                 : Disabled       perpetual<br />
<strong>AnyConnect for Mobile          : Enabled        perpetual<br />
</strong>AnyConnect for Cisco VPN Phone : Disabled       perpetual<br />
AnyConnect Essentials          : Disabled       perpetual<br />
Advanced Endpoint Assessment   : Disabled       perpetual<br />
UC Phone Proxy Sessions        : 2              perpetual<br />
Total UC Proxy Sessions        : 2              perpetual<br />
Botnet Traffic Filter          : Disabled       perpetual<br />
Intercompany Media Engine      : Disabled       perpetual</p>
<p>This platform has an ASA 5510 Security Plus license.</p>
<p><strong>INSTALLATION AND CONFIGURATION</strong></p>
<p>Go to the AppStore and search for “cisco anyconnect”. For example, from the iTunes store I perform a search for “cisco anyconnect”</p>
<p>You should find the following options: My screenshots show DOWNLOADED since I&#8217;ve already downloaded them. If you haven&#8217;t downloaded them they will display FREE.</p>
<p><img class="alignnone" title="AnyConnect AppStore" src="http://www.gomiocon.com/wp-content/themes/corporate/images/ipic1.png" alt="" width="260" height="311" /></p>
<p>Download and install the iPhone version for your iPhone or iTouch. Download and install the iPad version for your iPad.</p>
<p>Once you have the AnyConnect app installed ensure you also have the following:</p>
<ul>
<li>3G/4G or WiFi access to the Internet. The AnyConnect Secure Mobility Client runs over an SSL connection to your Cisco ASA5500 series security appliance.</li>
<li>Server URL or IP address (portal.yourdomain.com for example)</li>
<li>Username and password configured for remote access</li>
</ul>
<p>You can now begin the configuration process.</p>
<p>Tap the AnyConnect Icon from your touch screen.</p>
<p><img class="alignnone" title="AnyConnect Icon" src="http://www.gomiocon.com/wp-content/themes/corporate/images/ipic8.png" alt="" width="80" height="78" /></p>
<p>Tap “OK” When asked to enable this software.</p>
<p><img class="alignnone" title="AnyConnect Icon" src="http://www.gomiocon.com/wp-content/themes/corporate/images/ipic2.png" alt="" width="304" height="151" /></p>
<p>Tap “Add VPN Connection” to create a new connection. The following screen will open.</p>
<p><img class="alignnone" title="Add VPN connection" src="http://www.gomiocon.com/wp-content/themes/corporate/images/ipic4.png" alt="" width="298" height="229" /></p>
<p>Enter a description. For example “My Work Network”</p>
<p>Enter a server address. For example “portal.yourdomain.com”.</p>
<p>Select if you want Network Roaming ON or OFF. Choosing ON tells the AnyConnect client to try to establish a connection until it succeeds. I personally find this “always on” feature very helpful if I’m roaming from a 3G connection to a WiFi or the 3G connection is lost for a moment.</p>
<p>Select if you want Use Certificates ON or OFF. For the purpose of this article we will use OFF since we are using RADIUS only. Certificates do offer improved security but also require a more complex configuration.</p>
<p>When done tap Save.</p>
<p>Now it’s time to launch the connection. To do this swipe the AnyConnect VPN from OFF to ON. This will automatically launch your new connection you created.</p>
<p><img class="alignnone" title="AnyConnect On" src="http://www.gomiocon.com/wp-content/themes/corporate/images/ipic5.png" alt="" width="310" height="156" /></p>
<p>Once connected, the AnyConnect App will show you statistics about your connection. You can close the screen and launch your network application(s).</p>
<p><img class="alignnone" title="AnyConnect Stats" src="http://www.gomiocon.com/wp-content/themes/corporate/images/ipic6.png" alt="" width="306" height="488" /></p>
<p>A very common use is Windows Remote Desktop connectivity to servers and or workstations. I use Jaadu or Jump Desktop. Both work well. With the plethora of apps in the AppStore you are bound to find one that meets your needs. The Cisco AnyConnect Secure Mobility Client definitely does its part to securely get you connected.</p>
<p><img class="alignnone" title="Jaadu and Jump Desktop" src="http://www.gomiocon.com/wp-content/themes/corporate/images/ipic7.png" alt="" width="496" height="135" /></p>
<p>If you need assistance setting up a Cisco Secure Mobility Solution for your business contact Miocon. We have over 15 years of Cisco firewall and security experience.</p>
<div><strong>MORE INFORMATION:</strong></div>
<div><strong> </strong></div>
<div><strong> </strong>Cisco AnyConnect Secure Mobility Client:<br />
<a href="http://www.cisco.com/en/US/products/ps10884/index.html" target="_blank">http://www.cisco.com/en/US/products/ps10884/index.html</a></div>
<p>Cisco AnyConnect Secure Mobility Solution:<br />
<a href="http://www.cisco.com/en/US/netsol/ns1049/index.html" target="_blank">http://www.cisco.com/en/US/netsol/ns1049/index.html</a></p>
<p>iPad User Guide for Cisco AnyConnect Secure Mobility Client:<br />
<a href="http://www.cisco.com/en/US/docs/security/vpn_client/anyconnect/anyconnect24/ios4.2-user/guide/ipad-ugac-ios4.2.html" target="_blank">http://www.cisco.com/en/US/docs/security/vpn_client/anyconnect/anyconnect24/ios4.2-user/guide/ipad-ugac-ios4.2.html</a></p>
<p>Jaadu RDP:<br />
<a href="http://www.jaadurdp.com/" target="_blank">http://www.jaadurdp.com/</a></p>
<p>Jump Desktop:<br />
<a href="http://jumpdesktop.com/" target="_blank">http://jumpdesktop.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/10/30/secure-communication-from-your-ipad-iphone-or-itouch-using-cisco-anyconnect-secure-mobility-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Webmin on Red Hat Enterprise Linux 6</title>
		<link>http://www.gomiocon.com/2011/10/16/installing-webmin-on-red-hat-enterprise-linux-6/</link>
		<comments>http://www.gomiocon.com/2011/10/16/installing-webmin-on-red-hat-enterprise-linux-6/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 21:49:37 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[Webmin]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=697</guid>
		<description><![CDATA[If you are using the RPM version of Webmin, first download the file from the downloads page at http://www.webmin.com, or run the command: wget http://prdownloads.sourceforge.net/webadmin/webmin-1.570-1.noarch.rpm Then run the command : rpm -U webmin-1.570-1.noarch.rpm The rest of the install will be done automatically. The administration username is set to root and the password to your current [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gomiocon.com/wp-content/uploads/2011/10/webmin.jpg"></a>If you are using the RPM version of Webmin, first download the file from the downloads page at <a href="http://www.webmin.com" target="_blank">http://www.webmin.com</a>, or run the command:</p>
<p>wget http://prdownloads.sourceforge.net/webadmin/webmin-1.570-1.noarch.rpm</p>
<p>Then run the command :</p>
<p>rpm -U webmin-1.570-1.noarch.rpm</p>
<p>The rest of the install will be done automatically. The administration username is set to root and the password to your current root password. You should now be able to login to Webmin at the URL http://&lt;YOUR-IP-OR-HOSTNAME&gt;:10000.</p>
<p>You will more than likely need to open up port 10000 so modify iptables with the following:</p>
<p><tt>-A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT</tt></p>
<p><tt>I just use vi since I’m used to it but you can use your editor of choice. </tt></p>
<p><tt>vi /etc/sysconfig/iptables</tt></p>
<p><tt>Typically SSH is open so I just insert the access list entry below it.</tt></p>
<p><tt><strong>Example of iptables (very basic):</strong></tt></p>
<p><tt># Firewall configuration written by system-config-firewall<br />
# Manual customization of this file is not recommended.<br />
*filter<br />
:INPUT ACCEPT [0:0]<br />
:FORWARD ACCEPT [0:0]<br />
:OUTPUT ACCEPT [0:0]<br />
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT<br />
-A INPUT -p icmp -j ACCEPT<br />
-A INPUT -i lo -j ACCEPT<br />
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT<br />
-A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT<br />
-A INPUT -j REJECT --reject-with icmp-host-prohibited<br />
-A FORWARD -j REJECT --reject-with icmp-host-prohibited<br />
COMMIT</tt></p>
<p><tt>Restart the iptables (firewall) services with the following command:</tt></p>
<p><tt>/etc/init.d/iptables restart</tt></p>
<p><tt><strong>Example Output</strong></tt></p>
<p><tt># /etc/init.d/iptables restart</tt></p>
<p><tt>iptables: Flushing firewall rules:                         [  OK  ]<br />
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]<br />
iptables: Unloading modules:                               [  OK  ]<br />
iptables: Applying firewall rules:                         [  OK  ]</tt></p>
<p><tt>#</tt></p>
<p>If you launch a connection to the URL http://&lt;YOUR-IP-OR-HOSTNAME&gt;:10000 you should see the Webmin login page. Enter the default root username and root credentials.</p>
<p><strong>Additional Information:</strong></p>
<p>Webmin website<br />
<a href="http://www.webmin.com/">http://www.webmin.com</a></p>
<p>iptables website:<br />
<a href="http://www.netfilter.org/">http://www.netfilter.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/10/16/installing-webmin-on-red-hat-enterprise-linux-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install Red Hat Enterprise Linux 6.1 in Microsoft 2008 R2 Hyper-V</title>
		<link>http://www.gomiocon.com/2011/09/30/how-to-install-red-hat-enterprise-linux-6-1-in-microsoft-2008-r2-hyper-v/</link>
		<comments>http://www.gomiocon.com/2011/09/30/how-to-install-red-hat-enterprise-linux-6-1-in-microsoft-2008-r2-hyper-v/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 19:28:24 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=685</guid>
		<description><![CDATA[The following tutorial provides a road map to install and configure Red Hat Enterprise Linux 6.1 in Microsoft 2008 R2 Hyper-V. This tutorial assumes you have an understanding of Hyper-V and Red Hat operating systems. Create Virtual Machine in Microsoft Hyper-V Select your Virtual Host. Right click it then click New then Virtual Machine…. Click [...]]]></description>
			<content:encoded><![CDATA[<p>The following tutorial provides a road map to install and configure Red Hat Enterprise Linux 6.1 in Microsoft 2008 R2 Hyper-V. This tutorial assumes you have an understanding of Hyper-V and Red Hat operating systems.</p>
<p><strong>Create Virtual Machine in Microsoft Hyper-V</strong></p>
<ol>
<li>Select your Virtual Host. Right click it then click New then Virtual Machine….</li>
<li>Click Next at the Before you Begin (if you haven’t disabled this screen).</li>
<li>Create a Name for your RHEL virtual machine and choose a location to store it.</li>
<li>Select the memory allocation.</li>
<li>Select a network connection that provides access to the Internet. Note that the Network Adapter will not work until after the Linux Integration Components are installed. As mentioned shortly you will get network access through the Legacy Network Adapter.</li>
<li>Name the VHD file, confirm the location, and size.</li>
<li>Select install an operating system from a boot CD/DVD and choose image file. (assuming install from ISO)</li>
<li>Finish</li>
<li>Upon virtual machine completion and before powering on the virtual machine to begin the install go into the virtual machine settings and select “Add Hardware” then select “Legacy Network Adapter”. Make sure to choose your connected network that has Internet access. You will need this for Red Hat Network (RHN) registration and yum updates should you decide to update your system. This can be removed later after you confirm your Network Adapter is working.</li>
</ol>
<p><strong>Red Hat Enterprise Linux 6.1 Installation</strong></p>
<ol>
<li>Connect to the console of the virtual machine you just created then power it on.</li>
<li>Press Enter to select “Install or upgrade an existing system”.</li>
<li>Choose whether or not you want to perform a media check. It’s always best to test to ensure your ISO or media source isn’t corrupt. I didn’t look into this at all but sometimes after the media check is performed you have to restart the install process. Seemed the restart was quicker than investigating why.</li>
<li>At the Splash screen for RHEL press Enter for “Next”.</li>
<li>Select your Language then press Enter for “Next”.</li>
<li>Select your keyboard then press Enter for “Next”.</li>
<li>Select the Basic Storage Devices then press Enter for “Next”.</li>
<li>When you receive the Storage Device Warning select “Yes, Discard any data” then press Enter. This assumes a new virtual machine with no data on it.</li>
<li>Assign a host name to this RHEL server. At this screen make sure to select “Configure Network” since the Legacy Network Adapter will be used for network access. Select “Edit” to modify System eth0. Ensure the connection is enabled so it’s active at boot. Do this by selecting “Connect Automatically”. By default IPv4 DHCP is enabled. Apply your changes, select “Close”, then press Enter to proceed.</li>
<li>Select the time zone then press Enter for “Next”.</li>
<li>Set the root password then press Enter for “Next”.</li>
<li>Select “Use All Space” then press Enter for “Next”.</li>
<li>Select Write changes to disk.</li>
<li>Choose Basic Server installation then tab down to “Customize Now”. We will want to customize the software installed. Press Enter for “Next”.</li>
<li>Select Desktops in the left pane. Then in the right pane select Desktop and Graphical Administration Tools.</li>
<li>Reboot at the end of installation.</li>
</ol>
<p><strong>Post Installation Tasks</strong></p>
<ol>
<li>At bootup you’ll be prompted with a series of tools you can execute to simplify post-installation settings. Select RHN Register. Registering your RHEL server will allow you to get critical updates, etc. Select Next. Enter your RHN credentials then Next. At system profile if everything looks good then Next. Next at Packages. Next to Send Profile. At Revew system select OK then Finish.</li>
<li>Select Quit at the Tools menu.</li>
<li>After a few moments you will find yourself at the RHEL login.</li>
</ol>
<p><strong>Installing Linux Integration Components v3.1</strong></p>
<ol>
<li>Now it’s time to install the Linux Integrated Components from Microsoft. You can download them here <a href="http://www.microsoft.com/download/en/details.aspx?id=26837" target="_blank">http://www.microsoft.com/download/en/details.aspx?id=26837</a>. You will need version 3.1 since previous versions will not work with the kernel in RHEL 6. Download this to a location you can access in the next step.</li>
<li>From your RHEL virtual machine console in Hyper-V select File then Settings. Select the DVD Drive under IDE Controller 1 then select the “Linux IC v3.0.iso” file you just downloaded. Click OK.</li>
<li>Run the following commands from the RHEL command line now that the ISO is mounted in Hyper-V:
<ol>
<li>mount /dev/cdrom /media</li>
</ol>
</li>
</ol>
<p style="padding-left: 60px;"><strong>For 64-bit version of RHEL run these two commands<br />
</strong><br />
rpm –ivh /media/x86_64/kmod-microsoft-hyper-v-rhel6-60.1.x86_64.rpm<br />
rpm –ivh /media/x86_64/microsoft-hyper-v-rhel6-60.1.x86_64.rpm<br />
reboot</p>
<p style="padding-left: 60px;"><strong>For 32-bit versions of RHEL run these two commands<br />
</strong><br />
rpm –ivh /media/x86/kmod-microsoft-hyper-v-rhel6-60.1.i686.rpm<br />
rpm –ivh /media/x86/microsoft-hyper-v-rhel6-60.1.i686.rpm<br />
reboot</p>
<p><strong>Special Notes</strong></p>
<p>You may notice that you can no longer mount a cdrom after running the RPM installs. There’s some fine text in the Linux Integration Services v3 Read Me.pdf file that can be downloaded here &#8211; <a href="http://www.microsoft.com/download/en/details.aspx?id=26837" target="_blank">http://www.microsoft.com/download/en/details.aspx?id=26837</a></p>
<p>To mount an ISO file in the virtual machine, the following command must be run before executing the mount command:</p>
<p># insmod /lib/modules/$(uname -r)/kernel/drivers/ata/ata_piix.ko</p>
<p>Alternatively, copy the ISO file into the virtual machine and mount it using the -o loop option.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/09/30/how-to-install-red-hat-enterprise-linux-6-1-in-microsoft-2008-r2-hyper-v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improving Communication with Blackberry Messenger Groups</title>
		<link>http://www.gomiocon.com/2011/09/24/improving-communication-with-blackberry-messenger-groups/</link>
		<comments>http://www.gomiocon.com/2011/09/24/improving-communication-with-blackberry-messenger-groups/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 02:40:49 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Blackberry Messenger Groups]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=675</guid>
		<description><![CDATA[Blackberry Messenger Groups provide a powerful, but often overlooked, method of communication. Of all the Blackberry applications Blackberry Messenger has always been one of my favorites. Blackberry Messenger provides excellent chat capabilities between contacts and has always been very reliable. Unfortunately many organizations never use one of Blackberry Messenger’s most powerful features – Blackberry Groups. [...]]]></description>
			<content:encoded><![CDATA[<p>Blackberry Messenger Groups provide a powerful, but often overlooked, method of communication. Of all the Blackberry applications Blackberry Messenger has always been one of my favorites. Blackberry Messenger provides excellent chat capabilities between contacts and has always been very reliable. Unfortunately many organizations never use one of Blackberry Messenger’s most powerful features – Blackberry Groups. Here’s a brief overview of Blackberry Messenger groups as provided by Blackberry support documents:</p>
<blockquote>
<p style="text-align: left;"><em>You can use the BlackBerry® Groups feature of BlackBerry® Messenger to create or join a group of people that you want to stay connected with, such as family, friends, or co-workers. </em></p>
<p style="text-align: left;"><em>You can share pictures, lists, and appointments with the members of your group. You can also chat with members and comment on shared items. A group can contain up to 30 members and can include members who are not part of your BlackBerry Messenger contacts.</em></p>
<p style="text-align: left;"><em>The groups that you belong to are listed on the contact list screen of BlackBerry Messenger. You can also add a shortcut icon for the group to the Home screen of your BlackBerry device so that you can quickly access the group.</em></p>
<p style="text-align: left;"><em>Depending on your wireless service provider or organization, this feature might not be supported.</em></p>
</blockquote>
<p style="text-align: left;">Setting up groups is easy and any time you need to collaborate with multiple team members I highly recommend setting one (or more) up.</p>
<p><strong>Here’s how:</strong></p>
<p>1.            On the Home screen or in the Instant Messaging folder, click the BBM icon.</p>
<p>2.            On the contact list screen, press the Menu key.</p>
<p>3.            Click Create New Group.</p>
<p>4.            Name the group appropriately (Spaces are accepted)</p>
<p>5.            Type the group description</p>
<p>6.            Click Create Group.</p>
<p>Instructions for inviting contacts to join your group are available from the <a title="BlackBerry Help Center" href="http://docs.blackberry.com/en/smartphone_users/deliverables/13195/Invite_a_BBM_contact_to_join_a_group_827858_11.jsp" target="_blank">BlackBerry Help Center</a>.</p>
<p><strong>Common Uses:</strong></p>
<p>Here are some examples of the many ways to use groups:</p>
<ul>
<li>Emergency Response teams</li>
<li>Information Technology support teams</li>
<li>Sales teams</li>
<li>Small businesses (all employees)</li>
<li>Field Technicians</li>
<li>Engineering groups</li>
<li>Business units or departments</li>
<li>Collaboration groups</li>
</ul>
<p><strong>More Information:</strong></p>
<p>Blackberry Group Basics<br />
<a href="http://docs.blackberry.com/en/smartphone_users/deliverables/13195/Group_basics_title_841303_11.jsp" target="_blank">http://docs.blackberry.com/en/smartphone_users/deliverables/13195/Group_basics_title_841303_11.jsp</a></p>
<p>Managing Group Members<br />
<a href="http://docs.blackberry.com/en/smartphone_users/deliverables/13195/Members_title_881182_11.jsp" target="_blank">http://docs.blackberry.com/en/smartphone_users/deliverables/13195/Members_title_881182_11.jsp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/09/24/improving-communication-with-blackberry-messenger-groups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How I Value Technical Certifications</title>
		<link>http://www.gomiocon.com/2011/09/18/how-i-value-technical-certifications/</link>
		<comments>http://www.gomiocon.com/2011/09/18/how-i-value-technical-certifications/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 22:06:03 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Decisions for Business]]></category>
		<category><![CDATA[Certifications]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=668</guid>
		<description><![CDATA[As an engineer I had to evaluate whether or not a technical certification would be of value to me. Much like buying into an investment I had to ask myself if I’d see a return. As the owner of a technology company I now have to evaluate whether or not an individual would be of [...]]]></description>
			<content:encoded><![CDATA[<p>As an engineer I had to evaluate whether or not a technical certification would be of value to me. Much like buying into an investment I had to ask myself if I’d see a return. As the owner of a technology company I now have to evaluate whether or not an individual would be of value to me and the team. An individual in this case must be able to produce a return just like an investment. For after all, they are an investment.  This leads me to the crux of this article. How do I value technical certifications as both an engineer and a business owner?</p>
<p>*When evaluating an individual there are many things to observe. For this article I’m going to skip over the long list a human resources expert would give you and focus on certifications only.</p>
<p>Before delving into the value of certifications I’d like to first offer up my opinion on the current state of technical certifications. Over the past 15 years technical certification tests haven’t changed much. Candidates report to a testing center and after proving their identity sit at a computer and take a 60-100 question test. The biggest advancement in 15 years is the use of “simulators” within the test engine. Simulators offer up a much more hands-on testing of skills compared to the very old style multiple choice questions. The biggest problem with certification exams like this is the massive explosion of testing material geared towards simply memorizing all the answers. Candidates can purchase their particular test and memorize all the answers. It’s important to keep in mind that these methods aren’t supported or sponsored by the vendor responsible for the certifications but rather originate from oversees testing centers in Pakistan, etc. who basically record all the test engine output, package it in a usable format, and then sell them for $60-125 per test. Ultimately this leads to what’s called “papering” a certification test. Papering a test simply means you passed the certification without actually obtaining the knowledge to have passed “legitimately”.</p>
<p>Although the above methodology is questionable I will say that the same resources do come in handy for candidates wanting to confirm they truly know the material. I personally wish more vendors would create top-level certifications similar to the Cisco CCIE and Juniper equivalent. These two top-level certifications provide a proctored lab exam where candidates must prove they know material. Given their own network equipment and a lab book with design requirements candidates must design a solution according to specifications set forth in the lab book. There is no way to “paper” a test like this and it does prove a candidate knows what they are doing as it pertains to a certification checklist. It does not however prove that the engineer is “good” at what they do. It only proves they know what they are doing. Being “good” at what they do will always be left to personal qualities, references, experience, and the interview process.</p>
<p>My point for explaining this is as follows. A certification will only be as good as the candidate who holds it. I know CCNA-level engineers who are far smarter and knowledgeable than a CCNP. I know some people who have no Cisco certifications but they could hang with Cisco CCIEs. So after I’ve just said all this you may be wondering how I value a certification if the certification is only as good as the beholder.</p>
<p>I value certifications as more of a personality gauge than I do a technical gauge. An individual with legitimate (not paper) certifications prove several things to me:</p>
<ul>
<li>The candidate has a strong desire to prove what they know</li>
<li>They seek recognition</li>
<li>They value achievement milestones</li>
<li>They value structured learning</li>
<li>They are taking an active effort to improve themselves</li>
<li>They want to grow as a person and engineer</li>
</ul>
<p>When I receive a resume from a candidate with 15 years of experience and no certifications it’s a big negative and very often the resume goes straight to the trash. It’s not to say they aren’t a good engineer but they often end up lacking one or more of the above qualities. All too often I hear them complain that “I don’t need them”. This is code for “I’m too good for certifications”, or “I’m afraid I could fail at certifications when somebody who knows half as much has them”. Some candidates might have worked in the private sector and never had a “need” for them. One could argue they lack the qualities mentioned above as well. As a mentor I always suggest the achievement of certifications on any candidates behalf.</p>
<p>If you come across a candidate with no certifications always ask why they don’t have them. Sometimes life just happens and candidates don’t have the money for it or they have a family and kids. Obstacles like this make it very difficult to work on certifications. But even with these obstacles certifications are obtainable. Just look at what single moms do in a day and ask yourself if you don’t have the time.  </p>
<p>In conclusion I’ll say that there are a lot of really good people without certifications and there are a lot of less talented people with lots of certifications. But, when it comes time to evaluate between two good candidates the one with the certifications most often has the edge. Good personal qualities are a lot harder to find in a candidate than technical skills. So for anybody out there looking for a job and growing your career my advice to you is to get those certs. Remember when you were told to eat all your food because people were starving in some foreign land? Well now you have people in foreign lands starving for your job and it could be you looking for food.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/09/18/how-i-value-technical-certifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well Worth the Wait &#8211; Blackberry Bold 9900 Review</title>
		<link>http://www.gomiocon.com/2011/09/05/well-worth-the-wait-blackberry-bold-9900-review/</link>
		<comments>http://www.gomiocon.com/2011/09/05/well-worth-the-wait-blackberry-bold-9900-review/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 21:31:38 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[blackberry bold 9900]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=660</guid>
		<description><![CDATA[The long awaited Blackberry Bold 9900 (T-Mobile) was well worth the wait. Before I go into a non-technical review I’m going to give you some background on what I expect from a phone and how I use it. As the owner of a technology company I need reliable service and rock solid performance. On top [...]]]></description>
			<content:encoded><![CDATA[<p>The long awaited Blackberry Bold 9900 (T-Mobile) was well worth the wait. Before I go into a non-technical review I’m going to give you some background on what I expect from a phone and how I use it. As the owner of a technology company I need reliable service and rock solid performance. On top of that I need access to secure business communications. Cool gizmos and gadgets are optional but not required. I use the phone extensively throughout the day and I put a phone through lots of heavy use. The Blackberry Bold delivers on all of the above.</p>
<p>So let’s start with the bad and wrap up with the good. Note that I’m not going to delve into technical review details. This is all about usability from an end user (me) perspective.</p>
<p><strong>The Bad</strong></p>
<p>The Blackberry Bold 9900 has some quirky default configurations. First, “auto answer from holster” is enabled. I don’t know how many people want to answer their phone blindly but I doubt there are many. I can’t find a single person who doesn’t want to see who is calling them before answering these days. Luckily this is easily disabled by going to Options – Call Management – In-call Settings. Change “Auto Answer Calls” to Never.</p>
<p>The depth of applications isn’t as deep as the iPhone or Android – but it’s getting much better. However, for business applications I don’t have any problems finding applications for Blackberry that you won’t find for Android and iPhone, such as great encryption software. Once again, if looking for games go get a phone designed for gaming.</p>
<p>Here’s my biggest gripe. And this gripe isn’t even related to actual phone use but rather the charging design. All my previous Bolds could be holstered and have the charger plugged into the wall. The 9900 has to be unholstered or slightly pulled out of the holster to charge it. This is a very annoying quirk because your Blackberry and its holster are made for each other (you Blackberry users know what I mean) and taking them apart to charge them just isn’t a natural thing.</p>
<p><strong>The Good</strong></p>
<p>The 9900 boots so much faster than previous versions. I can remember waiting over 5 minutes for the Bold to boot and it would drive me crazy. Now it boots in less than a minute and it’s noticeably much faster.</p>
<p>The balance between touch screen and keyboard is perfect. My fingers flow between either as I learn which method is faster. The flexibility to choose between either is actually quite usable. Prior to this I thought it seemed overly redundant but after using it for a few weeks it’s a well-balanced feature. This phone deserves an accolade just for the keyboard itself. When typing on this keyboard I can type paragraphs at a time with ease without having to use abbreviated words over and over. This is great when you need to compose a professional email without chopped up, misspelled words. Hands down the built in keyboard is far better than any touchscreen keyboard on the Android or iPhone. The disadvantage to such an easy to use and reliable keyboard however, is you sacrifice screen real estate. The screen real estate is smaller than an iPhone but the screen quality is just as good. The screen is beautiful.</p>
<p>The phone itself is rock solid and almost feels ruggedized. When I first pulled the battery to test usability I was quite impressed. I didn’t feel like I was going to break the battery cover like other phones. The size of the phone is thinner but slightly larger (wider) than previous and fits great in the hand. This comes in handy for single handed Blackberry Messaging, texting, email, etc.</p>
<p>Installing applications is easy with Blackberry App World. No problems there. Using T-Mobile’s 4G network I’ve been able to download applications quickly and easily.</p>
<p>I haven’t had any trouble with dropped calls. That’s not to say I haven’t had them but nothing outside of normal dropped calls while traveling long distances roaming from tower to tower. Calling reliability has been excellent.</p>
<p>Internet speeds are noticeably faster. One complaint I’ve always had with the Blackberry was slow Internet performance. Although it’s greatly improved it’s still not where I would like to see it &#8211; but no complaints so far.</p>
<p>Blackberry devices have always had great battery life. The 9900 continues with that tradition but I’m guessing because of the additional horsepower and better screen as well as touch screen technology the battery life has taken a bit of a hit. On a very heavy day of phone call usage I do find myself approaching low battery levels in “the red”. Granted this was a lot of talk time but with previous versions I never got in the red after a full day’s use. The standby battery life continues to impress. When holstered I can go weeks without charging.</p>
<p>The built-in 5 megapixel camera takes great pictures for a phone. I do hear complaints from many people about how disappointing a 5 megapixels camera is when other phones have 10 megapixels but come on…. It’s a phone! I’m not buying my phone so I can be a photographer or take high quality home movies. I’ve got work to do on my phone. Once again, for me it’s a rock solid business class phone. And besides, for non-professional pictures and video recording it works great. My on the fly videos turn out great. If I want to take HD quality pictures and video I’ll break out my digital camera which was designed for such things.</p>
<p>On top of all these other features, businesses can much more affordably utilize Blackberry Enterprise features.  You can now get the free Blackberry Enterprise Express server to keep your workforce productive at a very low cost while providing excellent security features to your phones. For example, one of our client’s employees lost their phone in Paris. With a few mouse clicks we wiped the phone remotely. With a few mouse clicks her new phone was added to the server and she was “in sync” again. Blackberry offers wonderful business class tools.</p>
<p><strong>The End Result</strong></p>
<p>The Blackberry Bold 9900 is a great business class phone that offers many of the features that take the edge off “business only”. It’s rugged and dependable while providing usability that is fluid to the end user making it easy to use and navigate – especially with one hand. The navigation is top of class and far surpasses iPhone and Android. It’s the best phone I’ve ever had thus far but no phone is perfect so aside from some of the quirks I’m giving it 4.75 out of 5 stars. I would have given it 5 out of 5 if it weren’t for the battery charging issue with the holster.</p>
<p><strong>More Information</strong></p>
<p>Blackberry Bold 9900/9930 (United States)<br />
<a href="http://us.blackberry.com/smartphones/blackberrybold.jsp" target="_blank">http://us.blackberry.com/smartphones/blackberrybold.jsp</a></p>
<p>T-Mobile (Please don’t let the AT&amp;T disaster go through)<br />
<a href="http://www.t-mobile.com/shop/Phones/cell-phone-detail.aspx?cell-phone=BlackBerry-Bold-9900-4G-Black" target="_blank">http://www.t-mobile.com/shop/Phones/cell-phone-detail.aspx?cell-phone=BlackBerry-Bold-9900-4G-Black</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/09/05/well-worth-the-wait-blackberry-bold-9900-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blackberry &#8211; Phone Displays New Email But No New Emails Found</title>
		<link>http://www.gomiocon.com/2011/08/30/blackberry-phone-displays-new-email-but-no-new-emails-found/</link>
		<comments>http://www.gomiocon.com/2011/08/30/blackberry-phone-displays-new-email-but-no-new-emails-found/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 20:04:04 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=651</guid>
		<description><![CDATA[At some point in time most Blackberry users will find themselves perplexed as to why their beloved Blackberry displays new email but no new emails can be found. I don’t run into this issue often but when I do it becomes an unwanted game of hide and seek. The emails do exist (typically) so its just a [...]]]></description>
			<content:encoded><![CDATA[<p>At some point in time most Blackberry users will find themselves perplexed as to why their beloved Blackberry displays new email but no new emails can be found. I don’t run into this issue often but when I do it becomes an unwanted game of hide and seek. The emails do exist (typically) so its just a matter of finding them.</p>
<p>Here’s how you find those hidden messages for Blackberry OS versions 5, 6, and 7. Note that 5 is slightly different from versions 6 and 7. I’ll display version 5 first.</p>
<p><strong>Version 5</strong></p>
<p>Try a soft reset first. <a href="http://www.gomiocon.com/2011/08/28/blackberry-bold-9900-soft-and-hard-resets/" target="_blank">Here’s how</a> if you don’t know already. If that doesn&#8217;t work continue.</p>
<ol>
<li>From the home screen go to your Messages folder</li>
<li>Select the BlackBerry menu key.</li>
<li>Then select search</li>
</ol>
<p>You will want to fill in the search criteria to be as broad as possible.  Set it as the following:</p>
<ul>
<li>Services = All Services</li>
<li>Folder = All Folders</li>
<li>Show = Unopened Only</li>
<li>Type = All</li>
<li>Then select search.</li>
</ul>
<p>This method will show all unread messages on your phone in any folder. From here you can take action on these messages as you normally would.</p>
<p><strong>Version 6 and 7</strong></p>
<p>Try a soft reset first. <a href="http://www.gomiocon.com/2011/08/28/blackberry-bold-9900-soft-and-hard-resets/" target="_blank">Here’s how</a> if you don’t know already. If that doesn&#8217;t work continue.</p>
<ol>
<li>From the home screen go to your messages folder</li>
<li>Select the BlackBerry menu key.</li>
<li>Then select search</li>
<li>Scroll to the right and select “Change Criteria” (The magnifying glass)</li>
<li>Select Advanced Search</li>
</ol>
<p>You will want to fill in the search criteria to be as broad as possible.  Set it as the following:</p>
<ul>
<li>Services = All Services</li>
<li>Folder = All Folders</li>
<li>Show = Unread Only</li>
<li>Type = All</li>
<li>Then select search.</li>
</ul>
<p> This method will show all unread messages on your phone in any folder. From here you can take action on these messages as you normally would.</p>
<p>I hope you find this post helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/08/30/blackberry-phone-displays-new-email-but-no-new-emails-found/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blackberry Bold 9900 &#8211; Soft and Hard Resets</title>
		<link>http://www.gomiocon.com/2011/08/28/blackberry-bold-9900-soft-and-hard-resets/</link>
		<comments>http://www.gomiocon.com/2011/08/28/blackberry-bold-9900-soft-and-hard-resets/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 20:26:23 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[9900]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=643</guid>
		<description><![CDATA[If the time should ever arise where you need to reset your Blackberry you should always think in terms of your personal computer. A soft reset in the Blackberry world is similar to a “Control+Alt+Delete” in the PC world. Unless you are locking/unlocking your computer, “Control+Alt+Delete” typically reboots your computer. Power remains supplied to the [...]]]></description>
			<content:encoded><![CDATA[<p>If the time should ever arise where you need to reset your Blackberry you should always think in terms of your personal computer. A soft reset in the Blackberry world is similar to a “Control+Alt+Delete” in the PC world. Unless you are locking/unlocking your computer, “Control+Alt+Delete” typically reboots your computer. Power remains supplied to the hardware and the PC goes through a software reset – or “soft” reset. A hard reset is similar to just unplugging your PC power cord or pulling out your laptop battery.</p>
<p>The same types of resets apply to Blackberry devices. You can perform a soft reset or a hard reset. Be sure not to confuse a soft or hard reset with a &#8220;factory reset&#8221;. A factory reset in Blackberry is considered a security wipe and is beyond the scope of this post. When having troubles with your phone you should always perform a soft reset first. If that doesn’t work then perform a hard reset. Luckily smartphones are designed to survive through hard resets much more than a PC but because there are not so literally millions of moving parts it’s always best to avoid them.</p>
<p>To perform a soft reset on a Blackberry 9900 perform the following. Note that this same soft reset applies to most Blackberry devices manufactured in the past 5 years. So this will work on older Bolds, Curves, etc.</p>
<p>From the Blackberry keypad press “alt”, “Right Shift (Caps key aA)”, and “del” all at the same time.</p>
<p><a href="http://www.gomiocon.com/wp-content/uploads/2011/08/BBKEY.jpg"><img class="alignnone size-large wp-image-644" title="BBKEY" src="http://www.gomiocon.com/wp-content/uploads/2011/08/BBKEY-1024x510.jpg" alt="" width="614" height="306" /></a></p>
<p>The phone should “reboot”.</p>
<p>To perform a hard reset, just pull the back cover off while taking great care not to break it. Then pull the battery, wait 30 seconds or so (I never do), and put the battery back in.</p>
<p>More Information</p>
<p><a href="http://www.blackberry.com/support" target="_blank">http://www.blackberry.com/support</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/08/28/blackberry-bold-9900-soft-and-hard-resets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Configure and Troubleshoot Call Park on Cisco Unified Communications Manager</title>
		<link>http://www.gomiocon.com/2011/08/27/how-to-configure-and-troubleshoot-call-park-on-cisco-unified-communications-manager/</link>
		<comments>http://www.gomiocon.com/2011/08/27/how-to-configure-and-troubleshoot-call-park-on-cisco-unified-communications-manager/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 00:11:01 +0000</pubDate>
		<dc:creator>Michael O'Coners</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Unified Communications Manager]]></category>
		<category><![CDATA[call park]]></category>

		<guid isPermaLink="false">http://www.gomiocon.com/?p=621</guid>
		<description><![CDATA[The following post applies to Cisco Unified Communications Manager 8.6 but will also work on version 7 through 8.5. The Cisco Unified Communications Manager Call Park feature allows a phone user to place a call on hold so it can be retrieved from another phone in the Cisco Unified Communications Manager system/cluster (assuming proper call [...]]]></description>
			<content:encoded><![CDATA[<p>The following post applies to Cisco Unified Communications Manager 8.6 but will also work on version 7 through 8.5.</p>
<p>The Cisco Unified Communications Manager Call Park feature allows a phone user to place a call on hold so it can be retrieved from another phone in the Cisco Unified Communications Manager system/cluster (assuming proper call routing). While on an active call, a phone user can “Park” the call to a Call Park extension by pressing the Park softkey or the Call Park button. This of course depends on the type of phone in use. Another phone user can pick up the parked call by dialing the Call Park extension used to place the call on park.</p>
<p>A usage example would be a phone call coming in to the operator. The operator answers the call and the caller asks to have a party paged over the intercom system. The operator presses the Park softkey and the call park number assigned displays on the phone screen (9201, for example). The operator pages “Bob you have a call parked on 9201”. Bob hears the page over the intercom system and dials 9201 to retrieve the call.  </p>
<p> The configuration is rather simple but don’t let its simplicity fool you. As with all aspects of configuring a phone system, there are still things you need to consider.</p>
<p> <strong>Configuring Call Park</strong></p>
<p> From Cisco Unified Communications Manager (CUCM) go to Call Routing then Call Park. Determine how many call park extensions you need. Note that a single directory number or a range of directory numbers can be configured as call park extension numbers but a wildcard format is used so you can add ranges in quantities of 10 or 100. Ensure that a unique call park range is configured on each CUCM in the cluster to ensure redundancy. In this example we will use ranges of 10 in a CUCM cluster of two servers (Figure 1).</p>
<p>Figure 1.<br />
<a><img src="http://www.gomiocon.com/wp-content/themes/corporate/images/CP1.JPG" alt="" /></a></p>
<ol>
<li>Configure the Call Park Number/Range. I’m using 920X in this example. This will provide 10 call park numbers starting at 9200 through 9209.</li>
<li>Configure a description.</li>
<li>Assign to a partition. Note that if you need to prevent classes of users from parking calls or restrict parking, assign the call park numbers to a partition then place that partition in corresponding calling search space (CSS). For example, you may not want courtesy phones to have call park functionality so you will need to make sure they don’t have the call park partition in their CSS.</li>
<li>Assign the CUCM. Ensure, once again, that you assign a unique range for each CUCM.</li>
</ol>
<p> That’s it. The end result for two CUCMs would look something like this (Figure 2).</p>
<p> Figure 2. (Click for larger view)<br />
<a href="http://www.gomiocon.com/wp-content/themes/corporate/images/CP2.JPG" target="_blank"><img src="http://www.gomiocon.com/wp-content/themes/corporate/images/CP2.JPG" alt="" /></a></p>
<div><strong>Troubleshooting Call Park</strong></div>
<div><strong> </strong></div>
<table border="1" cellspacing="0" cellpadding="0" width="80%">
<tbody>
<tr>
<td colspan="2">Troubleshooting Tips for Call Park</td>
</tr>
<tr>
<td valign="bottom"><strong>Problem Description</strong></td>
<td valign="bottom"><strong>Recommended Action</strong></td>
</tr>
<tr>
<td valign="top">User cannot park calls. When the user presses the Park softkey or feature button, the call does not get parked.</td>
<td valign="top">Ensure that a unique call park number is assigned to each Cisco Unified Communications Manager in the cluster. See the <em>Cisco Unified Communications Manager Administration Guide</em>.The partition that is assigned to the call park number does not match the partition that is assigned to the phone directory number. See the <em>Cisco Unified Communications Manager Administration Guide</em>.</td>
</tr>
<tr>
<td valign="top">The call park number does not display long enough for the user.</td>
<td valign="top">Set the Call Park Display Timer to a longer duration. For information on setting parameters for call park, see the <em>Cisco Unified Communications Manager Features and Services Guide</em>.</td>
</tr>
</tbody>
</table>
<p><strong> </strong></p>
<p><strong>More Information</strong></p>
<p> <a href="http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/8_6_1/ccmfeat/fscallpk.html" target="_blank">http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/8_6_1/ccmfeat/fscallpk.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gomiocon.com/2011/08/27/how-to-configure-and-troubleshoot-call-park-on-cisco-unified-communications-manager/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

