diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-06-20 20:01:14 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-06-20 20:29:18 +0200 |
commit | cc22635ac4872ff29948c675900679fc5b30f993 (patch) | |
tree | 2912456aab678ff53bd7f9fde0d31759cb4b0ad1 /bgpd/bgp_rpki.c | |
parent | bgpd: Add `no rpki` command (diff) | |
download | frr-cc22635ac4872ff29948c675900679fc5b30f993.tar.xz frr-cc22635ac4872ff29948c675900679fc5b30f993.zip |
bgpd: Allow deleting full line for RPKI cache server
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_rpki.c')
-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 90f48a5be..c14a048e6 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") { |