Quellcode durchsuchen

bird: Set up sessions to node which have status offline, too.

  We use status "offline" for device like the Mobile POP which is intended to
  be used on short notice and therefore is completely configured and ready but
  is offline most of the time.

Signed-off-by: Maximilian Wilhelm <max@sdn.clinic>
Maximilian Wilhelm vor 3 Jahren
Ursprung
Commit
af03a178da
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      bird/ibgp.conf

+ 2 - 2
bird/ibgp.conf

@@ -30,8 +30,8 @@ template bgp ibgp {
       {%- continue %}
     {%- endif %}
 
-    {#- Don't try to set up sessions to VMs/devices which are "offline" or "planned" etc. #}
-    {%- if peer_node_config.get ('status', '') not in [ '', 'active', 'staged' ] %}
+    {#- Don't try to set up sessions to VMs/devices which are "planned", "failed", "decomissioning" and "inventory" #}
+    {%- if peer_node_config.get ('status', '') not in [ '', 'active', 'staged', 'offline' ] %}
       {%- continue %}
     {%- endif %}