22 lines
403 B
YAML
22 lines
403 B
YAML
|
---
|
||
|
|
||
|
- 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
|