Skip to content

Commit

Permalink
Merge pull request FRRouting#17790 from FRRouting/mergify/bp/stable/1…
Browse files Browse the repository at this point in the history
…0.0/pr-17725

isisd: Allow full `no` form for `domain-password` and `area-password` (backport FRRouting#17725)
  • Loading branch information
donaldsharp authored Jan 7, 2025
2 parents c66b188 + 00de3f9 commit de8be50
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions isisd/isis_cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit de8be50

Please sign in to comment.