From 10798b5b7a76c7a4f6b3e85af5318a8d210669de Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 22 Feb 2023 01:08:51 +0100 Subject: make sure ele-calypso uses emc vlan for streamfeed from ele-thetys --- dan/ele-calypso.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'dan/ele-calypso.yml') diff --git a/dan/ele-calypso.yml b/dan/ele-calypso.yml index b0c143c1..62f65836 100644 --- a/dan/ele-calypso.yml +++ b/dan/ele-calypso.yml @@ -44,6 +44,12 @@ {% if vlan_iface %} iface {{ vlan_ifname }} inet static address {{ (vlan_iface | first).address }} + {% for route in vlan_iface[0].static_routes | default([]) %} + up /bin/ip route add {{ route.destination }} via {{ route.gateway }}{% if 'source' in route %} src {{ route.source }}{% endif %}{{ '' }} + {% endfor %} + {% for route in vlan_iface[0].static_routes | default([]) | reverse %} + down /bin/ip route del {{ route.destination }} via {{ route.gateway }}{% if 'source' in route %} src {{ route.source }}{% endif %}{{ '' }} + {% endfor %} {% else %} iface {{ vlan_ifname }} inet manual {% endif %} -- cgit v1.2.3