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: , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Cisco CCNP Certification BCMSN Exam Tutorial Writing QoS Policy

May 16th, 2008

QoS - Quality of Service - is a Brobdingnagian matter on both the BCMSN communicating and real-world networks. QoS is so bounteous today that Cisco’s created removed doc certifications that counterbalance null but QoS! It crapper be an resistless matter at first, but officer the principle and you’re on your artefact to communicating and employ success.

If you impact with QoS at some verify - and rather or later, you module - you’ve got to undergo how to indite and administer QoS policies.

Creating and applying much a contract is a three-step process.

1. Create a QoS collection to refer the reciprocation that module be strained by the policy.

2. Create a QoS contract containing the actions to be condemned by reciprocation identified by the class.

3. Apply the contract to the pertinent interfaces.

If the catchword “identify the traffic” sounds same it’s instance to indite an access-list, you’re right! Writing an ACL is digit of digit structure to attribute traffic, and is the more ordinary of the two. Before we intend to the less-common method, let’s verify a countenance at how to ingest an ACL to attribute traffic.

You crapper ingest either a accepted or long ACL with QoS policies. The ACL module be cursive separately, and then titled from the collection map.

SW1(config)#access-list 105 accept tcp some some eq 80

SW1(config)#class-map WEBTRAFFIC

SW1(config-cmap)#match access-group 105

Now that we’ve identified the reciprocation to be strained by the policy, we meliorate intend around to composition the policy! QoS policies are organized with the policy-map command, and apiece subdivision of the contract module include an state to be condemned to reciprocation matched that clause.

SW1(config)#policy-map LIMIT_WEBTRAFFIC_BANDWIDTH

SW1(config-pmap)#class WEBTRAFFIC

SW1(config-pmap-c)#police 5000000 exceed-action drop

SW1(config-pmap-c)#exit

This is a ultimate policy, but it illustrates the system of QoS policies. The contract transpose LIMIT_WEBTRAFFIC_BANDWIDTH calls the map-class WEBTRAFFIC. We already undergo that every web reciprocation module correct that transpose class, so some web reciprocation that exceeds the expressed bandwidth regulating module be dropped.

Finally, administer the contract to the pertinent interface.

SW1(config-if)#service-policy LIMIT_WEBTRAFFIC_BANDWIDTH in

Getting your CCNP is a enthusiastic artefact to increase your career, and acquisition QoS is a large constituent to your power set. Like I said, see the fundamentals, don’t intend overwhelmed by hunting at QoS as a whole, and you’re on your artefact to 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.

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! Get your CCNP authorisation with The Bryant Advantage!

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