diff options
author | Quentin <quentin@dufour.io> | 2020-07-05 20:37:19 +0200 |
---|---|---|
committer | Quentin <quentin@dufour.io> | 2020-07-05 20:37:19 +0200 |
commit | 09878271f2a207ffb33c1f293dd26ee97cc6fff2 (patch) | |
tree | ee8d82b8640deed41acf13ab5cce94045ebc3081 /ansible/roles/network/templates/nomad-interface.j2 | |
parent | f427bcf5645d92604be3994496bf44bd93f5c7e3 (diff) | |
parent | faf39bbb282542efa237c39f4371918589508254 (diff) | |
download | infrastructure-09878271f2a207ffb33c1f293dd26ee97cc6fff2.tar.gz infrastructure-09878271f2a207ffb33c1f293dd26ee97cc6fff2.zip |
Merge pull request 'Network configuration' (#1) from network_config into master
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/deuxfleurs.fr/pulls/1
Diffstat (limited to 'ansible/roles/network/templates/nomad-interface.j2')
-rw-r--r-- | ansible/roles/network/templates/nomad-interface.j2 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ansible/roles/network/templates/nomad-interface.j2 b/ansible/roles/network/templates/nomad-interface.j2 deleted file mode 100644 index 74e9cd4..0000000 --- a/ansible/roles/network/templates/nomad-interface.j2 +++ /dev/null @@ -1,8 +0,0 @@ -auto nomad1 -iface nomad1 inet manual - pre-up /sbin/ip link add nomad1 type dummy - up /sbin/ip addr add {{ public_ip }} dev nomad1 - up /sbin/iptables -t nat -A PREROUTING -d {{ private_ip }}/32 -j NETMAP --to {{ public_ip }}/32 - down /sbin/iptables -t nat -D PREROUTING -d {{ private_ip }}/32 -j NETMAP --to {{ public_ip }}/32 - post-down /sbin/ip link del nomad1 - |