mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-14 08:43:01 +02:00
add ip_version to firewall rules
This commit is contained in:
parent
bbd95b5751
commit
aa62bc2600
1 changed files with 7 additions and 6 deletions
|
@ -18,14 +18,15 @@
|
||||||
group: "{{ algo_server_name }}"
|
group: "{{ algo_server_name }}"
|
||||||
protocol: udp
|
protocol: udp
|
||||||
port: "{{ item.port }}"
|
port: "{{ item.port }}"
|
||||||
|
ip_version: "{{ item.ip }}"
|
||||||
cidr: "{{ item.cidr }}"
|
cidr: "{{ item.cidr }}"
|
||||||
with_items:
|
with_items:
|
||||||
- { port: 500, cidr: "0.0.0.0/0" }
|
- { port: 500, ip: v4, cidr: "0.0.0.0/0" }
|
||||||
- { port: 500, cidr: "::/0" }
|
- { port: 500, ip: v6, cidr: "::/0" }
|
||||||
- { port: 4500, cidr: "0.0.0.0/0" }
|
- { port: 4500, ip: v4, cidr: "0.0.0.0/0" }
|
||||||
- { port: 4500, cidr: "::/0" }
|
- { port: 4500, ip: v6, cidr: "::/0" }
|
||||||
- { port: 51820, cidr: "0.0.0.0/0" }
|
- { port: 51820, ip: v4, cidr: "0.0.0.0/0" }
|
||||||
- { port: 51820, cidr: "::/0" }
|
- { port: 51820, ip: v6, cidr: "::/0" }
|
||||||
|
|
||||||
- name: Creating a server
|
- name: Creating a server
|
||||||
vr_server:
|
vr_server:
|
||||||
|
|
Loading…
Add table
Reference in a new issue