diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-02-12 05:05:18 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-02-12 05:05:18 +0100 |
commit | d3782c72b9243f4609e61edf5f29e6adeaa41e9c (patch) | |
tree | 87ddeee4b3f4f2913cea1bb4dce9e2f2455ac898 /nest/config.Y | |
parent | 77ce849ecf0f89455eeabefbe520c6b4888837b0 (diff) |
Nest: Add option to control automatic RPKI reload
Also, no automatic reload for BGP channels without import/export table.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nest/config.Y b/nest/config.Y index 39bf6149..ef2d0d5f 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -265,6 +265,7 @@ channel_item_: | EXPORT LIMIT limit_spec { this_channel->out_limit = $3; } | PREFERENCE expr { this_channel->preference = $2; check_u16($2); } | IMPORT KEEP FILTERED bool { this_channel->in_keep_filtered = $4; } + | RPKI RELOAD bool { this_channel->rpki_reload = $3; } ; /* To avoid grammar collision in Pipe protocol */ |