01-14-2019 06:16 AM
Hello,
I have a network with MPLS/MP-BGP actived.
device = ME-3800-X
It's ok.
But today, I would like change the weight of some route.
But, route are well advertised but without the weight changed.
My config :
router bgp 65000
address-family ipv4 vrf vrf_tetra
redistribute connected
redistribute static route-map SET-WEIGHT-VRF-TETRA
exit-address-family
!
ip route vrf vrf_tetra 10.28.0.0 255.255.0.0 10.28.200.118
!
access-list 99 permit 10.28.0.0 0.0.255.255
!
route-map SET-WEIGHT-VRF-TETRA permit 10
match ip address 99
set weight 200
Cordialy
01-14-2019 06:41 AM
BGP weight is only local to the router you define it on so it won't be carried in routing advertisements to other routers.
What exactly are you trying to achieve ?
Jon
01-14-2019 07:23 AM
Hooooo
I am an idiot.
Can i use LOCAL_PREF for this ?
Cdlt,
01-14-2019 07:25 AM
Local preference will influence traffic leaving your site not traffic coming into your site.
It is not clear which one you want at the moment.
Jon
01-14-2019 07:28 AM
Ok.
I want influence other routers on my network.
01-14-2019 07:33 AM - edited 01-14-2019 07:38 AM
In terms of traffic inbound to the router you are applying the configuration to ?
If so the usual way is to use AS path prepending.
Jon
01-14-2019 07:42 AM
I create a route-map , SET-AS-PATH-VRF-TETRA
route-map SET-AS-PATH-VRF-TETRA permit 10
match ip address 99
set as-path prepend 65002 65002
But, i have a probleme with static route.
It's not supported.
sw_pn_nts141_ric(config-router-af)#redistribute static route-map SET-AS-PATH-VRF-TETRA
% "SET-AS-PATH-VRF-TETRA" used as redistribute static into bgp route-map, set as-path prepend not supported
sw_pn_nts141_ric(config-router-af)#
Cordialy,
01-14-2019 07:47 AM - edited 01-14-2019 07:47 AM
Haven't got time to test at the moment but try creating a new route map for just the prepending and apply that route map to the neighbor(s) you want to influence.
Make sure in your route map you include a second permit statement for all the other routes you are not prepending.
Jon
01-14-2019 10:04 AM
Juste pour explain :
CPE1 ------FW1--------R_1-------------R3
| | |
ospf | |
| | |
CPE2-------FW2-------R_2|-------------r-4 ------->Other_net
On R_1 : static route to CPE1 via FW1
ON R_2 : static route to CPE2 via FW2
There is not routage protocol between CPEx etR_x
I would like influente other router, the traffic must be forwarder first by R1 and backup by R2 if R1 is broken.
R1 / R2 R3 R4 , MPLS and VRF.
01-15-2019 04:29 AM
Are R1 and R2 internal to your network so the CE routers connect to the MPLS network which is not shown in your diagram ?
Apologies but it is still not clear what you are trying to do ie. influence traffic coming from the MPLS network or influence traffic going to the MPLS network ?
Jon
01-15-2019 09:53 AM
I am sure that there are things in the discussion that I do not understand well. But one thing I am clear about. The attempt to use a route map for prepending was applied to redistribution. And it was rejected because you prepend on route maps that are applied to what you advertise to a neighbor and not applied on how you learned the route.
I agree with Jon that we need a better understanding of the environment and clarity about what you are trying to achieve.
HTH
Rick
01-29-2019 12:20 AM
Hello,
Sorry for my late.
It's OK now.
I try to explain to you What I did.
Excuse me for my english.
ip sla 99 icmp-echo 10.28.200.110 (@ip cpe2) source-interface Vlan3200 vrf vrf_tetra threshold 50 timeout 1000 frequency 5 ip sla schedule 99 life forever start-time after 00:00:10
track 99 ip sla 99 reachability
ip route vrf vrf_tetra 10.28.41.100 255.255.255.255 10.28.200.118 (# it's FW1) track 99
router bgp 65000 //
address-family ipv4 vrf vrf_tetra redistribute connected redistribute static exit-address-family
ip sla 99 icmp-echo 10.28.200.106 (#@ip of cpe2) source-interface Vlan3200 vrf vrf_tetra threshold 50 timeout 1000 frequency 5 ip sla schedule 99 life forever start-time after 00:00:10
track 99 ip sla 99 reachability
ip route vrf vrf_tetra 10.28.41.100 255.255.255.255 10.28.200.118 (# it's FW2) track 99
router bgp 65000 //
address-family ipv4 vrf vrf_tetra
redistribute connected
redistribute static metric 200
exit-address-family
01-29-2019 07:06 AM
Thank you for the update. Glad to know that now it is OK.
HTH
Rick
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide