gluon-mesh-babel: do not allow disabling VXLAN (#2376)

With Babel, wired meshing cannot run on the same logical interface as
non-mesh traffic, so using VXLAN is mandatory.
This commit is contained in:
Matthias Schiffer 2022-02-23 19:10:13 +01:00 committed by GitHub
parent 428b8afb92
commit 073e559dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,3 +5,5 @@ need_string_match(in_domain({'next_node', 'ip6'}), '^[%x:]+$', false)
need_string_match(in_domain({'next_node', 'ip4'}), '^%d+.%d+.%d+.%d+$', false)
need_string_match(in_domain({'next_node', 'mac'}), '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$', false)
need_value(in_domain({'mesh', 'vxlan'}), true, false)