diff options
| author | Philippe Guibert <philippe.guibert@6wind.com> | 2019-09-19 08:28:14 +0200 |
|---|---|---|
| committer | Philippe Guibert <philippe.guibert@6wind.com> | 2020-07-02 08:17:51 +0200 |
| commit | f9dea02e96679edf229b48bff417b0135ace239b (patch) | |
| tree | fbd5dc3bd4fd8383fc72ef9b2d4373bd2b6969a6 | |
| parent | b5b9dcae9c2429cd205e4ec498065f3b38a053c5 (diff) | |
bgpd: missing rpki retry-interval in show running-config
show running-config did not display rpki retry-interval. fixes this.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
| -rw-r--r-- | bgpd/bgp_rpki.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgp_rpki.c b/bgpd/bgp_rpki.c index 6ead123dcb..22eb02d1cb 100644 --- a/bgpd/bgp_rpki.c +++ b/bgpd/bgp_rpki.c @@ -916,6 +916,7 @@ static int config_write(struct vty *vty) vty_out(vty, "!\n"); vty_out(vty, "rpki\n"); vty_out(vty, " rpki polling_period %d\n", polling_period); + vty_out(vty, " rpki retry-interval %d\n", retry_interval); for (ALL_LIST_ELEMENTS_RO(cache_list, cache_node, cache)) { switch (cache->type) { struct tr_tcp_config *tcp_config; |
