diff options
author | uvok cheetah | 2024-06-23 12:33:33 +0200 |
---|---|---|
committer | uvok cheetah | 2024-06-23 12:34:45 +0200 |
commit | 0082293fbbc55b99c652813ffb0917a557858cb2 (patch) | |
tree | ea034a301017d284e95d1634d4a552643a5c7d77 /roles/uvok_bird | |
parent | 04dbd85d22f8bc6c87566d2cab84fab58cba34a0 (diff) |
bird: Fix initial RPKI retry time
Diffstat (limited to 'roles/uvok_bird')
-rw-r--r-- | roles/uvok_bird/templates/clear_rpki.conf.j2 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/roles/uvok_bird/templates/clear_rpki.conf.j2 b/roles/uvok_bird/templates/clear_rpki.conf.j2 index 97f869c..80d6207 100644 --- a/roles/uvok_bird/templates/clear_rpki.conf.j2 +++ b/roles/uvok_bird/templates/clear_rpki.conf.j2 @@ -7,7 +7,8 @@ protocol rpki roa_clearnet1 { remote {{ uvok_bird_opts.rpki1 }}; port 8282; refresh 3600; - retry 600; + # initial retry time - for Babel routes to propagate + retry 5; expire 7200; } @@ -16,6 +17,7 @@ protocol rpki roa_clearnet2 { remote {{ uvok_bird_opts.rpki2 }}; port 8282; refresh 3600; - retry 600; + # initial retry time - for Babel routes to propagate + retry 5; expire 7200; } |