Browse Source

bird: Learn routes from VLANs for 3rd party devices like TTN gateways (Vlans 29xy).

Signed-off-by: Maximilian Wilhelm <max@rfc2324.org>
Maximilian Wilhelm 6 years ago
parent
commit
2eac7d6bb8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bird/l3-access.conf

+ 1 - 1
bird/l3-access.conf

@@ -4,7 +4,7 @@
 
 protocol direct l3_access {
 {%- for iface in salt['pillar.get']('nodes:' ~ grains['id'] ~ ':ifaces') %}
-  {%- if salt['ffho.re_search']('^vlan3\d\d$', iface) %}
+  {%- if salt['ffho.re_search']('^vlan(3\d\d|29\d\d)$', iface) %}
 	interface "{{ iface }}";
   {%- endif %}
 {%- endfor %}