diff options
Diffstat (limited to 'roles/configure_static_routes/templates/ffmyk-iproute-up.j2')
-rw-r--r-- | roles/configure_static_routes/templates/ffmyk-iproute-up.j2 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/configure_static_routes/templates/ffmyk-iproute-up.j2 b/roles/configure_static_routes/templates/ffmyk-iproute-up.j2 new file mode 100644 index 0000000..a8275da --- /dev/null +++ b/roles/configure_static_routes/templates/ffmyk-iproute-up.j2 @@ -0,0 +1,11 @@ +#!/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 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 |