Have a config like:
rpki {
cache routinator {
address 192.168.100.90
port 3323
}
}and a route-map like:
route-map ebgp-transit-rpki {
rule 10 {
action deny
match {
rpki invalid
}
}
rule 20 {
action permit
match {
rpki notfound
}
set {
local-preference 20
}
}
rule 30 {
action permit
match {
rpki valid
}
set {
local-preference 100
}
}
}after reboot this setup (bgp session having this import route-map set comes up with 0 prefixes) doesn't work till I enter vtysh and execute rpki stop, rpki start and clear bgp *