Hello,
Creating a discard route for the NATed IPs and then redistributing into BGP can help.
Can you try the configuration below?
routing-options {
static {
route 1.2.3.4/32 discard;
}
}
policy-options {
policy-statement Nat-to-bgp {
from {
protocol static;
route-filter 1.2.3.4/32 exact;
}
then accept;
}
}
protocols {
bgp {
export Nat-to-bgp;
}
}
Regards
Rushi