Hi,
You could use null as-path regular expression as filter in BGP export policy to announce only locally originated routes:
[edit policy-options] null-as "()"; policy-statement only-my-routes { term just-my-as { from { protocol bgp; as-path null-as; } then accept; } term nothing-else { then reject; } }
Cheers,
Ashvin