From 596f2e32e38bef076001f4b9a4c75b07fd0264b7 Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Wed, 9 Jun 2021 19:54:01 +0200 Subject: [PATCH] Nest: Allow both 'password' and 'key' keywords for authentication keys --- doc/bird.sgml | 7 +++---- nest/config.Y | 8 +++++--- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/doc/bird.sgml b/doc/bird.sgml index 15085874..39dadaf2 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -789,10 +789,9 @@ agreement"). specified this way must be at least 16 bytes (32 digits) long (although specific algorithms can impose other restrictions). - This option is allowed in BFD, OSPF and RIP protocols. BGP has also -

Password option can contain section with some (not necessary all) password sub-options: diff --git a/nest/config.Y b/nest/config.Y index 94f9b5dc..7ead8589 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -115,7 +115,7 @@ CF_KEYWORDS(ROUTER, ID, HOSTNAME, PROTOCOL, TEMPLATE, PREFERENCE, DISABLED, DEBU CF_KEYWORDS(INTERFACE, IMPORT, EXPORT, FILTER, NONE, VRF, DEFAULT, TABLE, STATES, ROUTES, FILTERS) CF_KEYWORDS(IPV4, IPV6, VPN4, VPN6, ROA4, ROA6, FLOW4, FLOW6, SADR, MPLS) CF_KEYWORDS(RECEIVE, LIMIT, ACTION, WARN, BLOCK, RESTART, DISABLE, KEEP, FILTERED, RPKI) -CF_KEYWORDS(PASSWORD, FROM, PASSIVE, TO, ID, EVENTS, PACKETS, PROTOCOLS, CHANNELS, INTERFACES) +CF_KEYWORDS(PASSWORD, KEY, FROM, PASSIVE, TO, ID, EVENTS, PACKETS, PROTOCOLS, CHANNELS, INTERFACES) CF_KEYWORDS(ALGORITHM, KEYED, HMAC, MD5, SHA1, SHA256, SHA384, SHA512, BLAKE2S128, BLAKE2S256, BLAKE2B256, BLAKE2B512) CF_KEYWORDS(PRIMARY, STATS, COUNT, BY, FOR, COMMANDS, PREEXPORT, NOEXPORT, EXPORTED, GENERATE) CF_KEYWORDS(BGP, PASSWORDS, DESCRIPTION, SORTED) @@ -517,9 +517,11 @@ password_item: | password_item_begin password_item_end ; +pass_key: PASSWORD | KEY; + password_item_begin: - PASSWORD text { init_password_list(); init_password($2, strlen($2), password_id++); } - | PASSWORD BYTESTRING { init_password_list(); init_password($2->data, $2->length, password_id++); } + pass_key text { init_password_list(); init_password($2, strlen($2), password_id++); } + | pass_key BYTESTRING { init_password_list(); init_password($2->data, $2->length, password_id++); } ; password_item_params: