From a72158a848349b4d56ace77ff5da78c577cfb968 Mon Sep 17 00:00:00 2001 From: Niklas Yann Wettengel Date: Fri, 14 Jul 2017 10:09:35 +0200 Subject: changed routing policy --- .../configure_static_routes/templates/ffmyk-iproute-up.j2 | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'roles/configure_static_routes/templates/ffmyk-iproute-up.j2') diff --git a/roles/configure_static_routes/templates/ffmyk-iproute-up.j2 b/roles/configure_static_routes/templates/ffmyk-iproute-up.j2 index a8275da..e97f8bc 100644 --- a/roles/configure_static_routes/templates/ffmyk-iproute-up.j2 +++ b/roles/configure_static_routes/templates/ffmyk-iproute-up.j2 @@ -1,11 +1,14 @@ #!/bin/bash -ip -4 rule add iif bat{{ item.name }} table ffmyk -ip -6 rule add iif bat{{ item.name }} table ffmyk -ip -4 rule add from {{ item.net4 }} table ffmyk -ip -6 rule add from {{ item.net6 }} table ffmyk -ip -4 rule add to {{ item.net4 }} table ffmyk -ip -6 rule add to {{ item.net6 }} table ffmyk +ip -4 rule add iif bat{{ item.name }} table ffmyk priority 10 +ip -6 rule add iif bat{{ item.name }} table ffmyk priority 10 +ip -4 rule add from {{ item.net4 }} table ffmyk priority 10 +ip -6 rule add from {{ item.net6 }} table ffmyk priority 10 +ip -4 rule add to {{ item.net4 }} table ffmyk priority 10 +ip -6 rule add to {{ item.net6 }} table ffmyk priority 10 + +ip -4 rule add from all iif bat{{ item.name }} type unreachable priority 200 +ip -6 rule add from all iif bat{{ item.name }} type unreachable priority 200 ip -4 route replace {{item.net4 }} dev bat{{ item.name }} proto static table ffmyk ip -6 route replace {{item.net6 }} dev bat{{ item.name }} proto static table ffmyk -- cgit v1.2.3-54-g00ecf