21 lines
546 B
YAML
21 lines
546 B
YAML
|
---
|
||
|
# tasks file for iptables-ipfs
|
||
|
|
||
|
- name: setup iptables for IPFS
|
||
|
when:
|
||
|
- "is_docker is not true"
|
||
|
- "iptables_ipfs_enabled is true"
|
||
|
block:
|
||
|
- name: Allow new, established packets on TCP/UDP port 4001 (IPFS)
|
||
|
ansible.builtin.iptables:
|
||
|
chain: INPUT
|
||
|
protocol: tcp
|
||
|
destination_port: "{{ iptables_ipfs_port }}"
|
||
|
ctstate: NEW,ESTABLISHED
|
||
|
jump: ACCEPT
|
||
|
comment: IPFS dedicated port
|
||
|
|
||
|
- name: iptables-persistent
|
||
|
ansible.builtin.include_role:
|
||
|
name: iptables-persistent
|