-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We need to operate w/o cryptographic algorithm during key creation due to how our legacy CLI works (each command issuing a single YANG modification). Signed-off-by: Christian Hopps <[email protected]>
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
module frr-deviations-ietf-key-chain { | ||
yang-version 1.1; | ||
namespace "http://frrouting.org/yang/frr-deviations-ietf-key-chain"; | ||
prefix frr-deviations-ietf-key-chain; | ||
|
||
import ietf-key-chain { | ||
prefix kc; | ||
} | ||
|
||
organization | ||
"FRRouting"; | ||
contact | ||
"FRR Users List: <mailto:[email protected]> | ||
FRR Development List: <mailto:[email protected]>"; | ||
description | ||
"This module defines deviation statements for the ietf-key-chain | ||
module."; | ||
|
||
revision 2024-03-03 { | ||
description "Initial revision."; | ||
reference "RFC 8177: YANG Data Model for Key Chains"; | ||
} | ||
|
||
deviation /kc:key-chains/kc:key-chain/kc:key/kc:crypto-algorithm { | ||
deviate replace { | ||
mandatory false; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters