diff options
author | Maria Matejka <mq@ucw.cz> | 2023-04-14 15:18:18 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-04-14 15:18:18 +0200 |
commit | 61e64d6a4119c32e0fa1b03285f805e21a00f6ab (patch) | |
tree | 60bf261c10d0260e1e9d9265b10ca5fd33f67e6a /proto/bgp/config.Y | |
parent | 0c9e33fa7ae2bf0c0adb94c6ef9a446913ed50b8 (diff) | |
parent | 9e44ace3928a19560058dc713fcbff3a8bad3b3c (diff) |
Merge commit '9e44ace3' into thread-next-iface
Diffstat (limited to 'proto/bgp/config.Y')
-rw-r--r-- | proto/bgp/config.Y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto/bgp/config.Y b/proto/bgp/config.Y index 8b0d4356..a37bb27a 100644 --- a/proto/bgp/config.Y +++ b/proto/bgp/config.Y @@ -200,6 +200,7 @@ bgp_proto: | bgp_proto ALLOW LOCAL AS ';' { BGP_CFG->allow_local_as = -1; } | bgp_proto ALLOW LOCAL AS expr ';' { BGP_CFG->allow_local_as = $5; } | bgp_proto ALLOW BGP_LOCAL_PREF bool ';' { BGP_CFG->allow_local_pref = $4; } + | bgp_proto ALLOW BGP_MED bool ';' { BGP_CFG->allow_med = $4; } | bgp_proto ALLOW AS SETS bool ';' { BGP_CFG->allow_as_sets = $5; } | bgp_proto GRACEFUL RESTART bool ';' { BGP_CFG->gr_mode = $4; } | bgp_proto GRACEFUL RESTART AWARE ';' { BGP_CFG->gr_mode = BGP_GR_AWARE; } |