<?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>The IP Blogger</title>
	<atom:link href="http://djimon.net/ipb/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://djimon.net/ipb</link>
	<description>Follow the IT Best Route</description>
	<lastBuildDate>Sat, 04 Feb 2012 15:30:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>OSPFv2 in NX-OS</title>
		<link>http://djimon.net/ipb/?p=172</link>
		<comments>http://djimon.net/ipb/?p=172#comments</comments>
		<pubDate>Thu, 05 Jan 2012 17:29:29 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[DATA CENTERS]]></category>
		<category><![CDATA[nexus]]></category>
		<category><![CDATA[nx-os]]></category>
		<category><![CDATA[ospf]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=172</guid>
		<description><![CDATA[Open Shortest Path First (OSPF) is an adaptive routing protocol for Internet Protocol (IP) networks. It uses a link state routing algorithm and falls into the group of interior routing protocols, operating within a single autonomous system (AS). It is defined as OSPF Version 2 in RFC 2328 (1998) for IPv4. OSPF is an interior [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-182" title="OSPF" src="http://djimon.net/ipb/wp-content/uploads/2012/01/OSPF-areas-150x150.jpg" alt="" width="150" height="150" />Open Shortest Path First (OSPF) is an adaptive routing protocol for Internet Protocol (IP) networks. It uses a link state routing algorithm and falls into the group of interior routing protocols, operating within a single autonomous system (AS). It is defined as OSPF Version 2 in RFC 2328 (1998) for IPv4.</p>
<p>OSPF is an interior gateway protocol that routes Internet Protocol (IP) packets solely within a single routing domain (autonomous system). It gathers link state information from available routers and constructs a topology map of the network. The topology determines the routing table presented to the Internet Layer which makes routing decisions based solely on the destination IP address found in IP packets. OSPF was designed to support variable-length subnet masking (VLSM) or Classless Inter-Domain Routing (CIDR) addressing models.</p>
<p>&nbsp;</p>
<p>In order to configure OSPF on a Nexus switch, you need to think abou tthese steps :</p>
<ol>
<li>Enable OSPF.</li>
<li>Configure the OSPF routing process.</li>
<li>Assign interfaces to the instance tag.</li>
<li>Configure passive interfaces if required.</li>
<li>Configure summarization.</li>
<li>Configure redistribution of other protocols if required.</li>
<li>Verify.</li>
</ol>
<p>&nbsp;</p>
<p>Enabling OSPF :</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>feature ospf</strong></p></blockquote>
<p>You can configure OSPF with a numericac or alphanumeric process ID just like EIGRP.</p>
<blockquote><p>NX7K(config)# <strong>router ospf 100</strong></p></blockquote>
<p>or</p>
<blockquote><p>NX7K(config)# <strong>router ospf Instance1</strong><br />
NX7K(config-router)# <strong>router-id 1.1.1.1</strong></p></blockquote>
<p>The network advertising in NX-OS is more granular than the one in IOS. NX-OS uses a per-interface approach only.</p>
<blockquote><p>NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip router ospf 100 area 0</strong></p></blockquote>
<p>or</p>
<blockquote><p>NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip router ospf Instance1 area 0<br />
</strong></p></blockquote>
<p>Let&#8217;s now configure a passive interface :</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip ospf</strong> <strong>passive-interface ospf 100</strong></p></blockquote>
<p>or if the process ID is alphanumeric :</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip ospf</strong> <strong>passive-interface<br />
</strong></p></blockquote>
<p>&nbsp;</p>
<p>Step 7 : Summarization:</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>router ospf 100</strong><br />
NX7K(config-router)# <strong>area 4 range 100 10.10.128.0/20</strong></p></blockquote>
<p>Where 10.10.128.0/20 is the summary of the routes you are summarizing. The Summarization in OSPF is performed at the area edge router : the ABR (Area Border Router) or ASBR (Autonomous System Border Router).</p>
<p>The configutation of stub areas is the same as in the IOS :</p>
<p>For a stub area :</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>router ospf 100</strong><br />
NX7K(config-router)# <strong>area 4 stub</strong></p></blockquote>
<p>For a totally stubb area :</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>router ospf 100</strong><br />
NX7K(config-router)# <strong>area 4 stub no-summary<br />
</strong></p></blockquote>
<p>&nbsp;</p>
<p>Configuration of a Key Chain:</p>
<blockquote><p>NX7K(config)# <strong>key chain NEXUS</strong><br />
NX7K(config-keychain)# <strong>key 1</strong><br />
NX7K(config-keychain-key)# <strong>key-string NEXUSKEY</strong></p></blockquote>
<p>Configuration of the authentication :</p>
<blockquote><p>NX7K(config)# <strong>router ospf Instance1</strong><br />
NX7K(config-router)#<strong> area 4 authentication message-digest</strong><br />
NX7K(config-router)# <strong>interface vlan 11</strong><br />
NX7K(config-router-if)#<strong>ip ospf authentication key-chain nexus<br />
</strong></p></blockquote>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EIGRP in NX-OS</title>
		<link>http://djimon.net/ipb/?p=146</link>
		<comments>http://djimon.net/ipb/?p=146#comments</comments>
		<pubDate>Tue, 03 Jan 2012 00:45:17 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[DATA CENTERS]]></category>
		<category><![CDATA[eigrp]]></category>
		<category><![CDATA[nexus]]></category>
		<category><![CDATA[nx-os]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=146</guid>
		<description><![CDATA[NX-OS supports an army of Layer 3 technologies : dynamc routing protocols, static routes implementations, policy based routing, HSRP, VRRP and GLBP, just to name a few. &#160; &#160; &#160; &#160;  Ok let&#8217;s talk about EIGRP. According to Wikipedia , Enhanced Interior Gateway Routing Protocol &#8211; (EIGRP) is a Cisco proprietary routing protocol loosely based [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-147" title="eigrp" src="http://djimon.net/ipb/wp-content/uploads/2012/01/9201384_5e52548a2c-150x150.jpg" alt="" width="150" height="150" />NX-OS supports an army of Layer 3 technologies : dynamc routing protocols, static routes implementations, policy based routing, HSRP, VRRP and GLBP, just to name a few.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong> Ok let&#8217;s talk about EIGRP</strong>. According to Wikipedia , Enhanced Interior Gateway Routing Protocol &#8211; (EIGRP) is a Cisco proprietary routing protocol loosely based on their original IGRP. EIGRP is an advanced distance-vector routing protocol, with optimizations to minimize both the routing instability incurred after topology changes, as well as the use of bandwidth and processing power in the router. Routers that support EIGRP will automatically redistribute route information to IGRP neighbors by converting the 32 bit EIGRP metric to the 24 bit IGRP metric. Most of the routing optimizations are based on the Diffusing Update Algorithm (DUAL) work from SRI, which guarantees loop-free operation and provides a mechanism for fast convergence.<strong></strong></p>
<p>&nbsp;</p>
<p>EIGRP stores data in three tables:</p>
<ul>
<li>Neighbor Table: Stores data about the neighboring routers, i.e. those directly accessible through directly connected interfaces.</li>
</ul>
<p>&nbsp;</p>
<ul>
<li>Topology Table: Confusingly named, this table does not store an overview of the complete network topology; rather, it effectively contains only the aggregation of the routing tables gathered from all directly connected neighbors. This table contains a list of destination networks in the EIGRP-routed network together with their respective metrics. Also for every destination, a successor and a feasible successor are identified and stored in the table if they exist. Every destination in the topology table can be marked either as &#8220;Passive&#8221;, which is the state when the routing has stabilized and the router knows the route to the destination, or &#8220;Active&#8221; when the topology has changed and the router is in the process of (actively) updating its route to that destination.</li>
</ul>
<p>&nbsp;</p>
<ul>
<li>Routing table: Stores the actual routes to all destinations; the routing table is populated from the topology table with every destination network that has its successor and optionally feasible successor identified (if unequal-cost load-balancing is enabled using the variance command). The successors and feasible successors serve as the next hop routers for these destinations.</li>
</ul>
<p>&nbsp;</p>
<p>Unlike most other distance vector protocols, EIGRP does not rely on periodic route dumps in order to maintain its topology table. Routing information is exchanged only upon the establishment of new neighbor adjacencies, after which only changes are sent. Also, it uses route tagging.</p>
<p>&nbsp;</p>
<p>In order to configure EIGRP on a Nexus switch, you need to think abou tthese steps :</p>
<ol>
<li>Enable EIGRP.</li>
<li>Configure the EIGRP routing process.</li>
<li>Assign interfaces to the instance tag.</li>
<li>Configure passive interfaces if required.</li>
<li>Configure summarization.</li>
<li>Configure redistribution of other protocols if required.</li>
<li>Verify.</li>
</ol>
<p>Alright, let&#8217;s get our hands in the configuration&#8230; Well first of all you need to enable EIGRP&#8230; confusing at first but easy :</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>feature eigrp</strong></p></blockquote>
<p>&nbsp;</p>
<p>At this point you told your switch &#8221; I want to use EIGRP &#8220;, because yes, in Nexus switches, if you don&#8217;t use a feature, there&#8217;s no reasons to enable it. It makes perfect sense, doesn&#8217;t it ? Now let&#8217;s the fun begin and configure an EIGRP routing instance :</p>
<blockquote><p>NX7K(config)# <strong>router eigrp 100</strong></p></blockquote>
<p>Ok that was easy, what about this ?</p>
<blockquote><p>NX7K(config)# <strong>router eigrp Instance1</strong></p></blockquote>
<p>Yes sir ! You read it &#8230; We now can have alphanumeric string to define the routing instance. But you are probably wondering &#8221; Wait !!! Isn&#8217;t it supposed to be <strong>an AS number</strong> ? &#8221; &#8230; Well well well yes and that&#8217;s why, if you use an alphanumerical string as an instance tag, you need to add an AS number like this :</p>
<blockquote><p>NX7K(config)# <strong>router eigrp Instance1</strong><br />
NX7K(config-router)# <strong>autonomous-system 100</strong></p></blockquote>
<p>&nbsp;</p>
<p>Let&#8217;s now add an interface into the EIGRP process :</p>
<blockquote><p>NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip router eigrp 100</strong></p></blockquote>
<p>or</p>
<blockquote><p>NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip router eigrp Instance1</strong></p></blockquote>
<p>Configuring a passive interface is easy as well, but let&#8217;s just refresh our memory. What on earth is a passive interface ? The &#8216;passive-interface&#8217; command prevents EIGRP (and OSPF) from sending the hello packets out this interface. As a result of that, there is no neighbor adjacency built on that interface and no EIGRP exchange occurs. However, the interface is still enabled for EIGRP and as such the IP address found on the interface (subnet/network) is still being advertised.</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip</strong> <strong>passive-interface eigrp 100</strong></p></blockquote>
<p>Step 7 : Summarization:</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip</strong> <strong>summary-address eigrp 100 10.10.128.0/20</strong></p></blockquote>
<p>10.10.128.0/20 being, of course, the summary of the routes you are summarizing, that goes without saying, right?</p>
<p>One very important thing to do when deploying a routing protocol such as EIGRP on a production network is to actually secure EIGRP with authentication.</p>
<p>Configuration of a Key Chain:</p>
<blockquote><p>NX7K(config)# <strong>key chain NEXUS</strong><br />
NX7K(config-keychain)# <strong>key 1</strong><br />
NX7K(config-keychain-key)# <strong>key-string NEXUSKEY</strong></p></blockquote>
<p>Configuration of the authentication :</p>
<blockquote><p>NX7K(config)# <strong>router eigrp Instance1</strong><br />
NX7K(config-router)# <strong>address-family ipv4 unicast</strong><br />
NX7K(config-router-af)#<strong> authentication mode md5</strong><br />
NX7K(config-router-af)# <strong>authenticationkey-chain NEXUS</strong></p></blockquote>
<p>You noticed the use of the &#8220;address-family2 command allow a more detailed level of control by providing the ability to group protocol attributes. Anyway let&#8217;s now configure the authentication on an interface :</p>
<blockquote><p>NX7K# <strong>conf t</strong><br />
NX7K(config)# <strong>interface e1/1</strong><br />
NX7K(config-if)# <strong>ip authentication mode eigrp Instance1 md5</strong><strong></strong><br />
NX7K(config-if)#<strong> ip authentication key-chain eigrp Instance1 newkey</strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=146</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nexus Switches Layer 2 features</title>
		<link>http://djimon.net/ipb/?p=97</link>
		<comments>http://djimon.net/ipb/?p=97#comments</comments>
		<pubDate>Sun, 01 Jan 2012 16:42:17 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[DATA CENTERS]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[layer2]]></category>
		<category><![CDATA[nexus]]></category>
		<category><![CDATA[spanning tree]]></category>
		<category><![CDATA[vlan]]></category>
		<category><![CDATA[vtp]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=97</guid>
		<description><![CDATA[From a Nexus 5000 perspective, Nexus 2000 Fabric Extenders are seen as line cards. Unlike regular switches, Nexus 2K switches don&#8217;t switch any traffic, Nexus 5K do. Front ports of a Nexus 2K are ONLY used for host connectivity. BPDUGuard is enable by default on all these ports. In the Nexus 7K switches, each module [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-151" title="nexus" src="http://djimon.net/ipb/wp-content/uploads/2012/01/49440976-76DF-46BF-A9AF-8E9FEE9E20C5-150x150.jpg" alt="" width="150" height="150" />From a Nexus 5000 perspective, Nexus 2000 Fabric Extenders are seen as line cards. Unlike regular switches, Nexus 2K switches don&#8217;t switch any traffic, Nexus 5K do. Front ports of a Nexus 2K are ONLY used for host connectivity. BPDUGuard is enable by default on all these ports. In the Nexus 7K switches, each module has its own forwarding table and learns MAC addresses. The results are then flooded to all other modules.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>Vlan Trunking Protocol aka VTP :</strong> NX-OS has four different VTP modes&#8230;YES FOUR&#8230;</p>
<ol>
<li>OFF : In OFF mode, VTP is simply disabled. A Nexus switch in VTP OFF mode will neither send or receive VTP advertisements.</li>
<li>SERVER : You already know about this one. On a VTP SERVER switch you can create, modify and delete VLANs.</li>
<li>CLIENT : Nothing new here either. CLIENTS can send and receive VTP advertisements and upgrade their vlan database but can not add, modify or delete VLANs locally.</li>
<li>TRANSPARENT : These ones transmit VTP advertisements but it will have no impact on their VLAN database.</li>
</ol>
<p>&nbsp;</p>
<p><strong> Private VLANs aka PVLAN are still part of the game :</strong></p>
<p>The concepts behind Private VLANs are in fact rather simple, but it is quite easy to get discombobulated in the details. In their simplest form, PVLANs can dissociate ports within a PVLAN as if they were on separate VLANS, but still allow them to communicate with a common default gateway. i.e. these ports share a subnet, but can be prevented from communicating to each other.</p>
<p>In order to accomplish this we split our VLAN into sub-VLANS and classify these into one of three groups depending on how we want to segregate traffic. These groups are as follows.</p>
<ul>
<li>Promiscuous / P-port: This port type is allowed to send and receive from any other port on the VLAN. Typically this would be connected to a router.</li>
<li>Isolated/ I-port: This type of port is only allowed to communicate with promiscuous ports, they are not only isolated from community ports, but other isolated ports. You commonly see these ports connecting to hosts.</li>
<li>Community / C-port: Can only communicate with other C-ports and P-ports.</li>
</ul>
<p>In our example we’re using VLAN 100 as our primary VLAN. Our host machines will be setup on VLAN 101 which will be configured as Isolated. Our servers will be configured as Community ports on VLAN 102. Essentially, once established, VLAN 100 will forward frames from P-ports to I and C-ports. VLAN 101 and 102 are considered secondary VLANs.</p>
<p><img class="aligncenter" title="pvlan_diagram" src="http://routerjockey.com/wp-content/uploads/2010/05/pvlan_diagram.png" alt="" width="523" height="413" /></p>
<p><em>(source : http://routerjockey.com)</em></p>
<p>&nbsp;</p>
<p><strong> Spanning Tree Protocol is here too, well two different flavors of it :</strong></p>
<ul>
<li>Rapid Per-VLAN Spanning Tree aka Rapid-PVST/802.1w : Rapid per VLAN Spanning Tree (Rapid PVST+) is an updated implementation of STP that allows you to create one<br />
spanning tree topology for each VLAN. Rapid PVST+ is the default STP mode on the switch.</li>
<li>Multiple Spanning Tree aka MST/802.1s : Multiple Spanning Tree (MST) is an IEEE standard inspired from the Cisco proprietary Multiple Instances Spanning Tree Protocol (MISTP) implementation. This document assumes that the reader is familiar with Rapid STP (RSTP) (802.1w), as MST heavily relies on this other IEEE standard.</li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=97</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Myspace, Facebook,Twitter, Google+&#8230;etc&#8230;is internet addiction real?</title>
		<link>http://djimon.net/ipb/?p=87</link>
		<comments>http://djimon.net/ipb/?p=87#comments</comments>
		<pubDate>Fri, 30 Dec 2011 22:21:02 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[MISCELLANEOUS]]></category>
		<category><![CDATA[addiction]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[google+]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[myspace]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=87</guid>
		<description><![CDATA[I remember back in a day when the internet became popular and I used to have a 56Kbps modem that kept the phone line busy. It seems like it really was a long time ago. Then cable connections arrived along with better speed offers. I remember creating my first email address and sending my first [...]]]></description>
			<content:encoded><![CDATA[<p>I remember back in a day when the internet became popular and I used to have a 56Kbps modem that kept the phone line busy. It seems like it really was a long time ago. Then cable connections arrived along with better speed offers. I remember creating my first email address and sending my first messages. I remember spending hours online chatting with people all around the world. The Internet was a revolution.</p>
<p>&nbsp;</p>
<p>Nowadays people, especially teenagers, are really used to browsing the web and use messengers software, blogs and social network sites to communicate. It got to the point that they barely use their phones anymore. Do not get me wrong the Internet is a beautiful tool (for those who know how to use it). But there are inconvenients that come with the territory:</p>
<p>&nbsp;</p>
<ol>
<li>People are not trained to understand the dangers of the Internet. Yes the Internet can be dangerous. Internet rapists, hustlers, identity thieves, hackers exist. And on top of that, they are totally anonymous.</li>
<li>There is no Internet Police Authority or international and homogeneous laws.</li>
<li>Information posted on the internet (personal information included) are archived and visible &#8220;forever&#8221;.</li>
</ol>
<p>&nbsp;</p>
<p>You might want to read this :</p>
<p><img class="alignnone" title="facebook" src="http://www.allfacebook.com/wordpress/wp-content/uploads/2011/10/TIMELINESecurity.png" alt="" width="600" height="2344" /></p>
<p>&nbsp;</p>
<p>On the Internet we now can watch videos, listen to radio, play games, read the news, communicate with friends and family, study, manage our bank accounts, pay our bills, buy clothes and products&#8230;etc&#8230;</p>
<p>If you want to know if you are addicted to the Internet or not, click the image bellow and find out.</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://www.netaddiction.com/index.php?option=com_bfquiz&amp;view=onepage&amp;catid=46&amp;Itemid=106" target="_blank"><img class="aligncenter" title="Internet Addiction Test" src="http://nate1226.files.wordpress.com/2009/01/internet-addict.jpg" alt="" width="420" height="319" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=87</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco NX-OS overview</title>
		<link>http://djimon.net/ipb/?p=71</link>
		<comments>http://djimon.net/ipb/?p=71#comments</comments>
		<pubDate>Fri, 30 Dec 2011 16:11:48 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[DATA CENTERS]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[ISSU]]></category>
		<category><![CDATA[nexus]]></category>
		<category><![CDATA[nx-os]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[VDC]]></category>
		<category><![CDATA[vPC]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=71</guid>
		<description><![CDATA[So we are going to talk about NEXUS. Not the Google phone running Android, don&#8217;t be confused. Nexus switches are a new serie of powerful switches by Cisco designed for Next-Generation Data Center architectures. When I first got my hands on one of these switches, let&#8217;s be honnest, I was a bit lost. But I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-76" title="nexus" src="http://djimon.net/ipb/wp-content/uploads/2011/12/nexus-150x150.jpg" alt="" width="150" height="150" />So we are going to talk about NEXUS. Not the Google phone running Android, don&#8217;t be confused. Nexus switches are a new serie of powerful switches by Cisco designed for Next-Generation Data Center architectures. When I first got my hands on one of these switches, let&#8217;s be honnest, I was a bit lost. But I will let you know why, in a minute. Let&#8217;s just have a quick overview&#8230;</p>
<p>Let&#8217;s not turn arount the pot : The Cisco Nexus switch is a beast !!! Scalability, flexibility, availability, modularity, resiliency, serviceability, virtualization among other things&#8230;</p>
<p>&nbsp;</p>
<p>I will not get into the details too much, but here is a list of features and good points that come with the territory :</p>
<p>&nbsp;</p>
<p><strong>Virtual Device Contexts aka VDC :</strong> This concept can be confusing at first and that&#8217;s why I said I was a bit lost when I got my hands on a Nexus switch. You probably already know what a VRF (Virtual Routing Forwarding Table) is&#8230; No ? Ok, to make a long story short, a VRF is a virtual routing table and in a MPLS VPN architecture, a Provider Edge router (aka PE router) can contain multiple VRFs&#8230;YES a router with multiple routing tables with overlapping IP addressing&#8230; I won&#8217;t get into all that now as it is not our concern at this point.</p>
<p>Well a VDC is, somehow, something kind of similar. Instead of having multiple routing tables on a physical router, how about we take a physical router and we divide it into multiple virtual router instances? Brilliant isn&#8217;t it ? Of course each virtual instance can have its own VRF or VRFs. But you might ask &#8220;What is the point of having virtual routers?&#8221;. The answer is simple : fault isolation, adminstration plane, separation of data traffic and enhanced security.</p>
<p>&nbsp;</p>
<p><strong>Vitual Port Channels aka vPC :</strong> In my early days studying networking concepts , there was one protocol that I could not stand for some reasons : SPANNING-TREE PROTOCOL. I almost hated it with a passion. All these things I needed to understands made me sick : root bridge election , bridge ID, designated/root/blocked ports&#8230;etc.. In a Nexus-based topology, a switch (or a server) can use an etherchannel with two other upstream switches WITHOUT THE NEED FOR A BLOCKED PORT. Yes !!!</p>
<p>You might want to watch that video that actually quickly compare VSS and vPC :</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/8edu9z_m8fI?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>&nbsp;</p>
<p><strong>Non-stop operation :</strong> Ok this is my favorite feature here. You can litterally upgrade your operating system without restarting. It could have been called &#8220;Hot Plug System Operation&#8221; but Cisco called it In-Service Software Upgrade (ISSU). You can maintain, upgrade your system and processes will restart dynamically.</p>
<p>&nbsp;</p>
<p>There&#8217;s so much more to talk about, but I will just stop here for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=71</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I have an interview, what should I do?</title>
		<link>http://djimon.net/ipb/?p=65</link>
		<comments>http://djimon.net/ipb/?p=65#comments</comments>
		<pubDate>Sun, 18 Dec 2011 23:06:32 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[MISCELLANEOUS]]></category>
		<category><![CDATA[advices]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[job hunting]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=65</guid>
		<description><![CDATA[So your resume caught the attention of the Human Resources and/or the IT Manager and they want to meet you for an interview. You really want this job but do not know how to go through an interview. Or you just think you are not good at it. First of all, DO NOT stress. Consider [...]]]></description>
			<content:encoded><![CDATA[<p>So your resume caught the attention of the Human Resources and/or the IT Manager and they want to meet you for an interview. You really want this job but do not know how to go through an interview. Or you just think you are not good at it.</p>
<p>First of all, <strong>DO NOT stress.</strong> Consider this like a meeting. Well if you stress at meetings then something might be wrong with you…</p>
<p>Be yourself, <strong>don’t try to cheat or lie.</strong> That’s probably the best mistake you can make. Don’t give them a chance to blame you and be disappointed. You might not get the job and end up being blacklisted by the company.</p>
<p>The recruiters don’t expect you to just read your resume. They want to know what is not written in it. The way you faced certain situations, how you’ve been able to deploy the solution in time, how you’ve been able to convince the client to update its network or change the network architecture, how you’ve dealt with difficult situations with your coworkers…etc…</p>
<p>They also want to know your personality, qualities and drawbacks. Be humble when mentionning your qualities : do NOT tell them «  I am the best engineer in the market ». Oh and of course , do NOT tell them «  I don’t have any drawbacks ». As a matter of fact, when you let them know about your drawbacks, they will expect you to explain what you are doing to reduce these drawbacks. For instance, if you are shy, you might take part of comedian classes and tell them you do. Recruiters will always appreciate the fact that you are trying to improve yourself.</p>
<p>Just like in your objective section in your resume, make sure you emphase every aspect of your experience that might be useful for the job you applied to. You need to make them feel like you are the guy they need for this position.</p>
<p>Make sure you have a few questions to ask. Questions about the job like «  What is the day to day duty ? », « Will I work alone or will I be part of a team ? ». See you are already considering that you got the job. You really need to show your interest in this job.</p>
<p>&nbsp;</p>
<p><strong>Be natural and give your best, you will have no regret.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=65</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview for a job in the Networking field : Technical questions pt1</title>
		<link>http://djimon.net/ipb/?p=52</link>
		<comments>http://djimon.net/ipb/?p=52#comments</comments>
		<pubDate>Sat, 17 Dec 2011 01:00:38 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[MISCELLANEOUS]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[job hunting]]></category>
		<category><![CDATA[questions]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=52</guid>
		<description><![CDATA[&#160; So you are looking for a job as a network engineer and you know they are going to know your level of expertise. You need to prepare. Maybe this is your first interview and you don&#8217;t know what to expect. Well here is a few questions that can be asked during an interview : [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>So you are looking for a job as a network engineer and you know they are going to know your level of expertise. You need to prepare. Maybe this is your first interview and you don&#8217;t know what to expect. Well here is a few questions that can be asked during an interview :</p>
<p>&nbsp;</p>
<p><strong>What is a “floating static” route?</strong><br />
<strong>What is a route-map? Name three configurations that might reference a route-map.</strong><br />
<strong>What is a jumbo packet? How would you enable jumbo packet support on a Cisco device? </strong><br />
<strong>What is netflow and how is it used?</strong></p>
<p>&nbsp;</p>
<p><strong>An OSPF area is configured as “totally stubby” What will “show ip route ospf” reveal at the CLI?</strong><br />
<strong>Please draw a layer 1 network diagram</strong><br />
<strong>Please draw a layer 2 network diagram</strong><br />
<strong>Please draw a layer 3 network diagram</strong></p>
<p>&nbsp;</p>
<p><strong>Difference between hub, bridge and switch?</strong><br />
<strong>What is mac address and why it is required?</strong><br />
<strong>What is arp and why it is required?</strong><br />
<strong>What is Spanning Tree Protocol aka STP?</strong></p>
<p>&nbsp;</p>
<p><strong>What is the difference between broadcast and collision domain?</strong><br />
<strong>Define type of lan traffic.</strong><br />
<strong>What is destination address of broadcast frame?</strong><br />
<strong>What is BPDU?</strong></p>
<p>&nbsp;</p>
<p><strong>Define selection criteria of STP root bridge.</strong><br />
<strong>How does non bridge decide which port will elect as root port?</strong><br />
<strong>If a nonroot bridge has two redundant ports with the same root path cost, how does the bridge choose which port will be the root port?</strong><br />
<strong>Port states of spanning tree protocol.</strong></p>
<p>&nbsp;</p>
<p><strong>Why spanning tree BPDU filter is used?</strong><br />
<strong>Can I use BPDU filter on trunk ports?</strong><br />
<strong>What is port security?</strong><br />
<strong>I want to learn only a single mac from the port, what need to be configured?</strong></p>
<p>&nbsp;</p>
<p><strong>Can we use spanning port-fast on trunk ports?</strong><br />
<strong>Difference between trunk and access port?</strong><br />
<strong>What is UDLD and why it is required?</strong><br />
<strong>What is interface vlan on switch?</strong></p>
<p>&nbsp;</p>
<p><strong>What is MPLS and why it is being so popular in short time?</strong><br />
<strong>What is the protocol used by MPLS?</strong><br />
<strong>MPLS works on which layer?</strong><br />
<strong>What is the difference between P and PE router?</strong></p>
<p>&nbsp;</p>
<p><strong>My LDP router id, OSPF router id and BGP router id is different, will it work to forward the traffic of customers or not?</strong><br />
<strong>What is </strong><strong> PHP and why it is required? Which router performs the PHP function?</strong><br />
<strong>What are the different types of labels?</strong><br />
<strong>What is the difference between RD and RT?</strong></p>
<p>&nbsp;</p>
<p><strong>What is a VRF?</strong><br />
<strong>How to filter MPLS labels?</strong><br />
<strong>What is the default range of MPLS labels in Cisco routers? How to extend that range?</strong><br />
<strong>Without route reflector can I implement MPLS?</strong></p>
<p>&nbsp;</p>
<p><strong>What is the difference between VPNv4 and IPv4 address family?</strong><br />
<strong>What is MP-iBGP? Can we use normal BGP in lieu of MP-iBGP?</strong><br />
<strong>What is LIB?</strong><br />
<strong>What is LFIB?</strong></p>
<p>&nbsp;</p>
<p><strong>What is CEF and without enabling CEF, can we make MPLS work?</strong><br />
<strong>What is explicit null and implicit null?</strong><br />
<strong>Default timers of LDP?</strong><br />
<strong>What is transport address?</strong></p>
<p>&nbsp;</p>
<p><strong>What is the difference between MPLS, SSL and IPSec?</strong><br />
<strong>Why MPLS is called MULTI PROTOCOL?</strong><br />
<strong>Does MPLS support IPv6?</strong><br />
<strong>What is Forwarding Equivalent Class (FEC) ?</strong></p>
<p>&nbsp;</p>
<p><strong>What is adjacency table ?</strong><br />
<strong>BGP is IGP or EGP?</strong><br />
<strong>BGP is link state or distance vector protocol?</strong><br />
<strong>When to use BGP?</strong></p>
<p>&nbsp;</p>
<p><strong>Can I use BGP instead of any IGP?</strong><br />
<strong>What is Autonomous System?</strong><br />
<strong>Type of BGP routing table ?</strong><br />
<strong>What is the BGP path selection criteria?</strong></p>
<p>&nbsp;</p>
<p><strong>Define various BGP path attributes?</strong><br />
<strong>Why weight doesn’t fall under path attribute category?</strong><br />
<strong>What is confederation?</strong><br />
<strong>What is route reflector and why it is required?</strong></p>
<p>&nbsp;</p>
<p><strong>What is no-synchronization rule?</strong><br />
<strong>Default BGP timers?</strong><br />
<strong>When does BGP use 0.0.0.0 router id?</strong></p>
<p>&nbsp;</p>
<p>More to come soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=52</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for a job in the IT field?</title>
		<link>http://djimon.net/ipb/?p=35</link>
		<comments>http://djimon.net/ipb/?p=35#comments</comments>
		<pubDate>Wed, 14 Dec 2011 23:17:53 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[MISCELLANEOUS]]></category>
		<category><![CDATA[IT field]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[job hunting]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[resume]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=35</guid>
		<description><![CDATA[Looking for a job in the IT field can be pretty time consuming if you want to do it well. If you think you will get a good job, better yet The Dream Job just by uploading a resume online, hmm you might be a little bit wrong. There are things you need to know. [...]]]></description>
			<content:encoded><![CDATA[<p>Looking for a job in the IT field can be pretty time consuming if you want to do it well.</p>
<p>If you think you will get a good job, better yet The Dream Job just by uploading a resume online, hmm you might be a little bit wrong. There are things you need to know.</p>
<p>When you apply to a job online on sites like Monster, you have to keep in mind that there are other people job hunting who will apply to the same job. It is obvious but trust me, some people don’t even realize that they are not alone in the world. So by applying on Monster you will have to face competition.</p>
<p>If you want to avoid it, you have to find a job via your network. You need to know or get to know people on your field : engineers, managers, recruiters…etc… And don’t be scared, contact them directly and ask them if they have any opening available or coming soon or if they know anybody hiring. This strategy gives surprising results if you do it well. You might get jobs that are not online or officially available yet.</p>
<p>Weither you apply online or not, your resume has to be taylor made. It has to match the job description as much as possible. For instance if a big Fortune 500 company is looking for a network administrator, you might want to emphase the fact that you already worked in big companies, that you are a team player and have experience troubleshooting LAN and WAN Cisco networks. You might also want to let know that you know about protocols like OSPF, BGP and Spanning-Tree protocol… I am sure you get the idea.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=35</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CiscoPress MPLS Fundamentals</title>
		<link>http://djimon.net/ipb/?p=25</link>
		<comments>http://djimon.net/ipb/?p=25#comments</comments>
		<pubDate>Wed, 14 Dec 2011 19:34:51 +0000</pubDate>
		<dc:creator>Adams AJAVON</dc:creator>
				<category><![CDATA[ROUTING]]></category>
		<category><![CDATA[BGP]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[fundamentals]]></category>
		<category><![CDATA[label switching]]></category>
		<category><![CDATA[LDP]]></category>
		<category><![CDATA[MP-BGP]]></category>
		<category><![CDATA[mpls]]></category>
		<category><![CDATA[traffic engineering]]></category>

		<guid isPermaLink="false">http://djimon.net/ipb/?p=25</guid>
		<description><![CDATA[MPLS has emerged as the new networking layer for service providers throughout the world. For many service providers and enterprises MPLS is a way of delivering new applications on their IP networks, while consolidating data and voice networks. MPLS has grown to be the new default network layer for service providers and is finding its [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-187" title="mpls" src="http://djimon.net/ipb/wp-content/uploads/2011/12/mpls12.jpg" alt="" width="618" height="348" />MPLS has emerged as the new networking layer for service providers throughout the world. For many service providers and enterprises MPLS is a way of delivering new applications on their IP networks, while consolidating data and voice networks. MPLS has grown to be the new default network layer for service providers and is finding its way into enterprise networks as well. This book focuses on the building blocks of MPLS (architecture, forwarding packets, LDP, MPLS and QoS, CEF, etc.). This book also reviews the different MPLS applications (MPLS VPN, MPLS Traffic Engineering, Carrying IPv6 over MPLS, AToM, VPLS, MPLS OAM&#8230;etc.).</p>
<p>This book will help you understand Multi Protocol Label Switching (aka MPLS) and implement it. Also if you are working on your CCIE Routing and Switching or Service Provider certification, you need this book.</p>
<p>It is nicely explained and there is no way for you to not understand concepts like LDP, IP CEF, MP-BGP or Traffic Engineering with this book. You will get a comprehensive overview of all the aspects of MPLS, including the building blocks, its applications, troubleshooting and a perspective on the future of MPLS.</p>
]]></content:encoded>
			<wfw:commentRss>http://djimon.net/ipb/?feed=rss2&#038;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

