redrabbit писал(а):Под ^200$ я имел в виду весь трафик, проходящий через ISP1.
под это правило все маршруты не подпадут
redrabbit писал(а):Судя по документации это означает что в началае пути и (а не "или"!) в конце пути будет бордер моего ISP1.
это означает as-path из одной AS и это AS200, т.е. все маршруты, которые принадлежат самой AS200
redrabbit писал(а):Т.е. это правило будет справедливо на его бордере а не на моем, в этом моя ошибка?
это правило справедливо для маршрутов, которые принадлежат самой AS200
ошибка в том, что это не все маршруты через AS200, а ты хотел именно все
redrabbit писал(а):Что будет предпочтительнее в моем случае?
в твоем случае предпочтительнее то, что я писал ещё в середине 1-ой страницы:
- Код: Выделить всё
route-map map-AS200-in permit 200
set local-preference 100
или с weight
- Код: Выделить всё
route-map map-AS200-in permit 200
set weight 2000
ответь мне и себе на вопрос:
зачем тебе что то матчить если ты хочешь поднять loc-pref или weigth
на всех маршрутах приходящих от AS200 ?
правильный ответ: не зачем
посему делай в роут мапе последним permit (под который попадут все маршруты, которые не заматчились выше в этой роут мапе) и в нем просто сеть loc-pref или weigth в зависимости от задачи которую преследуешь, понимая в чем разница между двумя атрибутами
а разница в том что weight действует только внутри этого роутера, который её выставил, а local-preference передается вместе с маршрутом и действует на всех
iBGP пирах
Читаем:
1.
Weight AttributeWeight is a Cisco-defined attribute that is local to a router. The weight attribute is not advertised to neighboring routers. If the router learns about more than one route to the same destination, the route with the highest weight will be preferred. In Figure 39-2, Router A is receiving an advertisement for network 172.16.1.0 from routers B and C. When Router A receives the advertisement from Router B, the associated weight is set to 50. When Router A receives the advertisement from Router C, the associated weight is set to 100. Both paths for network 172.16.1.0 will be in the BGP routing table, with their respective weights. The route with the highest weight will be installed in the IP routing table.
Weight_Attribute.jpg
2.
Local Preference AttributeThe local preference attribute is used to prefer an exit point from the local autonomous system (AS). Unlike the weight attribute, the local preference attribute is propagated throughout the local AS. If there are multiple exit points from the AS, the local preference attribute is used to select the exit point for a specific route. In Figure 39-3, AS 100 is receiving two advertisements for network 172.16.1.0 from AS 200. When Router A receives the advertisement for network 172.16.1.0, the corresponding local preference is set to 50. When Router B receives the advertisement for network 172.16.1.0, the corresponding local preference is set to 100. These local preference values will be exchanged between routers A and B. Because Router B has a higher local preference than Router A, Router B will be used as the exit point from AS 100 to reach network 172.16.1.0 in AS 200.
Local_Preference_Attribute.jpg