This commit is contained in:
James Turland
2024-05-08 12:30:25 +01:00
parent a7b12f0b32
commit 13bf31486f
20 changed files with 559 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
- name: Enable IPv4 forwarding
ansible.posix.sysctl:
name: net.ipv4.ip_forward
value: "1"
state: present
reload: true
tags: sysctl
- name: Enable IPv6 forwarding
ansible.posix.sysctl:
name: net.ipv6.conf.all.forwarding
value: "1"
state: present
reload: true
tags: sysctl