diff options
| author | Philippe Guibert <philippe.guibert@6wind.com> | 2019-09-19 10:15:05 +0200 |
|---|---|---|
| committer | Philippe Guibert <philippe.guibert@6wind.com> | 2020-07-02 08:17:51 +0200 |
| commit | 416d0484c061e9b8c586ee7ba3cc079c827bfd8f (patch) | |
| tree | a013ac3c90ebe12b2e4b313f2f43124017e04cd8 | |
| parent | f9dea02e96679edf229b48bff417b0135ace239b (diff) | |
bgpd: missing rpki expire-interval in show running-config
a missing command expire-interval was not present in show
running-config.
append it.
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 22eb02d1cb..3bd4f6ff5a 100644 --- a/bgpd/bgp_rpki.c +++ b/bgpd/bgp_rpki.c @@ -917,6 +917,7 @@ static int config_write(struct vty *vty) 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); + vty_out(vty, " rpki expire_interval %d\n", expire_interval) for (ALL_LIST_ELEMENTS_RO(cache_list, cache_node, cache)) { switch (cache->type) { struct tr_tcp_config *tcp_config; |
