summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2025-01-07 13:08:14 -0500
committerGitHub <noreply@github.com>2025-01-07 13:08:14 -0500
commitde8be500d2a843dae812aed2cc083c9d768bf8ab (patch)
tree8cfefaa1211f06dc0bf74a30cb634c0dd7e56139
parentc66b18838dce6d23076ddeca25bc8a0d6c627b8d (diff)
parent00de3f92449620fa40d5327e9ebbda818d8cb712 (diff)
Merge pull request #17790 from FRRouting/mergify/bp/stable/10.0/pr-17725
isisd: Allow full `no` form for `domain-password` and `area-password` (backport #17725)
-rw-r--r--isisd/isis_cli.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/isisd/isis_cli.c b/isisd/isis_cli.c
index 93f7bbf753..f2e48277f9 100644
--- a/isisd/isis_cli.c
+++ b/isisd/isis_cli.c
@@ -626,10 +626,17 @@ DEFPY_YANG(domain_passwd, domain_passwd_cmd,
}
DEFPY_YANG(no_area_passwd, no_area_passwd_cmd,
- "no <area-password|domain-password>$cmd",
+ "no <area-password|domain-password>$cmd [<clear|md5>$pwd_type WORD$pwd [authenticate snp <send-only|validate>$snp]]",
NO_STR
"Configure the authentication password for an area\n"
- "Set the authentication password for a routing domain\n")
+ "Set the authentication password for a routing domain\n"
+ "Clear-text authentication type\n"
+ "MD5 authentication type\n"
+ "Level-wide password\n"
+ "Authentication\n"
+ "SNP PDUs\n"
+ "Send but do not check PDUs on receiving\n"
+ "Send and check PDUs on receiving\n")
{
nb_cli_enqueue_change(vty, ".", NB_OP_DESTROY, NULL);