<?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>CCIE Blog &#187; CCIE</title>
	<atom:link href="http://blog.ipexpert.com/tags/ccie/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ipexpert.com</link>
	<description>CCIE Candidates blog for all technical overviews relating to CCIE R&#38;S, CCIE Voice, CCIE Security &#38; CCIE SP</description>
	<lastBuildDate>Wed, 08 Feb 2012 15:19:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Multi-Homed BGP and Policy-Based Routing</title>
		<link>http://blog.ipexpert.com/2012/02/08/multi-homed-bgp-and-policy-based-routing/</link>
		<comments>http://blog.ipexpert.com/2012/02/08/multi-homed-bgp-and-policy-based-routing/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 15:19:19 +0000</pubDate>
		<dc:creator>Marko Milivojevic</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[Routing & Switching]]></category>
		<category><![CDATA[Service Provider]]></category>
		<category><![CDATA[BGP]]></category>
		<category><![CDATA[PBR]]></category>
		<category><![CDATA[r&s]]></category>
		<category><![CDATA[sp]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10117</guid>
		<description><![CDATA[This blog explores another interesting question a student of ours asked the other day. His network is dual-homed to two ISPs on a single router. He wanted to make sure one of his subnets is always routed over ISP-1 and the other over ISP-2, unless there is a network failure. There was also a requirement [...]]]></description>
			<content:encoded><![CDATA[<p>This blog explores another interesting question a student of ours asked the other day. His network is dual-homed to two ISPs on a single router. He wanted to make sure one of his subnets is always routed over ISP-1 and the other over ISP-2, unless there is a network failure. There was also a requirement for the return traffic to take the same route, i.e. no asymmetric routing. This will be a fun one to solve.<span id="more-10117"></span></p>
<p>First of all, let&#8217;s take a look at the testbed network we can use for this situation.</p>
<p>&nbsp;</p>
<p><img title="BGP-PBR" src="http://blog.ipexpert.com/wp-content/uploads/2012/02/BGP-PBR.png" alt="BGP-PBR" />&nbsp;</p>
<p>In this scenario, routers R2 and R5 represent the two ISPs. Routers R6 and R9 represent our internal network, with two subnets we need to route differently represented by Loopback interfaces Loopback9 (9.9.9.0/24 subnet) and Loopback99 (from a 99.99.99.0/24 subnet) on R9. Router R4 represents a host &#8220;somewhere&#8221; on the Internet we&#8217;ll be using for testing. We&#8217;ll pretend to have no access to change any configurations on Internet routers, so only routers R6 and R9 are available to us. Let&#8217;s see the initial configurations and clarify few things there.</p>
<h2>Initial Network Configuration</h2>
<p>R2:</p>
<pre class="config">interface GigabitEthernet0/0
 ip address 172.16.24.2 255.255.255.0
!
interface GigabitEthernet0/1
 ip address 172.16.26.2 255.255.255.0
!
router bgp 65002
 neighbor 172.16.24.4 remote-as 65004
 neighbor 172.16.26.6 remote-as 65069
 address-family ipv4
  neighbor 172.16.24.4 activate
  neighbor 172.16.24.4 send-community
  neighbor 172.16.26.6 activate
  neighbor 172.16.26.6 send-community
!</pre>
<p>Router R4 is a dual-homed, just like our AS is. We&#8217;re using a simple configuration to prevent transit. We will apply a very similar configuration in our AS later.</p>
<p>R4:</p>
<pre class="config">interface Loopback4
 ip address 10.0.0.4 255.255.255.255
!
interface FastEthernet0/0
 ip address 172.16.24.4 255.255.255.0
!
interface FastEthernet0/1
 ip address 172.16.45.4 255.255.255.0
!
router bgp 65004
 neighbor 172.16.24.2 remote-as 65002
 neighbor 172.16.45.5 remote-as 65005
 address-family ipv4
  neighbor 172.16.24.2 activate
  neighbor 172.16.24.2 send-community
  neighbor 172.16.24.2 route-map NO-TRANSIT in
  neighbor 172.16.45.5 activate
  neighbor 172.16.45.5 send-community
  neighbor 172.16.45.5 route-map NO-TRANSIT in
  network 10.0.0.4 mask 255.255.255.255
!
route-map NO-TRANSIT permit 10
 set community no-advertise
!</pre>
<p>R5:</p>
<pre class="config">interface FastEthernet0/0
 ip address 172.16.56.5 255.255.255.0
!
interface FastEthernet0/1
 ip address 172.16.45.5 255.255.255.0
!
router bgp 65005
 neighbor 172.16.45.4 remote-as 65004
 neighbor 172.16.56.6 remote-as 65069
 address-family ipv4
  neighbor 172.16.45.4 activate
  neighbor 172.16.45.4 send-community
  neighbor 172.16.56.6 activate
  neighbor 172.16.56.6 send-community
!</pre>
<p>Similarly to the configuration on R4, we need to prevent the transit between our ISPs. However, we can&#8217;t use the &#8220;no-advertise&#8221; community here, since we need to advertise the received route(s) to R9. This is easily fixed using &#8220;no-export&#8221; community instead.</p>
<p>R6:</p>
<pre class="config">interface FastEthernet0/0
 ip address 172.16.56.6 255.255.255.0
!
interface FastEthernet0/1
 ip address 172.16.26.6 255.255.255.0
!
interface Serial0/2/0
 ip address 192.168.69.6 255.255.255.0
!
router bgp 65069
 neighbor 172.16.26.2 remote-as 65002
 neighbor 172.16.56.5 remote-as 65005
 neighbor 192.168.69.9 remote-as 65069
 address-family ipv4
  neighbor 172.16.26.2 activate
  neighbor 172.16.26.2 send-community
  neighbor 172.16.26.2 route-map NO-TRANSIT in
  neighbor 172.16.56.5 activate
  neighbor 172.16.56.5 send-community
  neighbor 172.16.56.5 route-map NO-TRANSIT in
  neighbor 192.168.69.9 activate
  neighbor 192.168.69.9 send-community
  neighbor 192.168.69.9 next-hop-self
!
route-map NO-TRANSIT permit 10
 set community no-export
!</pre>
<p>R9:</p>
<pre class="config">interface Loopback9
 ip address 9.9.9.9 255.255.255.255
!
interface Loopback99
 ip address 99.99.99.99 255.255.255.255
!
interface Serial0/2/0
 ip address 192.168.69.9 255.255.255.0
!
router bgp 65069
 neighbor 192.168.69.6 remote-as 65069
 address-family ipv4
  neighbor 192.168.69.6 activate
  neighbor 192.168.69.6 send-community
  network 9.9.9.0 mask 255.255.255.0
  network 99.99.99.0 mask 255.255.255.0
!</pre>
<p>At this point, router R9 should be able to reach Loopback4 interface advertised by R4 from its Loopback9 and Loopback99 interfaces. Let&#8217;s give it a go.</p>
<p>R9:</p>
<pre>R9#ping 10.0.0.4 source Loopback9

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.4, timeout is 2 seconds:
Packet sent with a source address of 9.9.9.9
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/3/4 ms
R9#ping 10.0.0.4 source Loopback99

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.4, timeout is 2 seconds:
Packet sent with a source address of 99.99.99.99
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms</pre>
<p>This works as expected. Now, lets&#8217; work on our &#8220;traffic engineering&#8221;.</p>
<h2>Chosing Different Paths from R9</h2>
<p>Let&#8217;s say that our goal is to make the traffic between 9.9.9.0/24 and 10.0.0.0/24 take the path R9-&gt;R6-&gt;R2-&gt;R4, while the traffic between 99.99.99.0/24 needs to take the R9-&gt;R6-&gt;R5-&gt;R4 path. We can easily fix this issue using a simple policy-based routing (PBR) configuration on R6.</p>
<p>All we need is to match the source of traffic when it enters R6 from R9 and force it down the specific path. For example, a policy like this may do the trick.</p>
<pre class="config">ip access-list standard Network-9
 permit 9.9.9.0 0.0.0.255
!
ip access-list standard Network-99
 permit 99.99.99.0 0.0.0.255
!
route-map Force-Path permit 10
 match ip address Network-9
 set ip next-hop 172.16.26.2
!
route-map Force-Path permit 20
 match ip address Network-99
 set ip next-hop 172.16.56.5
!
interface Serial0/2/0
 ip policy route-map Force-Path
!</pre>
<p>We could apply this policy and be done with it. However, there are couple of problems with this. What if the next-hop is not reachable? For example, the remote router crashes, the switch between R6 and R2/R5 drops the packets, etc? We would be black-holing the traffic. This is not a good thing in any kind of a production environment. Is there a way to solve this? As it turns out, there is. We can actually monitor the exit interface, next-hop route, as well as the next-hop itself, using object tracking. We can then have a conditional policy that will be taken into account only when all of these parameters are in place and operational. So, the policy I&#8217;m going to apply is <em>a little bit</em> more involved:</p>
<p>R6:</p>
<pre class="config">ip access-list standard Network-9
 permit 9.9.9.0 0.0.0.255
!
ip access-list standard Network-99
 permit 99.99.99.0 0.0.0.255
!
track 2 list boolean and
 object 21
 object 22
 object 23
!
track 5 list boolean and
 object 51
 object 52
 object 53
!
track 21 interface FastEthernet0/1 ip routing
track 22 ip route 172.16.26.0 255.255.255.0 reachability
track 23 ip sla 2
track 51 interface FastEthernet0/0 ip routing
track 52 ip route 172.16.56.0 255.255.255.0 reachability
track 53 ip sla 2
!
ip sla 2
 icmp-echo 172.16.26.2 source-ip 172.16.26.6
ip sla schedule 2 life forever start-time now
!
ip sla 5
 icmp-echo 172.16.56.5 source-ip 172.16.56.6
ip sla schedule 5 life forever start-time now
!
route-map Force-Path permit 10
 match ip address Network-9
 set ip next-hop verify-availability 172.16.26.2 10 track 2
!
route-map Force-Path permit 20
 match ip address Network-99
 set ip next-hop verify-availability 172.16.56.5 10 track 5
!
interface Serial0/2/0
 ip policy route-map Force-Path
!</pre>
<p>That&#8217;s a lot to handle in one go. Let&#8217;s break it down a little bit. First off, I start by defining track lists. Track lists are simply multiple tracking objects that will be compared using a single boolean logic. In this case, I have three sub-objects I&#8217;m tracking and I&#8217;m combining them using &#8220;and&#8221; logic. In plain English, this means the track list will be &#8220;up&#8221; if all monitored sub-objects are &#8220;up&#8221;. The three objects are exit interface&#8217;s routing status, next-hop route and the next-hop reachability, which we monitor using IP SLA ICMP-Echo (ping) probe. Finally, it all comes together in a route-map, which uses &#8220;verify-availability&#8221; keyword to track the next-hop. Let&#8217;s see if it all works.</p>
<p>R6:</p>
<pre>R6#show track 2
Track 2
  List boolean and
  Boolean AND is Up
    2 changes, last change 00:03:34
    object 21 Up
    object 22 Up
    object 23 Up
  Tracked by:
    ROUTE-MAP 0

R6#show track 5
Track 5
  List boolean and
  Boolean AND is Up
    2 changes, last change 00:03:36
    object 51 Up
    object 52 Up
    object 53 Up
  Tracked by:
    ROUTE-MAP 0

R6#show ip policy
Interface      Route map
Serial0/2/0    Force-Path</pre>
<p>R9:</p>
<pre>R9#traceroute 10.0.0.4 source Loopback9 

Type escape sequence to abort.
Tracing the route to 10.0.0.4

  1 192.168.69.6 0 msec 4 msec 0 msec
  2 172.16.26.2 4 msec 0 msec 0 msec
  3 172.16.24.4 4 msec *  0 msec

R9#traceroute 10.0.0.4 source Loopback99

Type escape sequence to abort.
Tracing the route to 10.0.0.4

  1 192.168.69.6 4 msec 0 msec 0 msec
  2 172.16.56.5 4 msec 0 msec 4 msec
  3 172.16.45.4 0 msec *  0 msec</pre>
<p>This seems to be working, as we expected. What about the return traffic?</p>
<p>R4:</p>
<pre>R4#traceroute 9.9.9.9 source Loopback4

Type escape sequence to abort.
Tracing the route to 9.9.9.9

  1 172.16.24.2 0 msec 0 msec 4 msec
  2 172.16.26.6 0 msec 0 msec 0 msec
  3 192.168.69.9 0 msec *  0 msec
R4#traceroute 99.99.99.99 source Loopback4

Type escape sequence to abort.
Tracing the route to 99.99.99.99

  1 172.16.24.2 0 msec 0 msec 4 msec
  2 172.16.26.6 0 msec 4 msec 0 msec
  3 192.168.69.9 0 msec *  0 msec</pre>
<p>We can clearly see that R4 is preferring the path R4-&gt;R2-&gt;R6-?R9 for both destinations. This means that the traffic between 10.0.0.0/24 and 99.99.99.0/24 networks is taking the asymmetric route, which was one of the things we needed to avoid. Let&#8217;s handle that part now.</p>
<h2>Chosing Different Paths from R4</h2>
<p>Let&#8217;s not be misguided by the subtitle. Remember that R4 is just another Internet host. We can&#8217;t modify any configuration on it, yet we need to influence the decisions it makes.</p>
<p>Possibly the simplest solution in this case would be to take the 9.9.9.0/24 network and prepend our AS when advertising it to R5 and do the same for 99.99.99.0/24 when advertising to R2. In the lab environment, this works like a charm. In real life, all our prepending can be easily overridden with a higher local preference or a similar thing. We can only <em>hint</em> our preference for the incoming traffic &#8211; we cannot decide it. It would also be a very simple thing to do. I don&#8217;t like simple things, so let&#8217;s complicate our solution a little bit.</p>
<p>There is one thing in IP routing that trumps all weights, local preferences and as-paths of this world. It&#8217;s a rule that &#8220;more specific route always wins&#8221;. How about we use that solution for our return traffic? Let&#8217;s inject 9.9.9.0/25 and 9.9.9.128/25 towards R2, and 99.99.99.0/25 and 99.99.99.128/25 towards R5. That way, R2 will advertise more specific 9.0.0.0/24 subnets and R5 will do the same for 99.0.0.0/24. To prevent black-holing, we&#8217;ll keep advertising both original /24 routes to both R2 and R5. Let&#8217;s take a look at that solution.</p>
<p>R6:</p>
<pre class="config">ip prefix-list Network-Inject-9 seq 10 permit 9.9.9.0/25
ip prefix-list Network-Inject-9 seq 20 permit 9.9.9.128/25
!
ip prefix-list Network-Inject-99 seq 10 permit 99.99.99.0/25
ip prefix-list Network-Inject-99 seq 20 permit 99.99.99.128/25
!
ip prefix-list Network-Match-9 seq 10 permit 9.9.9.0/24
!
ip prefix-list Network-Match-99 seq 10 permit 99.99.99.0/24
!
ip prefix-list R9 seq 5 permit 192.168.69.9/32
!
route-map Inject permit 10
 set ip address prefix-list Network-Inject-9
!
route-map Inject permit 20
 set ip address prefix-list Network-Inject-99
!
route-map Match permit 10
 match ip address prefix-list Network-Match-9
 match ip route-source prefix-list R9
!
route-map Match permit 20
 match ip address prefix-list Network-Match-99
 match ip route-source prefix-list R9
!
route-map Filter-Specific-R2 deny 10
 match ip address prefix-list Network-Inject-99
!
route-map Filter-Specific-R2 permit 20
!
route-map Filter-Specific-R5 deny 10
 match ip address prefix-list Network-Inject-9
!
route-map Filter-Specific-R5 permit 20
!
router bgp 65069
 address-family ipv4
  bgp inject-map Inject exist-map Match copy-attributes
  neighbor 172.16.26.2 route-map Filter-Specific-R2 out
  neighbor 172.16.56.5 route-map Filter-Specific-R5 out
!</pre>
<p>Again, quite a long configuration is in front of us. To solve the problem at hand, I&#8217;m using a BGP feature called &#8220;inject-map&#8221;. This feature works by referencing two route-maps, one to specify the routes to be injected and the other one to specify when these routes should be injected. In this case, my injection map is called &#8220;Inject&#8221; and the selection route-map is called &#8220;Match&#8221;. This is where simplicity ends and &#8220;IOS mind tricks&#8221; begin.</p>
<p>BGP inject-map feature is a tricky one. The &#8220;match&#8221; route-map <strong>must</strong> use two prefix-lists; one to match the source of the route (in our case a prefix-list called R9) and the second one to specify the routes to be considered as a condition for injection. We&#8217;re using two separate routes as triggers and for some odd reason, we must use two route-map entries to solve this problem. Each of these entries specifies a different prefix-list for the trigger route (Network-Match-9 and Network-Match-99).</p>
<p>The &#8220;injection&#8221; route-map works in a similar fashion. We have two-entry route-map, which uses two separate prefix-lists to inject more specific routes. These prefix-lists are Network-Inject-9 and Network-Inject-99. At this point, we should have all those more-specific routes in the BGP table on R6.</p>
<p>R6:</p>
<pre>R6#show ip bgp | begin Network
   Network          Next Hop            Metric LocPrf Weight Path
<span style="background-color: yellow; color: black;">*&gt;i9.9.9.0/25       192.168.69.9             0    100      0 i</span>
*&gt;i9.9.9.0/24       192.168.69.9             0    100      0 i
<span style="background-color: yellow; color: black;">*&gt;i9.9.9.128/25     192.168.69.9             0    100      0 i</span>
*&gt; 10.0.0.4/32      172.16.26.2                            0 65002 65004 i
*                   172.16.56.5                            0 65005 65004 i
<span style="background-color: yellow; color: black;">*&gt;i99.99.99.0/25    192.168.69.9             0    100      0 i</span>
*&gt;i99.99.99.0/24    192.168.69.9             0    100      0 i
<span style="background-color: yellow; color: black;">*&gt;i99.99.99.128/25  192.168.69.9             0    100      0 i</span></pre>
<p>The very last bit is to make sure the injected routes are advertised only to those neighbors we want them advertised to. For this purpose, I used Filter-Specific-R2 and Filter-Specific-R5 route-maps. If we examine routes received from R6 on R2 and R5, we should see a different picture on each.</p>
<p>R2:</p>
<pre>R2#show ip bgp neighbors 172.16.26.6 routes | begin Network
   Network          Next Hop            Metric LocPrf Weight Path
*&gt; 9.9.9.0/25       172.16.26.6                            0 65069 i
*&gt; 9.9.9.0/24       172.16.26.6                            0 65069 i
*&gt; 9.9.9.128/25     172.16.26.6                            0 65069 i
*&gt; 99.99.99.0/24    172.16.26.6                            0 65069 i

Total number of prefixes 4</pre>
<p>R5:</p>
<pre>R5#show ip bgp neighbors 172.16.56.6 routes | begin Network
   Network          Next Hop            Metric LocPrf Weight Path
*&gt; 9.9.9.0/24       172.16.56.6                            0 65069 i
*&gt; 99.99.99.0/25    172.16.56.6                            0 65069 i
*&gt; 99.99.99.0/24    172.16.56.6                            0 65069 i
*&gt; 99.99.99.128/25  172.16.56.6                            0 65069 i

Total number of prefixes 4</pre>
<p>This is exactly what I wanted to see. Last, but not the least, the routing table on R4 should also tell us that our solution worked. We&#8217;ll also confirm all this with two tracroutes.</p>
<p>R4:</p>
<pre>R4#show ip route bgp
     99.0.0.0/8 is variably subnetted, 3 subnets, 2 masks
B       99.99.99.0/25 [20/0] via 172.16.45.5, 00:09:26
B       99.99.99.0/24 [20/0] via 172.16.45.5, 00:09:26
B       99.99.99.128/25 [20/0] via 172.16.45.5, 00:09:26
     9.0.0.0/8 is variably subnetted, 3 subnets, 2 masks
B       9.9.9.0/25 [20/0] via 172.16.24.2, 00:09:25
B       9.9.9.0/24 [20/0] via 172.16.45.5, 00:09:26
B       9.9.9.128/25 [20/0] via 172.16.24.2, 00:09:25

R4#traceroute 9.9.9.9 source Loopback4    

Type escape sequence to abort.
Tracing the route to 9.9.9.9

  1 172.16.24.2 0 msec 0 msec 4 msec
  2 172.16.26.6 0 msec 0 msec 0 msec
  3 192.168.69.9 0 msec *  0 msec

R4#traceroute 99.99.99.99 source Loopback4

Type escape sequence to abort.
Tracing the route to 99.99.99.99

  1 172.16.45.5 0 msec 0 msec 0 msec
  2 172.16.56.6 4 msec 0 msec 0 msec
  3 192.168.69.9 4 msec *  0 msec</pre>
<p>There we go, a perfect solution, for a very real problem. Do you have an alternative solution to this? If you do, please post it in the comments below!</p>
<p>Happy studies!</p>
<p>&#8211;<br />
<a href="http://facebook.com/ccie18427" target="_blank">Marko Milivojevic</a> &#8211; CCIE #18427<br />
Senior CCIE Instructor &#8211; <a href="http://www.ipexpert.com/" target="_blank">IPexpert</a><br />
Join our <a href="http://www.onlinestudylist.com/" target="_blank">Online Study List</a></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/08/multi-homed-bgp-and-policy-based-routing/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/08/multi-homed-bgp-and-policy-based-routing/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/08/multi-homed-bgp-and-policy-based-routing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPexpert’s February Newsletter For Cisco Certification Candidates</title>
		<link>http://blog.ipexpert.com/2012/02/07/ipexpert%e2%80%99s-february-newsletter-for-cisco-certification-candidates/</link>
		<comments>http://blog.ipexpert.com/2012/02/07/ipexpert%e2%80%99s-february-newsletter-for-cisco-certification-candidates/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 18:36:27 +0000</pubDate>
		<dc:creator>Sanjana Desai</dc:creator>
				<category><![CDATA[General Announcements]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[ccna]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[Cisco Certification]]></category>
		<category><![CDATA[r&s]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Voice]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10115</guid>
		<description><![CDATA[Check out our Monthly Cisco Certification Training Newsletterfor news on how you can save $1500 on the CCIE BLS and Win a Free CCNA or CCNP Bootcamp Course. Register for the CCIE R&#38;S Written and Lab Fundamentals Course with Special Guest CCIE Instructors and Demo our NEW IPv4/6 Multicast Operation and Troubleshooting Guide. Print Friendly]]></description>
			<content:encoded><![CDATA[<p>Check out our<strong> </strong><strong><a href="http://www.imakenews.com/ipexpert/index000572010.cfm?x=bksVhCk,bjy7P8v7,w"><strong>Monthly Cisco Certification Training Newsletter</strong></a></strong>for news on how you can save <a href="http://www.imakenews.com/ipexpert/e_article002342203.cfm?x=bksVhCk,bjy7P8v7,w">$1500 on the CCIE BLS</a> and Win a <a href="http://www.imakenews.com/ipexpert/e_article002339035.cfm?x=bksVhCk,bjy7P8v7,w">Free CCNA or CCNP Bootcamp</a> Course. Register for the <a href="http://www.imakenews.com/ipexpert/e_article002338932.cfm?x=bksVhCk,bjy7P8v7,w">CCIE R&amp;S Written and Lab Fundamentals Course</a> with Special Guest CCIE Instructors and Demo our NEW <a href="http://www.imakenews.com/ipexpert/e_article002338977.cfm?x=bksVhCk,bjy7P8v7,w">IPv4/6 Multicast Operation and Troubleshooting Guide</a>.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/07/ipexpert%e2%80%99s-february-newsletter-for-cisco-certification-candidates/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/07/ipexpert%e2%80%99s-february-newsletter-for-cisco-certification-candidates/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/07/ipexpert%e2%80%99s-february-newsletter-for-cisco-certification-candidates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCIE Security Written 3.0 – GRE and mGRE Sample Questions</title>
		<link>http://blog.ipexpert.com/2012/02/07/ccie-security-written-3-0-%e2%80%93-gre-and-mgre-sample-questions/</link>
		<comments>http://blog.ipexpert.com/2012/02/07/ccie-security-written-3-0-%e2%80%93-gre-and-mgre-sample-questions/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 15:39:09 +0000</pubDate>
		<dc:creator>Anthony Sequeira</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[exams]]></category>
		<category><![CDATA[GRE]]></category>
		<category><![CDATA[mgre]]></category>
		<category><![CDATA[practice]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10082</guid>
		<description><![CDATA[Here are sample questions for the GRE and mGRE area of the CCIE Security 3.0 Written Exam. ]]></description>
			<content:encoded><![CDATA[<p>In a previous post here at blog.ipexpert.com, we took a detailed look at GRE and mGRE technologies in the scope of the CCIE Security 3.0 Written Exam. By reader request, I have drafted up some sample questions on these technologies to give readers a sense for what one should know prior to walking into this important written exam.</p>
<h2>Question 1:</h2>
<p>What IP protocol number is used by GRE?</p>
<p>a. 41<br />
b. 47<br />
c. 51<br />
d. 57<br />
<span id="more-10082"></span></p>
<h2>Question 2:</h2>
<p>What is the size of a P2P GRE header?</p>
<p>a. 2 bytes<br />
b. 1 byte<br />
c. 3 bytes<br />
d. 4 bytes</p>
<h2>Question 3:</h2>
<p>If you add a tunnel key to your P2P GRE encapsulation approach, how much overhead are you adding?</p>
<p>a. 2 bytes<br />
b. 1 byte<br />
c. 3 bytes<br />
d. 4 bytes</p>
<h2>Question 4:</h2>
<p>If you configure a P2P GRE interface without using the tunnel key, how much total overhead does GRE add?</p>
<p>a. 24 bytes<br />
b. 20 bytes<br />
c. 28 bytes<br />
d. 32 bytes</p>
<h2>Question 5:</h2>
<p>Which statements are true regarding the configuration shown below? Choose two.</p>
<p>a. The configuration is missing a required tunnel destination<br />
b. The configuration demonstrates a P2P GRE<br />
c. The configuration demonstrates a mGRE<br />
d. A name resolution method is typically required for the configuration shown</p>
<pre>interface tunnel 0
 ip address 209.165.200.224 255.255.255.0
 tunnel source fastethernet 0/0
 tunnel mode gre multipoint
 tunnel key 1
interface fastethernet 0/0
 ip address 10.0.0.1 255.0.0.0</pre>
<p>&nbsp;</p>
<p><span style="font-size: 20px; font-weight: bold;">Question 1 Answer:</span></p>
<p>1. b</p>
<h2>Question 2 Answer:</h2>
<p>2. d</p>
<h2>Question 3 Answer:</h2>
<p>3. d</p>
<h2>Question 4 Answer:</h2>
<p>4. a</p>
<h2>Question 5 Answer:</h2>
<p>4. c, d</p>
<p>Anthony Sequeira CCIE, CCSI<br />
Twitter: @compsolv<br />
Facebook: http://www.facebook.com/compsolv</p>
<p>&nbsp;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/07/ccie-security-written-3-0-%e2%80%93-gre-and-mgre-sample-questions/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/07/ccie-security-written-3-0-%e2%80%93-gre-and-mgre-sample-questions/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/07/ccie-security-written-3-0-%e2%80%93-gre-and-mgre-sample-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCIE Security Written 3.0 – The OSI Model</title>
		<link>http://blog.ipexpert.com/2012/02/06/ccie-security-written-3-0-%e2%80%93-the-osi-model/</link>
		<comments>http://blog.ipexpert.com/2012/02/06/ccie-security-written-3-0-%e2%80%93-the-osi-model/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:30:53 +0000</pubDate>
		<dc:creator>Anthony Sequeira</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[osi]]></category>
		<category><![CDATA[Written]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10029</guid>
		<description><![CDATA[What do we need to master for the OSI Model in the CCIE Written Security exam????]]></description>
			<content:encoded><![CDATA[<p>OK readers &#8211; time for the easy part of the General Networking section of the CCIE Security 3.0 written exam. The OSI model. We need to memorize the layers, their basic function, their order, and the protocols that operate at each layer. We should already know most of this, but here it is to review just in case.</p>
<h2>Application</h2>
<p>This layer interacts with software applications that implement a communicating component</p>
<ul>
<li>HTTP</li>
<li>SHTTP</li>
<li>SMTP</li>
<li>FTP</li>
<li>DNS</li>
<li>Telnet</li>
<li>SNMP<span id="more-10029"></span></li>
</ul>
<h2>Presentation</h2>
<p>Establishes context between application-layer entities, in which the higher-layer entities may use different syntax and semantics if the presentation service provides a mapping between them</p>
<ul>
<li>EBCDIC</li>
<li> ASCII</li>
</ul>
<p><!--more--></p>
<h2>Session</h2>
<p>Controls the dialogues (connections) between computers; it establishes, manages and terminates the connections between the local and remote application</p>
<ul>
<li>ISAKMP/IKE</li>
<li>NetBIOS</li>
</ul>
<h2>Transport</h2>
<p>Provides transparent transfer of data between end users, providing reliable data transfer services to the upper layers</p>
<ul>
<li>TLS</li>
<li>TCP</li>
<li>UDP</li>
</ul>
<h2>Network</h2>
<p>Provides the functional and procedural means of transferring variable length data sequences from a source host on one network to a destination host on a different network, while maintaining the quality of service requested by the transport layer</p>
<ul>
<li>AH</li>
<li>ESP</li>
<li>ICMP</li>
<li>IGMP</li>
<li>OSPF</li>
</ul>
<h2>Data Link</h2>
<p>Provides the functional and procedural means to transfer data between network entities and to detect and possibly correct errors that may occur in the physical layer</p>
<ul>
<li>PPTP</li>
<li>L2TP</li>
<li>ARP/RARP</li>
<li>Frame Relay</li>
</ul>
<h2>Physical</h2>
<p>Defines electrical and physical specifications for devices</p>
<p>Anthony Sequeira CCIE, CCSI<br />
Twitter: @compsolv<br />
Facebook: http://www.facebook.com/compsolv</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/06/ccie-security-written-3-0-%e2%80%93-the-osi-model/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/06/ccie-security-written-3-0-%e2%80%93-the-osi-model/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/06/ccie-security-written-3-0-%e2%80%93-the-osi-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCIE Security Written 3.0 &#8211; NHRP Configuration</title>
		<link>http://blog.ipexpert.com/2012/02/05/ccie-security-written-3-0-nhrp-configuration/</link>
		<comments>http://blog.ipexpert.com/2012/02/05/ccie-security-written-3-0-nhrp-configuration/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 16:26:53 +0000</pubDate>
		<dc:creator>Anthony Sequeira</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[blueprint]]></category>
		<category><![CDATA[nhrp]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[study]]></category>
		<category><![CDATA[Written]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10004</guid>
		<description><![CDATA[This post examines the configuration components required for the NHRP protocol. This is in preparation for the CCIE Security Written exam. ]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://blog.ipexpert.com/2012/01/31/ccie-security-…ution-protocol/" target="_blank">previous post</a> about the Next Hop Resolution Protocol (NHRP), we examined the theory and functionality of NHRP. In this post, we will examine the configuration commands that make NHRP possible. This will conclude the information that is required to be known about this important protocol for the written exam. NOTE: This does not conclude information that should be known about the main use of NHRP &#8211; the Dynamic Multi-point VPN (DMVPN). That is a topic for other blog posts.</p>
<p>about the Next Hop Resolution Protocol (NHRP), we examined the theory and functionality of NHRP. In this post, we will examine the configuration commands that make NHRP possible. This will conclude the information required about this important protocol for the written exam. NOTE: This does not conclude information that should be known about the main use of NHRP &#8211; the Dynamic Multi-point VPN (DMVPN). That is a topic for other blog posts.<span id="more-10004"></span></p>
<p>The first thing you do for configuration with NHRP is that you go to a multipoint GRE (mGRE) interface and you assign a NHRP network ID. You configure this with the command:</p>
<p><strong>ip nhrp network-id</strong> <strong><em>number</em></strong></p>
<p>What does this command do? That is a great question, both here and in the Certification exam environment!!! The NHRP network ID is used to define the NHRP domain for an NHRP interface. You need to be able to differentiate between multiple NHRP networks when two or more mGRE tunnel interfaces are available on the same router. Cisco relies upon the NHRP network ID to keep two NHRP networks separate from each other when both are configured on the same router.</p>
<p><strong><em>It is extremely important to realize that the NHRP network ID is a locally significant parameter.</em></strong> This network ID is not transmitted in NHRP packets to other NHRP nodes. Because of this, the actual value of the NHRP network ID configured on a router need not match the same NHRP network ID on another router. As NHRP packets arrive on a GRE interface, they are assigned to the local NHRP domain in the NHRP network ID that is configured on that interface. You should note how similar this functionality is to the OSPF process ID.</p>
<p>NHRP network IDs can be unique on each mGRE tunnel interface on a router. This is required when running DMVPN Phase 1 or Phase 2 or when using a tunnel key on the mGRE interfaces as you will see in a later post. Also, realize that NHRP domains can span across mGRE tunnel interfaces on a route. This option is available when running DMVPN Phase 3 and not using a tunnel key on the GRE tunnel interfaces. In this case, the effect of using the same NHRP network ID on the mGRE tunnel interfaces is to mesh the two mGRE interfaces into a single DMVPN network.</p>
<p>To participate in NHRP process, a router connected to the NBMA network must be configured with the IP and NBMA addresses of its Net Hop Server (NHS). To configure static IP-to-NBMA address mapping on a router, we use the following command:</p>
<p><strong>ip nhrp map </strong><strong><em>ip-address nbma-address</em></strong></p>
<p>To enable IP multicast and broadcast packets to be sent to the statically configured station, use the command:</p>
<p><strong>ip nhrp map multicast <em>nbma-address</em></strong></p>
<p>This step is required on multipoint GRE tunnels and not required on point-point GRE tunnels, so obviously, it is typically required in our DMVPN implementations that utilize mGRE.</p>
<p>Finally, a Next Hop Server normally uses the routing table to determine where to forward NHRP packets and to find the egress point from an NBMA network. You may also statically configure the NHS with a set of IP address prefixes that correspond to the IP addresses of the stations it serves. You make this configuration using the logical NBMA network identifiers (IP addresses). You can configure these static mappings with the command:</p>
<p><strong>ip nhrp nhs <em>nhs-address</em> [<em>net-address</em> [<em>netmask</em>]]</strong></p>
<p>To bring this all together, recall the sample configuration provided in the previous blog post on the subject of NHRP. Note that this example emphasizes NHRP itself and does not yet focus on DMVPNs:</p>
<p><strong>R1</strong></p>
<pre>interface tunnel 0
 no ip redirects
 ip address 209.165.200.224 255.255.255.0
 ip nhrp map 209.165.200.225 10.0.0.2
 ip nhrp network-id 1
 ip nhrp nhs 209.165.200.225
 tunnel source fastethernet 0/0
 tunnel mode gre multipoint
 tunnel key 1
interface fastethernet 0/0
 ip address 10.0.0.1 255.0.0.0</pre>
<p>Anthony Sequeira CCIE, CCSI<br />
Twitter: @compsolv<br />
Facebook: http://www.facebook.com/compsolv</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/05/ccie-security-written-3-0-nhrp-configuration/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/05/ccie-security-written-3-0-nhrp-configuration/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/05/ccie-security-written-3-0-nhrp-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get 20% Off on Any IPexpert Training Product You Want</title>
		<link>http://blog.ipexpert.com/2012/02/04/get-20-off-on-any-ipexpert-training-product-you-want/</link>
		<comments>http://blog.ipexpert.com/2012/02/04/get-20-off-on-any-ipexpert-training-product-you-want/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 15:00:46 +0000</pubDate>
		<dc:creator>Sanjana Desai</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[R&S]]></category>
		<category><![CDATA[Routing & Switching]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Voice]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[ccna]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[r&s]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10065</guid>
		<description><![CDATA[THIS WEEKEND ONLY get 20% Off on just about EVERY IPexpert training product available when you spend $200 or more. Check out the Coupon Code below to find out how you can save. Expires February 6th, 2012 at 8:00 am EST. This code is not valid for the following products: Any Instructor Led Bootcamp Course (Live or Online) [...]]]></description>
			<content:encoded><![CDATA[<p>THIS WEEKEND ONLY get 20% Off on just about EVERY IPexpert training product available when you spend $200 or more. Check out the Coupon Code below to find out how you can save. Expires February 6th, 2012 at 8:00 am EST.</p>
<p><img class="aligncenter size-full wp-image-10066" title="promo" src="http://blog.ipexpert.com/wp-content/uploads/2012/02/promo.jpg" alt="" width="455" height="190" /></p>
<p><span id="more-10065"></span>This code is not valid for the following products:</p>
<p>Any Instructor Led Bootcamp Course (Live or Online)<br />
Online Learning Subscription<br />
Blended Learning Solution &#8211; Use Coupon Code BLSCCFEB  to save $1500.</p>
<ul>
<li><a href="www.ipexpert.com/Cisco/CCIE/Routing-and-Switching/Self-Study-Bundle">CCIE R&amp;S  Blended Learning Solution</a></li>
<li><a href="www.ipexpert.com/Cisco/CCIE/Voice/Self-Study-Bundle">CCIE Voice Blended Learning Solution</a></li>
<li><a href="http://www.ipexpert.com/Cisco/CCIE/Security/Self-Study-Bundle">CCIE Security Blended Learning Solution</a></li>
</ul>
<p>&nbsp;</p>
<p>Note:</p>
<p>Offer ends Monday, February 6th, 2012 at 8:00 AM EST<br />
Valid for all new orders only, and orders must be placed through website<br />
(not called in or ordered via telephone).<br />
Cannot be combined with any other promotion or discount.<br />
NOTICE: These products will be issued to your account Monday morning.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/04/get-20-off-on-any-ipexpert-training-product-you-want/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/04/get-20-off-on-any-ipexpert-training-product-you-want/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/04/get-20-off-on-any-ipexpert-training-product-you-want/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congratulations to IPexpert’s Latest CCIE Success Stories!!!</title>
		<link>http://blog.ipexpert.com/2012/02/03/congratulations-to-ipexpert%e2%80%99s-latest-ccie-success-stories-70/</link>
		<comments>http://blog.ipexpert.com/2012/02/03/congratulations-to-ipexpert%e2%80%99s-latest-ccie-success-stories-70/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 13:42:30 +0000</pubDate>
		<dc:creator>Jessica Scott</dc:creator>
				<category><![CDATA[General Announcements]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCIE Success]]></category>
		<category><![CDATA[CCIE Success Stories]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10044</guid>
		<description><![CDATA[Join us in congratulating the following CCIE on his great achievement; Yash Joshi CCIE #31109 (Voice) Are you a CCIE TOP GUN? If your name isn&#8217;t on THIS LIST yet, you can become a CCIE Top Gun. Simply, send us your name, CCIE#, and you can be the proud owner of the IPexpert&#8217;s CCIE Top [...]]]></description>
			<content:encoded><![CDATA[<p>Join us in congratulating the following CCIE on his great achievement;</p>
<p><strong><span style="text-decoration: underline"> </span></strong></p>
<ul>
<li><strong>Yash</strong><strong> Joshi CCIE #31109 (Voice)</strong></li>
</ul>
<p>Are you a CCIE TOP GUN? If your name isn&#8217;t on <a href="http://www.ipexpert.com/Company/Success" target="_blank"><strong><span style="color: #993300">THIS LIST</span></strong></a> yet, you can become a CCIE Top Gun. Simply, send us your name, CCIE#, and you can be the proud owner of the IPexpert&#8217;s CCIE Top Gun shirt shown below. Email us at <a href="mailto:ccie@ipexpert.com">ccie@ipexpert.com</a>.</p>
<p><a href="http://blog.ipexpert.com/wp-content/uploads/2011/12/CCIE_list_Shirt.jpg"><img class="alignnone size-full wp-image-9186" src="http://blog.ipexpert.com/wp-content/uploads/2011/12/CCIE_list_Shirt.jpg" alt="" width="448" height="202" /></a></p>
<p><strong>IPexpert is proud to boast the industry’s most complete and updated self-study portfolio for the </strong><a href="http://www.ipexpert.com/Cisco/CCIE/Routing-and-Switching-Lab-Portfolio" target="_blank"><strong>CCIE Routing &amp; Switching</strong></a><strong>, </strong><a href="http://www.ipexpert.com/Cisco/CCIE/Voice-Lab-Portfolio" target="_blank"><strong>CCIE Voice</strong></a><strong>, </strong><a href="http://www.ipexpert.com/Cisco/CCIE/Security-Lab-Portfolio" target="_blank"><strong>CCIE Security</strong></a><strong>, and </strong><a href="http://www.ipexpert.com/Cisco/CCIE/Wireless-Lab-Portfolio" target="_blank"><strong>CCIE Wireless</strong></a><strong> Lab exams. Have you also used IPexpert or Proctor Labs to help you pass the CCIE lab exam? If so, we want to hear your story! Please email us at </strong><a href="mailto:success@ipexpert.com"><strong>success@ipexpert.com</strong></a><strong>.</strong></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/03/congratulations-to-ipexpert%e2%80%99s-latest-ccie-success-stories-70/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/03/congratulations-to-ipexpert%e2%80%99s-latest-ccie-success-stories-70/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/03/congratulations-to-ipexpert%e2%80%99s-latest-ccie-success-stories-70/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCIE Security Written 3.0 &#8211; NHRP Sample Questions</title>
		<link>http://blog.ipexpert.com/2012/02/02/ccie-security-written-3-0-nhrp-sample-questions/</link>
		<comments>http://blog.ipexpert.com/2012/02/02/ccie-security-written-3-0-nhrp-sample-questions/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 16:16:56 +0000</pubDate>
		<dc:creator>Anthony Sequeira</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[nhrp]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[Written]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10009</guid>
		<description><![CDATA[In this post, we examine sample questions involving the NHRP. ]]></description>
			<content:encoded><![CDATA[<p>Have you been following the IPexpert blog and you feel you are ready for sample questions on the Next Hop Resolution Protocol? Here you go friends and faithful readers!</p>
<h2>Question 1:</h2>
<p>Which of these statements regarding NHRP are true? Choose two.</p>
<p>a. NHRP is typically used with P2P GRE interfaces<br />
b. The NHRP network ID must match on all routers in the hub and spoke NBMA cloud<br />
c. NHRP provides functionality similar to ARP<br />
d. NHRP is a key ingredient in the DMVPN from Cisco Systems</p>
<h2>Question 2:</h2>
<p>NHRP can be broken down into two operational functions. What are these two? Choose two.</p>
<p>a. NHRP resolution<br />
b. NHRP broadcasting<br />
c. NHRP querying<br />
d. NHRP registration</p>
<p><a href="http://blog.ipexpert.com/wp-content/uploads/2012/01/tunnel.jpg"><img class="alignleft size-medium wp-image-10011" title="tunnel" src="http://blog.ipexpert.com/wp-content/uploads/2012/01/tunnel-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>Question 1 Answer:</h2>
<p>1. c, d</p>
<h2>Question 2 Answer:</h2>
<p>2. a, d</p>
<p>Anthony Sequeira CCIE, CCSI<br />
Twitter: @compsolv<br />
Facebook: http://www.facebook.com/compsolv</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/02/ccie-security-written-3-0-nhrp-sample-questions/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/02/ccie-security-written-3-0-nhrp-sample-questions/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/02/ccie-security-written-3-0-nhrp-sample-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco Discusses Version 4.0 of CCIE Security &#8211; Indicates Official Announcement &#8220;SOON&#8221;</title>
		<link>http://blog.ipexpert.com/2012/02/01/cisco-discusses-version-4-0-of-ccie-security-indicates-official-announcement-soon/</link>
		<comments>http://blog.ipexpert.com/2012/02/01/cisco-discusses-version-4-0-of-ccie-security-indicates-official-announcement-soon/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 17:01:32 +0000</pubDate>
		<dc:creator>Anthony Sequeira</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA["version 4"]]></category>
		<category><![CDATA[blueprint]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=10019</guid>
		<description><![CDATA[Cisco has begun to discuss the new version 4 blueprint for security publicly. ]]></description>
			<content:encoded><![CDATA[<p>In a recent Cisco Small Business post that you can find <a href="http://www.cisco.com/cisco/web/solutions/small_business/resource_center/articles/be_more_productive/how_to_become_an_it_security_expert/index.html" target="_blank">here</a>, Cisco discussed the version 4.0 blueprint publicly for the first time. Of course many students flipped out and took this to mean it was the official announcement. As you can read, it is not. This means that the famous six month timer has NOT started.</p>
<p>Obviously, the official announcement is coming soon. The RSA conference mentioned in the article, and  Cisco Live in San Diego, are certainly candidates for the <em><strong>official</strong></em> announcement.</p>
<p>Here is the relevant information from the post:<span id="more-10019"></span></p>
<p>&#8220;The Real Life of an Expert: Introducing the New CCIE Security</p>
<p>CCIE Security 4.0 is unusual among security certificates for its up-to-date, real-world content. It emphasizes security competency and efficient problem solving in networks that use cloud services, carry voice and multimedia traffic, and are accessed by a variety of wireless devices.</p>
<p>The content, currently in development, may include real-world applications that involve:</p>
<ul>
<li>Securing both<strong> wireless and wired networks</strong>, including<strong> managing security policy by device and service</strong></li>
<li>Extending<strong> application awareness</strong> to security devices, moving security up to Layer 7 from the stateless packets of Layers 3 and 4, and applying policy on a per-identity basis</li>
<li>Applying security policy in a network that has <strong>voice and video </strong>traffic</li>
<li>Securing networks that use<strong> managed services, dual ISPs, IPv6, or IP multicast</strong></li>
</ul>
<p>Cisco will soon announce the blueprints for the CCIE Security 4.0 written and lab exams; the first exam will take place approximately six months later.</p>
<p>Although there are no prerequisites for registration, Cisco offers a preparation path through its CCNA and/or CCNP Security levels, and recommends that candidates have at least three years of hands-on network security experience.&#8221;</p>
<p>Anthony Sequeira CCIE, CCSI<br />
Twitter: @compsolv<br />
Facebook: http://www.facebook.com/compsolv</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/02/01/cisco-discusses-version-4-0-of-ccie-security-indicates-official-announcement-soon/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/02/01/cisco-discusses-version-4-0-of-ccie-security-indicates-official-announcement-soon/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/02/01/cisco-discusses-version-4-0-of-ccie-security-indicates-official-announcement-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCIE Security Written 3.0 &#8211; Next Hop Resolution Protocol</title>
		<link>http://blog.ipexpert.com/2012/01/31/ccie-security-written-3-0-next-hop-resolution-protocol/</link>
		<comments>http://blog.ipexpert.com/2012/01/31/ccie-security-written-3-0-next-hop-resolution-protocol/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 14:35:56 +0000</pubDate>
		<dc:creator>Anthony Sequeira</dc:creator>
				<category><![CDATA[CCIE]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[DMVPN]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[nhrp]]></category>
		<category><![CDATA[Written]]></category>

		<guid isPermaLink="false">http://blog.ipexpert.com/?p=9988</guid>
		<description><![CDATA[In this post that helps candidates prepare for the CCIE Security Written 3.0, Anthony Sequeira examines the NHRP that is critical in DMVPNs. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://tools.ietf.org/html/rfc2332">RFC 2332</a> defines Next Hop Resolution Protocol (NHRP). This important support protocol allows a host or router to communicate over a non-broadcast multi-access (NMBA) network by learning the NBMA address of the another host or remote router. As was pointed out in the previous blog post on mGRE, this protocol is critical for our study in the CCIE Security field due to it playing a key role in the Dynamic Multipoint VPN (DMVPN). In fact, the NHRP protocol makes the DMVPN function dynamically! <span id="more-9988"></span></p>
<p>While you may consider NHRP as a simple name resolution protocol like Address Resolution Protocol (ARP), NHRP operates in a much more efficient manner. NHRP operates in a client/server type fashion. In a typical implementation, hub routers in a hub and spoke topology operate as next-hop servers (NHS). Spoke routers in the topology act as next-hop clients (NHC). It is the job of the hub router next-hop server to maintain a next-hop resolution protocol database of public interface addresses of each spoke. The hub router builds this database by accepting registrations of each spoke device’s physical IP address as each spoke boots on the network. Spoke routers also query the NHRP database for the physical addresses of the destination spokes.</p>
<p><a href="http://blog.ipexpert.com/wp-content/uploads/2012/01/mesh.jpg"><img class="alignleft size-medium wp-image-9994" title="mesh" src="http://blog.ipexpert.com/wp-content/uploads/2012/01/mesh-300x250.jpg" alt="" width="300" height="250" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Possessing the physical addresses of remote spokes allows these spoke devices to build direct tunnels with these remote spokes. This is the beauty of the next hop resolution protocol. Remote spoke routers now possess the ability to communicate directly without requiring traffic to use an intermediate hop (the hub router).</p>
<p>Notice that you can segment the operation of NHRP into two distinct phases. There is the registration process and the resolution process. The overall result of NHRP is the decreases the overhead placed on the hub device and spoke devices communicate directly with other spoke devices.</p>
<p>The example configuration below demonstrates the simplicity that makes this powerful protocol function. This blog will detail the protocol and its configuration in more depth in future posts.</p>
<p><strong>R1</strong></p>
<pre>interface tunnel 0
 no ip redirects
 ip address 209.165.200.224 255.255.255.0
 ip nhrp map 209.165.200.225 10.0.0.2
 ip nhrp network-id 1
 ip nhrp nhs 209.165.200.225
 tunnel source fastethernet 0/0
 tunnel mode gre multipoint
 tunnel key 1
interface fastethernet 0/0
 ip address 10.0.0.1 255.0.0.0</pre>
<p>Anthony Sequeira CCIE, CCSI<br />
Twitter: @compsolv<br />
Facebook: http://www.facebook.com/compsolv</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://blog.ipexpert.com/2012/01/31/ccie-security-written-3-0-next-hop-resolution-protocol/"></g:plusone></div><div style="text-align:left; margin: 0px 0px 0px 0px;" ><a href="http://blog.ipexpert.com/2012/01/31/ccie-security-written-3-0-next-hop-resolution-protocol/?pfstyle=wp" style="text-decoration: none; outline: none; color: #990000;"><img class="printfriendly" src="http://cdn.printfriendly.com/pf-icon.gif" alt="Print Friendly"/><span style="font-size:14px; margin-left:3px; color: #990000;">Print Friendly</span></a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.ipexpert.com/2012/01/31/ccie-security-written-3-0-next-hop-resolution-protocol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

