<div dir="ltr">Hi Team,<div><br></div><div>I configured l3vpn in BIRD and I was able to see the routes are learnt and advertised based on RT.</div><div><br></div><div>All the routes in this VRF are advertised with RT (1:11) to neighbors.</div><div><br></div><div>I have a use case in which I want to apply different RT for different routes belonging to the same VRF.</div><div><br></div><div>For example,</div><div>I have the following prefixes in this VRF "vrf2".</div><div><a href="http://101.1.1.0/24">101.1.1.0/24</a></div><div><a href="http://103.1.1.0/24">103.1.1.0/24</a></div><div><a href="http://105.1.1.0/24">105.1.1.0/24</a></div><div><br></div><div>I would like to add different "export route target" as below for routes belong to same VRF</div><div><div><a href="http://101.1.1.0/24">101.1.1.0/24</a> :  export RT 1:11</div><div><a href="http://103.1.1.0/24">103.1.1.0/24</a> :  export RT  1:20</div><div><a href="http://105.1.1.0/24">105.1.1.0/24</a> :  export RT  1:30</div></div><div><br></div><div>Please let me know if there is any way to achieve this with BIRD configuration.<br></div><div><br></div><div>protocol l3vpn l3vpn2 {<br>  Â  Â  Â  vrf "vrf2";<br>  Â  Â  Â  ipv4 { table vrf2v4; };<br>  Â  Â  Â  ipv6 { table vrf2v6; };<br>  Â  Â  Â  vpn4 { table vpntab4; };<br>  Â  Â  Â  vpn6 { table vpntab6; };<br>  Â  Â  Â  mpls {<br>  Â  Â  Â  Â  Â  Â  Â  label policy aggregate;<br>  Â  Â  Â  Â  Â  Â  Â  label range vrfrange;<br>  Â  Â  Â  };<br><br>  Â  Â  Â  rd 1:11;<br>  Â  Â  Â  import target [(rt, 1, 11)];<br>  Â  Â  Â  export target [(rt, 1, 11)];<br>}<br></div><div><br></div><div><br></div><div><br></div><div>Thanks,</div><div>Ramanathan</div></div>