1
0
Fork 0
myserver-configuration/roles/iptables/tasks/accept_matrix.yml

22 lines
403 B
YAML
Raw Normal View History

2023-05-20 23:54:16 +02:00
---
- name: Accept INPUT 8448
ansible.builtin.iptables:
chain: INPUT
protocol: tcp
destination_port: 8448
jump: ACCEPT
comment: Accept INPUT 8448
state: present
become: yes
- name: Accept OUTPUT 8448
ansible.builtin.iptables:
chain: OUTPUT
protocol: tcp
destination_port: 8448
jump: ACCEPT
comment: Accept OUTPUT 8448
state: present
become: yes