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