diff options
| author | Christian Hopps <chopps@labn.net> | 2024-03-01 06:14:46 -0500 | 
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2024-03-03 17:59:36 -0500 | 
| commit | 3fa5a77def22e8f9fcec83a3e8e5e7ce8f1f6240 (patch) | |
| tree | 9d7cfc237edf269dd8bbc1edd9655f98596681a9 /yang/ietf | |
| parent | 0f6538263d178054433b17996fea6f52a4f7a56e (diff) | |
yang: modify standard model
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 <chopps@labn.net>
Diffstat (limited to 'yang/ietf')
| -rw-r--r-- | yang/ietf/frr-deviations-ietf-key-chain.yang | 29 | 
1 files changed, 29 insertions, 0 deletions
diff --git a/yang/ietf/frr-deviations-ietf-key-chain.yang b/yang/ietf/frr-deviations-ietf-key-chain.yang new file mode 100644 index 0000000000..aa6a41f884 --- /dev/null +++ b/yang/ietf/frr-deviations-ietf-key-chain.yang @@ -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:frog@lists.frrouting.org> +     FRR Development List: <mailto:dev@lists.frrouting.org>"; +  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; +    } +  } +}  | 
