mirror of
https://github.com/trailofbits/algo.git
synced 2026-09-08 02:37:48 +02:00
initial commit
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
[defaults]
|
||||
inventory = inventory
|
||||
remote_user = root
|
||||
@@ -0,0 +1,14 @@
|
||||
---
|
||||
- name: Install StrongSwan
|
||||
apt: name=strongswan state=latest update_cache=yes
|
||||
|
||||
- name: Modify sysctl values to route traffic appropriately
|
||||
sysctl:
|
||||
- name=net.ipv4.ip_forwarding value=1
|
||||
- name=net.ipv4.conf.all.accept_redirects value=0
|
||||
- name=net.ipv4.conf.all.send_redirects value=0
|
||||
|
||||
- name: Configure IPTables to route traffic appropriately
|
||||
iptables:
|
||||
- table=nat chain=POSTROUTING src=10.0.0.0/24 dst=10.0.0.0/24 jump=MASQUERADE
|
||||
|
||||
Reference in New Issue
Block a user