• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/13

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

13 Cards in this Set

  • Front
  • Back

Command to verify config of route map

show route-map

redistribute ospf 10 into eigrp applying route map "GO_BROWNS"

router eigrp 1


redistribute ospf 1 route-map GO_BROWNS

When a route is matched is a route-map statement it ?

Stops processing at the first match

When a route-map finds a match it ____ searching.
STOPS

What is at the very end of a route-map

route-map TEST deny 10

match ip address 50


route-map TEST permit 20


match ip address 60 70


set ip next-hop 10.10.10.10


IMPLICIT DENY ALL

Common use of route maps are in ?
Policy Based Routing, BGP & Redistribution
route-map MYMAP permit 10

match ip address ACL1 ACL2 ACL3

Multiple matches on same line: Logical OR




match ACL1 or 2 or 3



route-map MYMAP pemit 10


match ip address ACL1


match interface fe0/0


match metric 3

Multiple match statments on seperate lines: Logical AND




Match ACL1 & Int Fe0/0 & metric 3

route-map MYMAP pemit10match ?

set ?

it matches something and does and action with set

Route-map config consist of


1. define name of map


2. define match action


3.define set action

route-map MYMAP permit 10


match ip addres prefix-list MINE


set metric-type-1

How to overcome "deny any" and "permit everything" at end of route-map

route-map red permit 10


match ip acl1


route-map red permit 20





LEAVE EMPTY PERMIT AT END. PERMITS ANYTHING & EVERYTHING

route map RED permit 30


set metric 5000


set metric-type type-2




No match statement. Everything will be set "metric 5000 and as "type-2".