Ver código fonte

bird: No network type broadcast for new ERs

  The network type hack was introduced because of the UBNT edge routers and
  just came back to bite us. This is the quick fix until I come up with a
  nice general approach (or maybe all ERs are gone).

Signed-off-by: Maximilian Wilhelm <max@sdn.clinic>
Maximilian Wilhelm 3 anos atrás
pai
commit
327633f3b2
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      bird/IGP.conf

+ 1 - 1
bird/IGP.conf

@@ -100,7 +100,7 @@ protocol ospf IGP {
 {%- endfor %}
 {%- for interface, iface_config in interfaces.items()|sort %}
 		interface "{{ interface }}" {
-  {%- if interface.startswith ('ovpn-er-') and proto == 'v6' %}
+  {%- if interface.startswith ('ovpn-er-') and not 'yni' in interface and proto == 'v6' %}
 			type broadcast;
   {%- else %}
 			type pointopoint;