소스 검색

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 3 년 전
부모
커밋
af03a178da
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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 %}