diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-05-08 22:25:38 +0300 |
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-05-10 09:50:18 +0300 |
| commit | e797b137f3fa3ee608f20958bbbb8991d37e0d6d (patch) | |
| tree | ba34d1ac071d73a190d43ee43109715211a5c5ee /yang/frr-route-map.yang | |
| parent | c143a29b6bcc35cfbe5a994b76e53e6f4c40f360 (diff) | |
lib: Allow doing match/set tag untagged
In route-map: `match tag untagged`.
E.g. Cisco/Juniper allows that, but they use `match tag 0` instead.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'yang/frr-route-map.yang')
| -rw-r--r-- | yang/frr-route-map.yang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yang/frr-route-map.yang b/yang/frr-route-map.yang index 7cb13b60f2..26d56acc03 100644 --- a/yang/frr-route-map.yang +++ b/yang/frr-route-map.yang @@ -268,7 +268,7 @@ module frr-route-map { when "derived-from-or-self(../condition, 'match-tag')"; leaf tag { type uint32 { - range "1..4294967295"; + range "0..4294967295"; } } } |
