In the setting of two edge routers and two core routers with mesh connectivity, edge routers have the following configs
set policy prefix-list default-prefix4 description 'Default Route v4'
set policy prefix-list default-prefix4 rule 10 action 'permit'
set policy prefix-list default-prefix4 rule 10 prefix '0.0.0.0/0'
set policy route-map REDIS__DEFAULT4 rule 10 action 'permit'
set policy route-map REDIS__DEFAULT4 rule 10 match ip address prefix-list 'default-prefix4'
set protocols isis default-information originate ipv4 level-2 always
set protocols isis redistribute ipv4 static level-2 route-map 'REDIS__DEFAULT4'
Unfortunately, the default route originated from the edge routers to the core routers comes back to the edge routers and enters the edge routers’ global routing tables. How to prevent it? Thanks!