<?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>Receive/Transmit &#187; cisco</title>
	<atom:link href="http://www.rxtx.co.uk/tag/cisco/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rxtx.co.uk</link>
	<description></description>
	<lastBuildDate>Sun, 10 Apr 2011 11:05:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Useful IOS tricks (part 3) &#8211; the &#8216;do&#8217; command</title>
		<link>http://www.rxtx.co.uk/2011/01/03/useful-ios-tricks-part-3-the-do-command/</link>
		<comments>http://www.rxtx.co.uk/2011/01/03/useful-ios-tricks-part-3-the-do-command/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 14:22:05 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iostricks]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=255</guid>
		<description><![CDATA[I have a very short but very useful command for you today. You&#8217;ll often find yourself working within the IOS config mode, and you might forget little things such as &#8216;what is the interface number I need&#8217;, or &#8216;what is the current IP assigned to this interface&#8217;. Following this you probably go through a series [...]]]></description>
			<content:encoded><![CDATA[<p>I have a very short but very useful command for you today. You&#8217;ll often find yourself working within the IOS config mode, and you might forget little things such as &#8216;what is the interface number I need&#8217;, or &#8216;what is the current IP assigned to this interface&#8217;. Following this you probably go through a series of commands like the ones below</p>
<pre>Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int fa 0/^Z  &lt;---Arrgh forgot which interface it was, Ctrl+Z out of config mode
% Incomplete command.

Router#sh ip int brief
Interface                  IP-Address      OK? Method Status                Prot
ocol
FastEthernet0/0            10.10.10.1  YES NVRAM  up                    up

FastEthernet0/1            192.168.0.1   YES NVRAM  up                    up

Router#conf t  &lt;---OK found it, back into config mode
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int fa 0/0
etc
</pre>
<p>This gets annoying pretty fast, but luckily you can execute exec commands from within config mode by preceding them with &#8216;do&#8217;! This is a lot nicer:</p>
<pre>
<pre>Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int fa 0/  &lt;---Arrgh forgot which interface it was, lets try 'do'
% Incomplete command.

Router(config)#do sh ip int brief
Interface                  IP-Address      OK? Method Status                Prot
ocol
FastEthernet0/0            10.10.10.1  YES NVRAM  up                    up

FastEthernet0/1            192.168.0.1   YES NVRAM  up                    up

Router(config)#int fa 0/0
</pre>
</pre>
<p>Much easier right? There are of course a few caveats, the main one being that you can&#8217;t <a href="http://www.rxtx.co.uk/2010/09/16/useful-ios-tricks-part-1/">use the &#8216;?&#8217; symbol</a> to remind you of the commands but its still a great little time saver.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2011/01/03/useful-ios-tricks-part-3-the-do-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful IOS tricks (part 2) &#8211; access list editing</title>
		<link>http://www.rxtx.co.uk/2010/10/05/useful-ios-tricks-part-2-access-list-editing/</link>
		<comments>http://www.rxtx.co.uk/2010/10/05/useful-ios-tricks-part-2-access-list-editing/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 21:46:17 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iostricks]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=222</guid>
		<description><![CDATA[This time we are talking about those pesky things that all the server guys blame when their apps don&#8217;t work &#8211; access lists! Until you know the tricks I&#8217;m about to show you, you&#8217;ve probably had a feeling of dread when you&#8217;ve been asked to add a rule at the end of the 200 entry [...]]]></description>
			<content:encoded><![CDATA[<p>This time we are talking about those pesky things that all the server guys blame when their apps don&#8217;t work &#8211; access lists! Until you know the tricks I&#8217;m about to show you, you&#8217;ve probably had a feeling of dread when you&#8217;ve been asked to add a rule at the end of the 200 entry ACL (but before the deny ip any any of course). We&#8217;ll use this simple access list to demonstrate</p>
<pre>Router#sh access-lists 100
Extended IP access list 100
 10 permit tcp any host 192.168.0.10 eq www
 20 permit tcp any host 192.168.0.10 eq 443
 30 deny ip any any
</pre>
<p>First lets examine this output. Note that we are looking at an extended access list, although our trick will work with standard ACLs too. Also note that there are numbers before each rule. We are going to learn how to harness the power of these numbers. Lets say we want to add another rule, permitting mail to the 192.168.0.10 host. If you try and just add in the rule using the way they teach you in your CCNA, you end up with the following:</p>
<pre>Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#access-list 100 permit tcp any host 192.168.0.10 eq 25
Router(config)#do sh access-l 100
Extended IP access list 100
 10 permit tcp any host 192.168.0.10 eq www
 20 permit tcp any host 192.168.0.10 eq 443
 30 deny ip any any
 40 permit tcp any host 192.168.0.10 eq smtp
Router(config)#
</pre>
<p>So not too good really, that rule will never get hit as its been put after the deny. Luckily theres another way, using the &#8220;ip access-list&#8221; configuration command. Take note here of the rule numbers &#8211; first we&#8217;ll remove the rule that was put at the end of the ACL, and then we&#8217;ll re-add it before the deny:</p>
<pre>Router(config)#ip access-list extended 100
Router(config-ext-nacl)#no 40
Router(config-ext-nacl)#25 permit tcp any host 192.168.0.10 eq smtp
Router(config-ext-nacl)#do show access-list 100
Extended IP access list 100
 10 permit tcp any host 192.168.0.10 eq www
 20 permit tcp any host 192.168.0.10 eq 443
 25 permit tcp any host 192.168.0.10 eq smtp
 30 deny ip any any
Router(config-ext-nacl)#
</pre>
<p>After entering the first command note that we go into config-ext-nacl mode which is where we add and remove rules. Its quite easy &#8211; you add a rule by starting with the sequence number of where you want it go and then entering the rest of the rule as normal. You remove a rule with &#8220;no&#8221; followed by the sequence number.</p>
<p>You might have realised that we can only add so many rules like this before we run out of numbers, but thats fine too as IOS includes a command to let you resequence the list. For example</p>
<pre>Router#sh access-lists 100
Extended IP access list 100
 1 permit tcp any host 192.168.0.10 eq www
 2 permit tcp any host 192.168.0.10 eq 443
 3 permit tcp any host 192.168.0.10 eq smtp
 4 deny ip any any
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#ip access-list resequence 100 10 10
Router(config)#do sh access-l 100
Extended IP access list 100
 10 permit tcp any host 192.168.0.10 eq www
 20 permit tcp any host 192.168.0.10 eq 443
 30 permit tcp any host 192.168.0.10 eq smtp
 40 deny ip any any
Router(config)#
</pre>
<p>So the key command there is &#8220;ip access-list resequence 100 10 10&#8243;. Don&#8217;t get worried by the raft of numbers, its really simple. The first number (100) is the access list we want to resequence; the second number (10) is what number we want the first rule to start at; the third number (10) is what we want the increment to be for each following rule. Lets try another example, we want the list to start at 50 and have increments of 5:</p>
<pre>Router(config)#ip access-list resequence 100 50 5
Router(config)#do sh access-l 100
Extended IP access list 100
 50 permit tcp any host 192.168.0.10 eq www
 55 permit tcp any host 192.168.0.10 eq 443
 60 permit tcp any host 192.168.0.10 eq smtp
 65 deny ip any any
Router(config)#
</pre>
<p>These few commands have come in incredibly useful for me and have saved me a great deal of ACL related headaches, I recommend you learn them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/10/05/useful-ios-tricks-part-2-access-list-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful IOS tricks (part 1)</title>
		<link>http://www.rxtx.co.uk/2010/09/16/useful-ios-tricks-part-1/</link>
		<comments>http://www.rxtx.co.uk/2010/09/16/useful-ios-tricks-part-1/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 15:27:47 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iostricks]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=217</guid>
		<description><![CDATA[This is going to be a series of short posts on little features in IOS which make your life easier. These won&#8217;t change your life or anything, but knowing them will make you much more proficient when sitting at a console. The first feature I&#8217;m going to discuss I hope everyone is aware of, the [...]]]></description>
			<content:encoded><![CDATA[<p>This is going to be a series of short posts on little features in IOS which make your life easier. These won&#8217;t change your life or anything, but knowing them will make you much more proficient when sitting at a console. The first feature I&#8217;m going to discuss I hope everyone is aware of, the command lookup. This is incredibly useful when you can&#8217;t quite remember what command you need and it can be used in two slightly different ways.</p>
<p>The first way is when you have no clue at all what you need to type, and just want a refresher of what options are available. Typing the &#8216;?&#8217; character will show you all possible commands with a brief description, eg</p>
<pre>Router#?
Exec commands:
 &lt;1-99&gt;           Session number to resume
 access-enable    Create a temporary Access-List entry
 access-profile   Apply user-profile to interface
 access-template  Create a temporary Access-List entry
 archive          manage archive files
 audio-prompt     load ivr prompt
 auto             Exec level Automation
 beep             Blocks Extensible Exchange Protocol commands
 bfe              For manual emergency modes setting
 calendar         Manage the hardware calendar
 call             Voice call
 ccm-manager      Call Manager Application exec commands
 cd               Change current directory
 cellular         cellular commands
 clear            Reset functions
 clock            Manage the system clock
 cns              CNS agents
 configure        Enter configuration mode
 connect          Open a terminal connection
 copy             Copy from one file to another
 credential       load the credential info from file system
 crypto           Encryption related commands.
 --More--
</pre>
<p>Press space to see more. You can also use this on a nested basis, eg</p>
<pre>Router#show access-lists ?
 &lt;1-2799&gt;    ACL number
 WORD        ACL name
 compiled    Compiled access-list statistics
 rate-limit  Show rate-limit access lists
 |           Output modifiers
 &lt;cr&gt;

Router#show access-lists
</pre>
<p>The second, slightly different way to use this is when halfway through a command, it will try and match based on what you have already typed</p>
<pre>Router#show ip in?
inspect  interface

Router#show ip i?
icmp  igmp  inspect  interface
ips   irdp

Router#show ip in?
inspect  interface

Router#show ip in
</pre>
<p>However note that in this case you don&#8217;t get the command descriptions.</p>
<p>You can use this from any mode, so it works in config, user exec, privileged exec. A lot of the commands you&#8217;ll come to learn by heart, but this is very useful for the ones you use less often.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/09/16/useful-ios-tricks-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cisco NAT failing for non-connected subnets</title>
		<link>http://www.rxtx.co.uk/2010/08/17/cisco-nat-failing-for-non-connected-subnets/</link>
		<comments>http://www.rxtx.co.uk/2010/08/17/cisco-nat-failing-for-non-connected-subnets/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 18:18:44 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[nat]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=201</guid>
		<description><![CDATA[This little problem had me scratching my head for a while, and as usual the solution is pretty simple. The scenario is that you have some kind of link from an ISP with static addresses. At some point you have outgrown your original assignment and have requested a new block, which the ISP has set [...]]]></description>
			<content:encoded><![CDATA[<p>This little problem had me scratching my head for a while, and as usual the solution is pretty simple. The scenario is that you have some kind of link from an ISP with static addresses. At some point you have outgrown your original assignment and have requested a new block, which the ISP has set up at their end. You want NAT an address on the new external subnet to an internal address as shown below. Now on a PIX or ASA you just set up the NAT rules and everything works, but in IOS things are a little more subtle. First the diagram and relevant initial configs. Note that the customer router only has an external IP on the first subnet &#8211; in our case this was due to a lack of spare addresses:</p>
<p><a href="http://www.rxtx.co.uk/wp-content/uploads/2010/08/nat-nonconnected.jpg"><img class="alignnone size-full wp-image-202" title="nat-nonconnected" src="http://www.rxtx.co.uk/wp-content/uploads/2010/08/nat-nonconnected.jpg" alt="nat-nonconnected" width="622" height="262" /></a></p>
<p style="padding-left: 30px;"><span id="more-201"></span><br />
<strong>NAT target</strong></p>
<pre style="padding-left: 30px;">interface FastEthernet0/0
 ip address 10.0.0.1 255.255.255.0
 !
ip route 0.0.0.0 0.0.0.0 10.0.0.2</pre>
<p style="padding-left: 30px;"><strong>Customer router</strong></p>
<pre style="padding-left: 30px;">interface FastEthernet0/0
 ip address 10.0.0.2 255.255.255.0
 ip nat inside
 !
interface FastEthernet0/1
 ip address 172.0.0.2 255.255.255.0
 ip nat outside
 !
ip route 0.0.0.0 0.0.0.0 172.0.0.3
!
ip nat inside source static 10.0.0.1 172.0.1.2</pre>
<p style="padding-left: 30px;"><strong>ISP router</strong></p>
<pre style="padding-left: 30px;">interface FastEthernet0/1
 ip address 172.0.1.3 255.255.255.0 secondary
 ip address 172.0.0.3 255.255.255.0
</pre>
<p>Looks like it should work right? Not quite. If we try and ping 172.0.1.2 from the ISP router, there is no response. We can see the NAT translation in place on the router, and with a debug arp command we can see the arp requests hitting the customer router, but it doesn&#8217;t respond.</p>
<pre style="padding-left: 30px;">Customer#sh ip nat trans
Pro Inside global      Inside local       Outside local      Outside global
--- 172.0.1.2          10.0.0.1           ---                ---
Customer#debug arp
ARP packet debugging is on
Customer#
*Mar  1 00:40:20.147: IP ARP: rcvd req src 172.0.1.3 cc06.11b8.0001, dst 172.0.1.2 FastEthernet0/1
*Mar  1 00:40:22.147: IP ARP: rcvd req src 172.0.1.3 cc06.11b8.0001, dst 172.0.1.2 FastEthernet0/1
*Mar  1 00:40:24.147: IP ARP: rcvd req src 172.0.1.3 cc06.11b8.0001, dst 172.0.1.2 FastEthernet0/1
*Mar  1 00:40:26.111: IP ARP: rcvd req src 172.0.1.3 cc06.11b8.0001, dst 172.0.1.2 FastEthernet0/1
*Mar  1 00:40:28.135: IP ARP: rcvd req src 172.0.1.3 cc06.11b8.0001, dst 172.0.1.2 FastEthernet0/1
Customer#sh ip nat trans
Pro Inside global      Inside local       Outside local      Outside global
--- 172.0.1.2          10.0.0.1           ---                ---
Customer#
</pre>
<p>We can also look in the arp table on the ISP router and confirm that it has no entry for 172.0.1.2. If we change the NAT statement so that the external natted address is on the 172.0.0.0/24 subnet, everything works so we aren&#8217;t hitting proxy-arp issues.</p>
<pre style="padding-left: 30px;">Customer(config)#no ip nat inside source static 10.0.0.1 172.0.1.2
Customer(config)#ip nat inside source static 10.0.0.1 172.0.0.5</pre>
<pre style="padding-left: 30px;">ISP#ping 172.0.0.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.0.0.5, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 40/77/92 ms
ISP#
</pre>
<p>To cut a long story short, what we need to do is add the external natted address as a secondary IP on the customer router (or give it a different secondary IP on that subnet).</p>
<pre style="padding-left: 30px;">Customer(config)#int fa 0/1
Customer(config-if)#ip add 172.0.1.2 255.255.255.0 sec
Customer(config-if)#ip add 172.0.1.2 255.255.255.0 secondary</pre>
<pre style="padding-left: 30px;">ISP#ping 172.0.1.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.0.1.2, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 20/49/72 ms
ISP#</pre>
<p>Incredibly obvious when you think about it, but it took me a while to work out due to the fact that on Cisco&#8217;s firewall line it works without secondary addresses. Hopefully this will save someone else the headaches I went through.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/08/17/cisco-nat-failing-for-non-connected-subnets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debug ip packet with no output</title>
		<link>http://www.rxtx.co.uk/2010/07/08/debug-ip-packet-with-no-output/</link>
		<comments>http://www.rxtx.co.uk/2010/07/08/debug-ip-packet-with-no-output/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 15:23:06 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[cef]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[dynamips]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=196</guid>
		<description><![CDATA[If you are working on a Cisco, it can be very useful to see details of the traffic going through it. Occasionally you can use a mirrored (SPAN) port to do this, but if you have exotic interfaces or are using Dynamips this can be more difficult. The &#8220;debug ip packet&#8221; command will dump packet [...]]]></description>
			<content:encoded><![CDATA[<p>If you are working on a Cisco, it can be very useful to see details of the traffic going through it. Occasionally you can use a mirrored (SPAN) port to do this, but if you have exotic interfaces or are using Dynamips this can be more difficult. The &#8220;<a href="http://www.cisco.com/en/US/docs/ios/12_3/debug/command/reference/dbg_i2g.html#wp1086651">debug ip packet</a>&#8221; command will dump packet information straight into your terminal. Occasionally though you will have traffic going through the device but no output shows up in the debug, whats that all about?</p>
<p>Well actually there are a couple of gotchas to bear in mind when doing this. The first is easy and you&#8217;ll probably be hitting yourself &#8211; if you are in a vty session (eg you are connected via telnet or ssh) you don&#8217;t see the console messages by default. Use the terminal monitor command to view the debug messages:</p>
<pre>Router#terminal monitor
</pre>
<p>The second issue is a bit less obvious (unless you&#8217;ve read the command description carefully). Only packets which are process-switched are included in the debug &#8211; this makes sense if you think about it because unless they are process switched the CPU never sees them. To see the traffic in your debug you need to somehow disable CEF which can be done globally or on a per interface basis:</p>
<pre>
Router(config)#no ip cef
Router(config)#int fa 0/0
Router(config-if)#no ip route-cache
</pre>
<p>If you do it on a per interface basis you need to do it on both the ingress and egress port of the traffic you want to capture, otherwise you will only see it in one direction.</p>
<p>As a final warning, think very carefully before disabling CEF on a production router! You could very easily overload the processor and crash the router.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/07/08/debug-ip-packet-with-no-output/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On Certifications and their Target Audience</title>
		<link>http://www.rxtx.co.uk/2010/05/17/on-certifications-and-their-target-audience/</link>
		<comments>http://www.rxtx.co.uk/2010/05/17/on-certifications-and-their-target-audience/#comments</comments>
		<pubDate>Mon, 17 May 2010 19:16:24 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[ccda]]></category>
		<category><![CDATA[ccna]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[certifications]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=189</guid>
		<description><![CDATA[If you work in a technical field, chances are you will have had to earn some vendor certifications. Personally I hold certs from Cisco, Microsoft and Red Hat, with VMware and Riverbed soon to follow. When you start doing these you tend to just go with the flow and learn what they tell you to [...]]]></description>
			<content:encoded><![CDATA[<p>If you work in a technical field, chances are you will have had to earn some vendor certifications. Personally I hold certs from Cisco, Microsoft and Red Hat, with VMware and Riverbed soon to follow. When you start doing these you tend to just go with the flow and learn what they tell you to learn &#8211; after all who are we to argue with the wisdom of the technical Gods at company x? Once you&#8217;ve done a few though you will find the odd exam where something just isn&#8217;t quite right with regards to the content and the target audience. I&#8217;m going to pick on Cisco here because I&#8217;ve done quite a few of their exam tracks (CCNA, CCNP) and am currently working on another (CCDA). This is applicable to most vendors however.</p>
<p>First a bit of background about Cisco exams. They are organised into three tiers, Associate, Professional and Expert, which correspond to CCxA, CCxP and CCIE tracks respectively. Each tier has different tracks, such as Routing, Security, Voice, Wireless, etc. You can see all the tracks <a href="https://learningnetwork.cisco.com/community/certifications">here</a>, and note I don&#8217;t count CCENT. The idea is that you start as an Associate in your track, move up to Professional, and if you are really hardcore finally end on Expert. The foundation for pretty much every track is the CCNA &#8211; last I checked you had to have this before you could move onto the other tracks.</p>
<p>So lets look at the CCNA exam. If you haven&#8217;t done any networking before its not an easy exam to pass, a lot of things are covered and it can get pretty technical. It also has the problem that it doesn&#8217;t seem to be aimed at anyone in particular, and you don&#8217;t come out of it with knowledge that you can apply to real world problems. On paper it looks great, it covers a lot of ground and all the pieces are there, but it doesn&#8217;t show you how to combine them to make something useful. This is not to be disparaging of people who&#8217;ve done the cert because it takes a lot of work, instead I speak from experience. It wasn&#8217;t until I did the CCNP and gained some real world experience that I learnt how to put the different pieces together. I don&#8217;t want to say the CCNA is a useless cert, but it&#8217;s hard to tell who the target audience is. A small business won&#8217;t need things like managed switches or routing protocols, and a medium to large one will require much more knowledge to set up than you gain in the CCNA. The sweet spot where a CCNA is useful is incredibly narrow. But thats ok because there is also a design syllabus, the CCDA. This should tell us how to pull things together and design our network right?</p>
<p>Not quite. To use a common phrase, I&#8217;d describe the CCDA as covering topics which are a mile wide and an inch deep. To make things even worse, almost all the topics in it are Professional level material. A large part of the exam could be seen as &#8216;CCNP lite&#8217;, with the rest corresponding to &#8216;CCSP lite&#8217; and &#8216;CCVP lite&#8217;. For me this is pretty easy, I&#8217;ve done the CCNP, know a fair bit about the security side of things and just need to learn a little more voice. For a CCNA though, this is a huge expansion of what they know. I would have been massively confused if I had looked at this syllabus straight from doing my CCNA. Even worse none of the topics are covered in any great detail, so by the end of the course while they might understand <em>what</em> they should be doing, they have no idea <em>how</em> to do it. I was expecting the CCDA to be fully focused on pulling together the topics in the CCNA and expanding on them with some basic resilient designs which would suit a small to medium business. The syllabus does cover this (in very small detail), but then adds a load more advanced stuff which is totally inappropriate for the people who would potentially be sitting it. I wouldn&#8217;t go so far as to say CCNP level knowledge is <em>necessary</em> to do the CCDA, but I can&#8217;t see how you would put the CCDA topics into context without it.</p>
<p>Unfortunately you can only make these kind of observations once you are at a much higher level than the target audience by which point it is moot. Until you get there all you can do is realise that sometimes the people who set the syllabus don&#8217;t know best, and if you learn everything they say and it still doesn&#8217;t quite click it is just as likely their fault as it is yours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/05/17/on-certifications-and-their-target-audience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCIE count drops again</title>
		<link>http://www.rxtx.co.uk/2010/02/09/ccie-count-drops-again/</link>
		<comments>http://www.rxtx.co.uk/2010/02/09/ccie-count-drops-again/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 18:18:06 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=62</guid>
		<description><![CDATA[Each month Cisco publish the worldwide CCIE count, which shows how many people have gained certifications over the last month. However it is possible to do a little maths and get a fuller picture &#8211; in this case that the numbers are dropping. The CCIE consists of two parts, the first is a written exam [...]]]></description>
			<content:encoded><![CDATA[<p>Each month Cisco <a href="http://www.cisco.com/web/learning/le3/ccie/certified_ccies/worldwide.html">publish</a> the worldwide CCIE count, which shows how many people have gained certifications over the last month. However it is possible to do a little <a href="http://www.networkworld.com/community/node/57310">maths</a> and get a fuller picture &#8211; in this case that the numbers are dropping.</p>
<p>The CCIE consists of two parts, the first is a written exam which tests basic knowledge and after that you do a day long lab exam. The lab exam is considered to be the hardest of the two, with most people requiring multiple attempts. Once you have the certification, you just need to pass the written exam every few years to keep it.</p>
<p>Without any input from those who didn&#8217;t recertify its hard to work out why they didn&#8217;t bother. Change in job role could account for some but it seems unlikely that this would account for the full 61. Is it just that now there are more people with it, the CCIE is less highly regarded?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/02/09/ccie-count-drops-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infiltrating a botnet</title>
		<link>http://www.rxtx.co.uk/2010/02/08/infiltrating-a-botnet/</link>
		<comments>http://www.rxtx.co.uk/2010/02/08/infiltrating-a-botnet/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 19:22:57 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[botnet]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=58</guid>
		<description><![CDATA[This is a really interesting article from Cisco which gets into the head of someone who controls large botnets for profit. There&#8217;s a slight bit of marketing for the Cisco IPS product in there, but apart from that its a really insightful read. One of the most interesting parts for me was psyche of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cisco.com/web/about/security/intelligence/bots.html">This</a> is a really interesting article from Cisco which gets into the head of someone who controls large botnets for profit. There&#8217;s a slight bit of marketing for the Cisco IPS product in there, but apart from that its a really insightful read.</p>
<p>One of the most interesting parts for me was psyche of the guy that was behind it &#8211; they clearly knew that what they were doing was wrong and that they could get into a lot of trouble for it, but this didn&#8217;t override their urge to show off. Even when the Cisco researcher confessed that he&#8217;d been decieving them the whole time, they happily went along with his next deception and started giving out even more detailed information.</p>
<p>Another bit that really struck me was the amount of paranoia this individual seemed to have to live with, not only due to law enforcement potentially being after him but because of the possibility of his peers stealing his botnet while he slept.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/02/08/infiltrating-a-botnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCNP track updated</title>
		<link>http://www.rxtx.co.uk/2010/01/27/ccnp-track-updated/</link>
		<comments>http://www.rxtx.co.uk/2010/01/27/ccnp-track-updated/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 18:00:03 +0000</pubDate>
		<dc:creator>rxtx</dc:creator>
				<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://www.rxtx.co.uk/?p=15</guid>
		<description><![CDATA[Every now and then Cisco update their exam tracks, and this time its the CCNP&#8217;s turn. Personally, I think the CCNP is hands down the most useful Cisco qualification to have if you work with WAN and LAN networks on a regular basis. The CCNA is too basic to be of much practical use, and [...]]]></description>
			<content:encoded><![CDATA[<p>Every now and then Cisco update their exam tracks, and this time its the CCNP&#8217;s turn. Personally, I think the CCNP is hands down the most useful Cisco qualification to have if you work with WAN and LAN networks on a regular basis. The CCNA is too basic to be of much practical use, and the CCIE is great if you do networks full time but today people tend to expect you to know more than one area.</p>
<p>If you are unfamiliar with the CCNP, the previous track consisted of four exams which can be briefly summed up as follows: BSCI (routing), BCMSN (switching), ONT (QoS + wireless), and ISCW (everything else &#8211; VPNs, DSL, MPLS, security). The new track is three exams.</p>
<p>The <a href="https://learningnetwork.cisco.com/docs/DOC-6393">changes</a> are very interesting &#8211; I always saw the core of this track as being routing and switching and Cisco seem to be acknowledging that with the first two exams, ROUTE and SWITCH. If you delve a bit deeper into the actual exam topics you can see that they&#8217;ve actually cut a lot of the content which isn&#8217;t routing or switching out. ROUTE looks to be basically the BSCI exam, with a very small coverage of the VPN and DSL topics from ISCW. SWITCH is the BCMSN with a bit of security. The third exam is TSHOOT, which is aligning with new CCIE track by adding a dedicated troubleshooting element.</p>
<p>Personally I&#8217;m 50/50 about the changes. Cisco seem to be trying to make each track very specific with no overlaps (the current CCNP has some overlap with the CCVP, CCSP and CCIP), and while I can see why they would want to do this I think it will produce less rounded engineers at the end of it. If you do the current CCNP you come out of it knowing a lot about routing and switching, and enough about everything else that you can work out most issues after a little research. Its kind of the jack of all trades qualification, which you might expect based on the acronym. With the changes it is turning more into the CCR&amp;SP.  However I do like is the inclusion of the troubleshooting section since just setting equipment up in the first place is only the start of your job, you then have to go and support it.</p>
<p>Luckily I got my CCNP just last year so I&#8217;m not affected by the changes, but candidates who are halfway through theirs can either continue with the current track (until July), or substitute BSCI and BCMSN exams they have already completed for ones on the new track. More info on this <a href="http://www.cisco.com/web/learning/le3/le2/le37/le10/learning_certification_type_home.html">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rxtx.co.uk/2010/01/27/ccnp-track-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

