summaryrefslogtreecommitdiff
path: root/dan/ele-calypso.yml
diff options
context:
space:
mode:
Diffstat (limited to 'dan/ele-calypso.yml')
-rw-r--r--dan/ele-calypso.yml6
1 files changed, 6 insertions, 0 deletions
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 %}