<?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>Computer Information &#187; Computer Certification</title>
	<atom:link href="http://www.capocoms.org/category/computer-certification/feed" rel="self" type="application/rss+xml" />
	<link>http://www.capocoms.org</link>
	<description>Free computer information. Answering all your computer  related questions with complete information on all hardware and software.</description>
	<lastBuildDate>Wed, 01 Sep 2010 15:59:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Understanding Bgp Adjacency States</title>
		<link>http://www.capocoms.org/understanding-bgp-adjacency-states.html</link>
		<comments>http://www.capocoms.org/understanding-bgp-adjacency-states.html#comments</comments>
		<pubDate>Thu, 07 Jan 2010 10:34:15 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Computer Certification]]></category>
		<category><![CDATA[advertisement]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[refresh]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[speakers]]></category>

		<guid isPermaLink="false">http://www.capocoms.org/?p=9</guid>
		<description><![CDATA[To pass the BSCI exam, earn your CCNP certification and become an outstanding networker, you&#8217;ve got to master the many details of BGP &#8211; and trust me, there are a lot of details to master! Before you get into the more advanced features of BGP, you should have the fundamentals down cold, and one of [...]]]></description>
			<content:encoded><![CDATA[<p>To pass the BSCI exam, earn your CCNP certification and become an outstanding networker, you&#8217;ve got to master the many details of BGP &#8211; and trust me, there are a lot of details to master! Before you get into the more advanced features of BGP, you should have the fundamentals down cold, and one of those fundamentals is knowing the BGP adjacency states. This will allow you to successfully analyze and troubleshoot BGP peer relationships.</p>
<p>In the following example, a BGP peering is being created between R1 and R3.<br />
R1(config-router)#neighbor 172.12.123.3 remote-as 200</p>
<p>BGP speakers do not have to be in the same AS to become peers. To verify that the remote BGP speaker has become a peer, run show ip bgp neighbor.</p>
<p>R1#show ip bgp neighbor</p>
<p>BGP neighbor is 172.12.123.3, remote AS 200, external link</p>
<p>BGP version 4, remote router ID 0.0.0.0</p>
<p>BGP state = Active</p>
<p>Last read 00:01:39, hold time is 180, keepalive interval is 60 seconds</p>
<p>Received 0 messages, 0 notifications, 0 in queue</p>
<p>Sent 0 messages, 0 notifications, 0 in queue</p>
<p>Route refresh request: received 0, sent 0</p>
<p>Default minimum time between advertisement runs is 30 seconds</p>
<p>The output here can be a little misleading the first time you read it. The first highlighted line shows 172.12.123.3 is a BGP neighbor, is located in AS 200, and is an external link, indicating that the neighbor is in another AS entirely. The second highlighted line shows the BGP state as Active. This sounds great, but it actually means that a BGP peer connection does not yet exist with the prospective neighbor. Before we continue with this example, let&#8217;s look at the different BGP states:</p>
<p>Idle is the initial state of a BGP connection. The BGP speaker is waiting for a start event, generally either the establishment of a TCP connection or the re-establishment of a previous connection. Once the connection is established, BGP moves to the next state.</p>
<p>Connect is the next state. If the TCP connection completes, BGP will move to the OpenSent stage if the connection does not complete, BGP goes to Active.</p>
<p>Active indicates that the BGP speaker is continuing to create a peer relationship with the remote router. If this is successful, the BGP state goes to OpenSent. You&#8217;ll occasionally see a BGP connection flap between Active and Connect. This indicates an issue with the physical cable itself, or with the configuration.</p>
<p>OpenSent indicates that the BGP speaker has received an Open message from the peer. BGP will determine whether the peer is in the same AS (iBGP) or a different AS (eBGP) in this state.</p>
<p>In OpenConfirm state, the BGP speaker is waiting for a keepalive message. If one is received, the state moves to Established, and the neighbor relationship is complete. It is in the Established state that update packets are actually exchanged.</p>
<p>So even though the show ip bgp neighbor output indicated that this is an Active neighbor relationship, that&#8217;s not as good as it sounds. Of course, the reason the peer relationship hasn&#8217;t been established is that we haven&#8217;t configured R3 yet!</p>
<p>R3(config)#router bgp 200</p>
<p>R3(config-router)#neighbor 172.12.123.1 remote-as 100</p>
<p>Verify the peer establishment with show ip bgp neighbor:</p>
<p>R3#show ip bgp neighbor</p>
<p>BGP neighbor is 172.12.123.1, remote AS 100, external link</p>
<p>BGP version 4, remote router ID 172.12.123.1</p>
<p>BGP state = Established, up for 00:01:18</p>
<p>Last read 00:00:17, hold time is 180, keepalive interval is 60 seconds</p>
<p>Neighbor capabilities:</p>
<p>Route refresh: advertised and received(old &amp; new)</p>
<p>Address family IPv4 Unicast: advertised and received</p>
<p>Received 5 messages, 0 notifications, 0 in queue</p>
<p>Sent 5 messages, 0 notifications, 0 in queue</p>
<p>Route refresh request: received 0, sent 0</p>
<p>Default minimum time between advertisement runs is 30 seconds</p>
<p>Local host: 172.12.123.3, Local port: 179 (BGP uses TCP Port 179)</p>
<p>Foreign host: 172.12.123.1, Foreign port: 11007</p>
<p>The peer relationship between R1 and R3 has been established!</p>
<p>By: <a href="http://www.articledashboard.com/Article/Understanding-BGP-Adjacency-States/1278540" rel="nofollow">Galen Bass</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.capocoms.org/understanding-bgp-adjacency-states.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importance Of Java Certifications For The Latest Cutting-edge Technologies</title>
		<link>http://www.capocoms.org/importance-of-java-certifications-for-the-latest-cutting-edge-technologies.html</link>
		<comments>http://www.capocoms.org/importance-of-java-certifications-for-the-latest-cutting-edge-technologies.html#comments</comments>
		<pubDate>Wed, 21 Oct 2009 14:41:12 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Computer Certification]]></category>
		<category><![CDATA[Certifications]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Certifications]]></category>
		<category><![CDATA[Technologies]]></category>

		<guid isPermaLink="false">http://www.capocoms.org/?p=59</guid>
		<description><![CDATA[Java is a computer programming language which is used widely in IT industry. It is one such language which an IT professional should be thorough with.
Technology is ever changing and one needs to be updated with the latest versions used in the market. If you are looking to develop and polish your Java skills then [...]]]></description>
			<content:encoded><![CDATA[<p>Java is a computer programming language which is used widely in IT industry. It is one such language which an IT professional should be thorough with.</p>
<p>Technology is ever changing and one needs to be updated with the latest versions used in the market. If you are looking to develop and polish your Java skills then Java training is the best option for you.</p>
<p>Today’s tech world demands updated Java skills from an IT professional. It is therefore important to build those skills and find a place and position in the IT industry.</p>
<p>Adding Java certifications can open many doors in your career. It can create opportunities for you and also give you recognition in the IT market.</p>
<p>Java is a vast topic which has many certification courses. It is crucial for you to identify which course is appropriate for your career growth. It will not make a difference in your career if you jump into any of the certification courses. The choice of certification will largely depend on the skills you posses.<span id="more-59"></span></p>
<p>What are the choices for Java Certifications?</p>
<p>There are many certification courses and each of them is categorized according to the hierarchy in the IT industry. These certifications mainly include:</p>
<p>Sun Certified Java Programmer<br />
Sun Certified Java Developer<br />
Sun Certified Java Associate<br />
Sun Certified Web Component Developer<br />
Sun Certified Enterprise Architect</p>
<p>There are other certifications as well which demonstrates to employers the knowledge of Java language.</p>
<p>What are the benefits of Java Certifications?</p>
<p>When you undergo Java training and achieve a certification, you are recognized in the IT industry. It is a new language and few people have the real world experience with it. These certifications are a proof to your employer that you understand the fundamentals of Java language.</p>
<p>There is no statistics to show how much certified programmers are paid than those who are non-certified. However, you can expect an increase of $5000 to $10,000 in your pay package when you get these certifications. Certification courses are a great way to learn different computer languages for a programmer.</p>
<p>After taking Java Courses for about three months, you can appear for these certification exams. However, people who are new to the IT industry and are fresher may take about six months for these courses. It is always better to be well prepared for these exams because it is a stepping stone towards success.</p>
<p>There are various types of IT training companies that provide all the course material. These course material mainly include programming fundamentals which focuses on getting the foundation right.</p>
<p>There are workshops organized by the companies which provide knowledge and skills required for server side Java applications.</p>
<p>Java courses also focus on the use of Java in web development. Before appearing for the exams you may consider looking at the practice papers which are easily available on the internet. If you find your scores hitting the mark of 80-90 percent, then you are ready for the real test.</p>
<p>Once you take the responsibility of your own education, nothing can stop you from achieving great heights in your career. It is important to enhance your skills and learn more about the latest technology. Certification courses are the best way to keep you updated and match up with the fast moving world.</p>
<p>By: <a rel="nofollow" href="http://www.articledashboard.com/Article/Importance-of-Java-Certifications-for-the-Latest-Cutting-Edge-Technologies/1343760">karROX India</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.capocoms.org/importance-of-java-certifications-for-the-latest-cutting-edge-technologies.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding The Right Cisco Training Clarified</title>
		<link>http://www.capocoms.org/finding-the-right-cisco-training-clarified.html</link>
		<comments>http://www.capocoms.org/finding-the-right-cisco-training-clarified.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 14:42:49 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Computer Certification]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Clarified]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.capocoms.org/?p=61</guid>
		<description><![CDATA[If you think Cisco training might be for you, and you&#8217;ve no practical experience with switches and routers, it&#8217;s likely you&#8217;ll need a CCNA course. This teaches you the necessary skills to set up and maintain routers. Vast numbers of routers make up the internet, and national or international corporations with various different locations also [...]]]></description>
			<content:encoded><![CDATA[<p>If you think Cisco training might be for you, and you&#8217;ve no practical experience with switches and routers, it&#8217;s likely you&#8217;ll need a CCNA course. This teaches you the necessary skills to set up and maintain routers. Vast numbers of routers make up the internet, and national or international corporations with various different locations also need routers to connect their computer networks.</p>
<p>You might end up joining an internet service provider or maybe a large company that is spread out geographically but needs regular secure data communications. This career path is very well paid and quite specialised.</p>
<p>Getting your Cisco CCNA is more than adequate; don&#8217;t let some salesperson talk you into starting with the CCNP. Once you&#8217;ve worked for a few years, you&#8217;ll know whether you need to train up to this level. Should that be the case, you&#8217;ll have the knowledge you need to master your CCNP &#8211; which is quite a hard qualification to acquire &#8211; and mustn&#8217;t be entered into casually.</p>
<p>Proper support is incredibly important &#8211; look for a package that includes 24&#215;7 access, as not opting for this kind of support could impede your ability to learn. Many only provide email support (too slow), and telephone support is usually to a call-centre which will take the information and email an instructor &#8211; who&#8217;ll call back sometime over the next 1-3 days, when it suits them. This is all next to useless if you&#8217;re sitting there confused over an issue and can only study at specific times.<span id="more-61"></span></p>
<p>The very best programs tend to use a web-based 24 hours-a-day service involving many support centres over many time-zones. You&#8217;re offered an interface that switches seamlessly to the best choice of centres any time of the day or night: Support when you need it. Find a training school that offers this level of study support. As only true live 24&#215;7 round-the-clock support provides the necessary backup.</p>
<p>Each programme of learning really needs to work up to a widely recognised certification as an end-result &#8211; not some little &#8216;in-house&#8217; plaque for your wall. If the accreditation doesn&#8217;t feature a company like Microsoft, Adobe, Cisco or CompTIA, then chances are it could have been a waste of time and effort &#8211; because it won&#8217;t give an employer any directly-useable skills.</p>
<p>Traditional teaching in classrooms, involving piles of reference textbooks, is usually pretty hard going. If all this is ringing some familiar bells, look for learning programmes that are on-screen and interactive. Many years of research has time and time again verified that getting into our studies physically, is proven to produce longer-lasting and deeper memory retention.</p>
<p>Top of the range study programs now offer self-contained CD or DVD materials. By watching and listening to instructors on video tutorials you&#8217;ll find things easier to remember via their teaching and demonstrations. Knowledge can then be tested by interacting with the software and practicing yourself. You&#8217;ll definitely want a look at some courseware examples from the school that you&#8217;re considering. You&#8217;ll want to see demo&#8217;s from instructors, slideshows and fully interactive skills-lab&#8217;s.</p>
<p>Often, companies will only use online training only; while you can get away with this much of the time, consider how you&#8217;ll deal with it if your access to the internet is broken or you get slow speeds and down-time etc. A safer solution is the provision of CD and DVD ROM materials that don&#8217;t suffer from these broadband issues.</p>
<p>A knowledgeable and professional advisor (in contrast with a salesperson) will cover in some detail your abilities and experience. This is useful for understanding your study start-point. An important point to note is that, if you&#8217;ve got any accreditation or direct-experience, then you can sometimes expect to start at a different point than a trainee with no history to speak of. Always consider starting with some basic Microsoft package and Windows skills first. Starting there can make the learning curve a much easier going.</p>
<p>By: <a rel="nofollow" href="http://www.articledashboard.com/Article/Finding-The-Right-Cisco-Training-Clarified/1342110">Mr Jason Kendall</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.capocoms.org/finding-the-right-cisco-training-clarified.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mcitp Certification: What You Need</title>
		<link>http://www.capocoms.org/mcitp-certification-what-you-need.html</link>
		<comments>http://www.capocoms.org/mcitp-certification-what-you-need.html#comments</comments>
		<pubDate>Mon, 05 Oct 2009 14:44:21 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Computer Certification]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[Mcitp]]></category>
		<category><![CDATA[Mcitp Certification]]></category>

		<guid isPermaLink="false">http://www.capocoms.org/?p=63</guid>
		<description><![CDATA[MCITP certification, or Microsoft Certified IT Professional certification, covers a whole series of Microsoft based qualifications that are among the most well recognised qualifications in the arena of information technology. An MCITP qualification shows employers that you are dedicated to your line of work and also makes you stand out from the competition.
Some of the [...]]]></description>
			<content:encoded><![CDATA[<p>MCITP certification, or Microsoft Certified IT Professional certification, covers a whole series of Microsoft based qualifications that are among the most well recognised qualifications in the arena of information technology. An MCITP qualification shows employers that you are dedicated to your line of work and also makes you stand out from the competition.</p>
<p>Some of the MCITP options available include: database administrator, database developer, server administrator or Enterprise administrator as well as many others.</p>
<p>Taking one example of these – the database administrator – let’s have a look at what is involved in gaining MCITP certification and just what it could do for you.</p>
<p>The latest MCITP database administrator qualification is the 2008 certification. This is gained by taking two exams. The first covers the implementation and maintenance of Microsoft SQL server 2008, which is the server that the database administrator exams are based on. The second exam covers designing, optimising and maintaining a database on Microsoft SQL server 2008. Together these exams give you full certification in database administration.<span id="more-63"></span></p>
<p>Of course, there are prerequisites for the examinations. The MCITP database administrator qualification is open to those who have at least three years experience of administrating databases in a relevant environment. They should also be able to optimise, troubleshoot and automate administrative tasks in databases. As the certification is based on a specific server, people sitting for these exams should also have one to two years of experience with Microsoft SQL server 2008 or two to three years experience on a previous SQL server.</p>
<p>If you meet these criteria and your work involves using and maintaining a database on the relevant server, then MCITP certification could be for you. It provides you with globally acknowledged credentials which show that you are capable and committed to database administration.</p>
<p>By: <a rel="nofollow" href="http://www.articledashboard.com/Article/MCITP-Certification--What-You-Need/1342171">Rachel Lawrence</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.capocoms.org/mcitp-certification-what-you-need.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
