blob: 37833fc79c6acbfbc39edbf39aa960bdabfe1f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# managed by Ansible
roa6 table clear_roa_v6;
protocol rpki roa_clearnet1 {
roa6 { table clear_roa_v6; };
remote {{ uvok_bird_opts.rpki1 }};
port 8282;
refresh 3600;
# initial retry time - for Babel routes to propagate
retry 5;
expire 7200;
max version 1;
}
protocol rpki roa_clearnet2 {
roa6 { table clear_roa_v6; };
remote {{ uvok_bird_opts.rpki2 }};
port 8282;
refresh 3600;
# initial retry time - for Babel routes to propagate
retry 5;
expire 7200;
max version 1;
}
|