diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-06-20 21:01:14 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-06-20 21:29:18 +0300 | 
| commit | cc22635ac4872ff29948c675900679fc5b30f993 (patch) | |
| tree | 2912456aab678ff53bd7f9fde0d31759cb4b0ad1 | |
| parent | 8156765abe5d5d5cdaffa0503799b117c32ac130 (diff) | |
bgpd: Allow deleting full line for RPKI cache server
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
| -rw-r--r-- | bgpd/bgp_rpki.c | 10 | 
1 files changed, 8 insertions, 2 deletions
diff --git a/bgpd/bgp_rpki.c b/bgpd/bgp_rpki.c index 90f48a5be0..c14a048e6c 100644 --- a/bgpd/bgp_rpki.c +++ b/bgpd/bgp_rpki.c @@ -1239,13 +1239,19 @@ DEFPY(rpki_cache, rpki_cache_cmd,  DEFPY (no_rpki_cache,         no_rpki_cache_cmd, -       "no rpki cache <A.B.C.D|WORD> <TCPPORT|(1-65535)$sshport> preference (1-255)$preference", +       "no rpki cache <A.B.C.D|WORD> <TCPPORT|(1-65535)$sshport SSH_UNAME SSH_PRIVKEY SSH_PUBKEY [SERVER_PUBKEY]> [source <A.B.C.D>$bindaddr] preference (1-255)",         NO_STR         RPKI_OUTPUT_STRING -       "Remove a cache server\n" +       "Install a cache server to current group\n"         "IP address of cache server\n Hostname of cache server\n"         "TCP port number\n"         "SSH port number\n" +       "SSH user name\n" +       "Path to own SSH private key\n" +       "Path to own SSH public key\n" +       "Path to Public key of cache server\n" +       "Configure source IP address of RPKI connection\n" +       "Define a Source IP Address\n"         "Preference of the cache server\n"         "Preference value\n")  {  | 
