CIsco CCNP BSCI Exam Tutorial Introduction To Policy Routing

May 30th, 2008

Policy routing is a field matter on your BSCI exam, and you’ll encounter quite a taste of contract routing feat on in today’s creation networks. But what meet is contract routing?

Policy-based routing, mostly referred to as “policy routing”, is the ingest of distinction maps to watch the distinction a boat module verify to intend to its test destination. As you advancement finished your CCNP studies and go on to the CCIE (or to a Cisco Quality Of Service certification), you’ll encounter that reciprocation crapper be “marked” by contract routing in meet to provide assorted levels of assist to assorted classes of traffic. (This is finished by rating the reciprocation and placing the assorted classes of reciprocation in assorted queues in the router, allowing the chief to provide whatever reciprocation higher antecedency for transmission.)

There are whatever base contract routing rules you should know:

Policy routing doesn’t change the instruction of the packet, but does change the distinction that is condemned to intend there.

Policy routing crapper nervy reciprocation supported on the maker IP come or the instruction IP come (with the ingest of an long ACL).

Policy routing crapper be organized at the programme level, or globally.

Applying contract routing on an programme affects exclusive packets inbound on that interface:

R2(config)#int s0

R2(config-if)#ip contract route-map CHANGE_NEXT_HOP

Applying the contract globally applies the distinction transpose to packets generated on the router, not on every packets conventional on every interfaces.

Whether you’re streaming contract routing at the programme level, on packets created locally, or both, ever separate the bidding exhibit ip contract to attain trusty you’ve got the correct distinction maps on the comely interfaces.

R2#show ip policy

Interface Route map

local CHANGE_NEXT_HOP

Serial0 CHANGE_NEXT_HOP

And here’s the bounteous conception to remember….

If a boat doesn’t correct whatever of the limited criteria in a distinction map, or does correct a distinction that has an definitive contain statement, the accumulation is dispatched to the routing impact and module be computerized normally. If you don’t poverty to distinction packets that do not foregather whatever distinction transpose criteria, the ordered bidding staleness be utilised to beam those packets to the null0 interface. This ordered bidding should be the test ordered bidding in the distinction map.

There are quaternary possibilities for an inbound boat when distinction maps are in use. The mass warning illustrates every of them.

R2(config)#access-list 29 accept patron 20.1.1.1

R2(config)#access-list 30 accept patron 20.2.2.2

R2(config)#access-list 31 accept patron 20.3.3.3

R2(config)#access-list 32 accept patron 20.4.4.4

R2(config)#route-map EXAMPLE accept 10

R2(config-route-map)#match ip come 29

R2(config-route-map)#set ip next-hop 40.1.1.1

R2(config-route-map)#route-map EXAMPLE accept 20

R2(config-route-map)#match ip come 30

Assuming the distinction transpose has been practical to the router’s ethernet0 interface, a boat sourced from 20.1.1.1 would foregather the prototypal distinction of the distinction transpose and hit its next-hop IP come ordered to 40.1.1.1.

A boat sourced from 20.2.2.2 would correct the incoming accept evidence (sequence sort 20). Since there is no state listed, this boat would convey to the routing engine to participate the connatural routing procedure. All reciprocation that did not correct these digit addresses would also be routed ordinarily - there would be no state condemned by the distinction map.

Perhaps we poverty to specifically country reciprocation sourced from 20.3.3.3 or 20.4.4.4. We crapper ingest binary correct statements in digit azygos distinction map, and hit packets matched those digit addresses dispatched to the taste containerful - the programme null0.

R2(config)#route-map EXAMPLE accept 30

R2(config-route-map)#match ip come 31

R2(config-route-map)#match ip come 32

R2(config-route-map)#set ?

as-path Prepend progress for a BGP AS-path attribute

automatic-tag Automatically compute TAG value

comm-list ordered BGP accord itemize (for deletion)

community BGP accord attribute

dampening Set BGP distinction surface wetting parameters

default Set choice information

extcommunity BGP long accord attribute

interface Output interface

ip IP limited information

level Where to goods route

local-preference BGP topical alternative distinction attribute

metric Metric continuance for instruction routing protocol

metric-type Type of amount for instruction routing protocol

origin BGP lineage code

tag Tag continuance for instruction routing protocol

weight BGP coefficient for routing table

R2(config-route-map)#set programme null0

Any reciprocation matched ACLs 31 or 32 module be dispatched to null0, resulting in its existence useless by the router. Any reciprocation that didn’t correct whatever of the distinction transpose statements module be returned to the routing engine for connatural processing.

Knowing contract routing and how to administer it are primary skills for expiration the BSCI exam, earning your CCNP, and decent more priceless in today’s employ market. Get whatever hands-on training in a CCNA / CCNP bag work or demolition property to go along with acquisition the theory, and you’ll be composition and applying contract routing in no instance at all.

Chris Bryant, CCIE #12933, is the someone of The Bryant Advantage, bag of liberated CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

For a FREE double of his stylish e-books, “How To Pass The CCNA” and “How To Pass The CCNP”, meet meet the website! You crapper also intend FREE CCNA and CCNP communicating questions every day! Pass the CCNP communicating with The Bryant Advantage!

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

CCNP Certification BSCI Exam Tutorial The BGP Neighbor Process

May 27th, 2008

Like TCP, BGP is connection-oriented. An inexplicit unification between digit BGP speakers is ingrained before some routing aggregation is exchanged. This unification takes locate on protocol opening 179. As with EIGRP and OSPF, keepalive messages are dispatched conceive by the BGP speakers in meet to ready this relation alive.

Once the unification is established, the BGP speakers mercantilism routes and aline their tables. After this initial exchange, a BGP utterer module exclusive beam boost updates upon a modify in the meshwork topology.

The IGP protocols that ingest Autonomous Systems, IGRP and EIGRP, order likely neighbors to be in the aforementioned AS. This is not genuine with BGP. Routers crapper be in assorted Autonomous Systems and ease mercantilism routes. The BGP neighbors do not hit to be direct connected, and ofttimes are not, but do requirement to be healthy to accomplish the IP addresses they ingest in their edge statements.

A BGP person that is in the aforementioned AS is referred to as an Internal BGP (iBGP) Peer, where a BGP person in added AS is an External BGP (eBGP) Peer.

A distribution iBGP configuration:

Router bgp 100

Neighbor 10.1.1.2 remote-as 100

A distribution eBGP configuration:

Router bgp 100

Neighbor 10.1.1.2 remote-as 200

Cisco recommends that eBGP peers be direct connected, where iBGP peers mostly module not be.

Before we intend likewise such far into BGP theory, let’s intend a plan started. You’ll ingest the router bgp bidding to configure a router as a BGP speaker. Right after that, the edge bidding module be utilised to refer this BGP speaker’s possibleness neighbors. (The cost “peer” and “neighbor” are reciprocal in BGP, but it’s the edge evidence that is utilised to statically delimitate neighbors. BGP is not confident of discovering neighbors dynamically.)

R1(config-router)#neighbor 172.12.123.3 remote-as 200

While nearly every of the edge options are meet that — nonmandatory — you do hit to take the BGP AS of the far router. BGP has no execution to dynamically conceive neighbors. Remember, BGP speakers do not hit to be in the aforementioned AS to embellish peers. To avow that the far BGP utterer has embellish a peer, separate exhibit ip bgp neighbor.

R1#show ip bgp neighbor

BGP edge is 172.12.123.3, far AS 200, outside link

BGP edition 4, far router ID 0.0.0.0

BGP land = Active

Last feature 00:01:39, stop instance is 180, keepalive quantity is 60 seconds

Received 0 messages, 0 notifications, 0 in queue

Sent 0 messages, 0 notifications, 0 in queue

Route change request: conventional 0, dispatched 0

Default peak instance between advertizing runs is 30 seconds

The production here crapper be a lowercase dishonorable the prototypal instance you feature it. The prototypal highlighted distinction shows 172.12.123.3 is a BGP neighbor, is settled in AS 200, and is an outside link, indicating that the edge is in added AS entirely. The ordinal highlighted distinction shows the BGP land as Active. This sounds great, but it actually effectuation that a BGP person unification does not still subsist with the likely neighbor.

So modify though the exhibit ip bgp edge production indicated that this is an Active edge relationship, that’s not as beatific as it sounds. Of course, the think the person relation hasn’t been ingrained is that we haven’t organized R3 yet!

R3(config)#router bgp 200
R3(config-router)#neighbor 172.12.123.1 remote-as 100

Verify the person organisation with exhibit ip bgp neighbor:

R3#show ip bgp neighbor

BGP edge is 172.12.123.1, far AS 100, outside link

BGP edition 4, far router ID 172.12.123.1

BGP land = Established, up for 00:01:18

Last feature 00:00:17, stop instance is 180, keepalive quantity is 60 seconds

Local host: 172.12.123.3, Local port: 179 (BGP uses protocol Port 179)

Foreign host: 172.12.123.1, Foreign port: 11007
The person relation between R1 and R3 has been established.

Now that you undergo how the edge relation itself is built, you crapper move acquisition the some options of the edge command. You’ll hit to officer these to embellish a CCNP and CCIE, and we’ll move hunting at those commands in the incoming conception of this BGP tutorial!

Chris Bryant, CCIE #12933, is the someone of The Bryant Advantage, bag of liberated CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You crapper also tie his RSS take and meet his blog, which is updated individual nowadays regular with newborn Cisco authorisation articles, liberated tutorials, and regular CCNA / CCNP communicating questions! Details are on the website.

For a FREE double of his stylish e-books, “How To Pass The CCNA” and “How To Pass The CCNP”, meet meet the website! You crapper also intend FREE CCNA and CCNP communicating questions every day! Pass the CCNP communicating with The Bryant Advantage!

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , ,

Cisco CCNP Certification Introduction To BGP

May 20th, 2008

Cisco authorisation candidates are introduced to BGP at the CCNP level, but the activity to its launching ever reminds me of something I wager ofttimes as the CCNA level.

Whenever I inform distance-vector protocols in my Ultimate CCNA Boot Camp or Fast Track classes, I attain trusty my students wager the whatever rules of distance-vector routing thoroughly. After that, we advise on to OSPF and link-state routing.

And what do I verify my students before we advise on to OSPF and link-state? “Take every that enthusiastic clog you meet scholarly most distance-vector routing and place it aside, because hour of it applies here!”

That’s most the instance I intend astonished looks and a whatever things tangled at me. :)

What’s this got to do with BGP? Well, when you move studying BGP, you hit to place a aggregation of preconceptions aside. It sounds same meet added routing protocol, same RIP or OSPF, but it’s not.

So… before we move studying BGP and hunting at whatever of its whatever features, let’s verify a countenance at what BGP is and what it’s not.

What BGP Does And Who Uses It

If you’re in a function where you’re utilised to sight or employed with routing protocols much as EIGRP and OSPF, you’re belike today employed with BGP. BGP is not a prescript you’re feat to configure at the duty LAN. BGP is utilised to enter liberated systems, which are rattling super “collections” of networks. (Those of you who hit unnatural IGRP and EIGRP are old with the concepts of an AS.)

As anti to routing protocols much as EIGRP and OSPF, BGP is an outdoor routing protocol. BGP is not utilised to encounter a limited meshwork instead, it’s utilised to encounter the AS where that presented meshwork crapper be found.

A beatific artefact to countenance at it is that networks are contained in Autonomous Systems BGP helps you encounter the AS where a presented meshwork is found. Routing protocols much as OSPF and EIGRP verify it from there.

BGP Terminology

You’ll be bright to undergo that BGP has a word every its own. Well, you strength not be bright most it, but it does! I’m not feat to intercommunicate a clump of cost at you correct now, since these cost are meliorate introduced to you when you crapper wager what they do. Having said that, here are a pair of base BGP cost that module support you attain the transformation from IGPs to BGP.

aggregation - This is meet the BGP constituent for summarization. You’re old with line account from your CCNA studies, and if not, it’s instance for a analyse from my Ultimate CCNA Study Guide. I told you you’d be using those skills for a daylong time!

IGP - Interior Gateway Protocol. These are routing protocols that separate within an Autonomous System, much as OSPF and EIGRP.

EGP - Exterior Gateway Protocol. Remember from your CCNA studies that EIGRP routes are indicated by the honor “D” in your routing table? Ever astonishment why? EGP, that’s why. Run exhibit ip line and verify a countenance at the routing plateau key. EGP was BGP’s predecessor, and is ease in the routing table. EGP was there before EIGRP, so that’s ground “E” in the routing plateau doesn’t inform an EIGRP route.

We’ll be adding to this itemize a enthusiastic care in the incoming whatever weeks.

Now that you’ve got a apprehension on the differences between BGP and the IGPs you’ve been employed with up to this point, it’s instance to move hunting at whatever base BGP concepts and configurations. Look for Part II of this BGP tutorial over the incoming whatever days!

To your success,

Chris Bryant, CCIE #12933, is the someone of The Bryant Advantage, bag of liberated CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.
For a FREE double of his stylish e-books, “How To Pass The CCNA” and “How To Pass The CCNP”, meet meet the website! You crapper also intend FREE CCNA and CCNP communicating questions every day! Pass the CCNP communicating with The Bryant Advantage!

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , ,
Close
E-mail It