diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2025-01-07 13:07:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-07 13:07:53 -0500 |
| commit | 13d21fd38ec3a9dad2b1a36488ee0539ec854268 (patch) | |
| tree | 51e5439fcae7ddbd14eeb330da903dfab96fbc71 | |
| parent | f915053106e3a7a04430d3093c6847b8e4432d2c (diff) | |
| parent | 1e26733df1fce1e745e0e3053694e9b961c643ea (diff) | |
Merge pull request #17791 from FRRouting/mergify/bp/stable/9.1/pr-17725
isisd: Allow full `no` form for `domain-password` and `area-password` (backport #17725)
| -rw-r--r-- | isisd/isis_cli.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/isisd/isis_cli.c b/isisd/isis_cli.c index d77d761b01..66cb9656a2 100644 --- a/isisd/isis_cli.c +++ b/isisd/isis_cli.c @@ -622,10 +622,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); |
