[IPTABLES] Add rules (Not tested)
This commit is contained in:
parent
5fa2b5bd2b
commit
fcd5694fa8
14 changed files with 415 additions and 0 deletions
57
roles/iptables/tasks/accept_dns.yml
Normal file
57
roles/iptables/tasks/accept_dns.yml
Normal file
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
|
||||
- name: Accept OUTPUT udp dport 53
|
||||
ansible.builtin.iptables:
|
||||
chain: OUTPUT
|
||||
protocol: udp
|
||||
ctstate:
|
||||
- NEW
|
||||
- RELATED
|
||||
- ESTABLISHED
|
||||
destination_port: 53
|
||||
jump: ACCEPT
|
||||
comment: Accept OUTPUT udp dport 53
|
||||
state: present
|
||||
become: yes
|
||||
|
||||
- name: Accept INPUT udp sport 53
|
||||
ansible.builtin.iptables:
|
||||
chain: OUTPUT
|
||||
protocol: udp
|
||||
ctstate:
|
||||
- NEW
|
||||
- RELATED
|
||||
- ESTABLISHED
|
||||
source_port: 53
|
||||
jump: ACCEPT
|
||||
comment: Accept OUTPUT udp sport 53
|
||||
state: present
|
||||
become: yes
|
||||
|
||||
- name: Accept OUTPUT tcp dport 53
|
||||
ansible.builtin.iptables:
|
||||
chain: OUTPUT
|
||||
protocol: tcp
|
||||
ctstate:
|
||||
- NEW
|
||||
- RELATED
|
||||
- ESTABLISHED
|
||||
destination_port: 53
|
||||
jump: ACCEPT
|
||||
comment: Accept OUTPUT tcp dport 53
|
||||
state: present
|
||||
become: yes
|
||||
|
||||
- name: Accept INPUT tcp sport 53
|
||||
ansible.builtin.iptables:
|
||||
chain: OUTPUT
|
||||
protocol: tcp
|
||||
ctstate:
|
||||
- NEW
|
||||
- RELATED
|
||||
- ESTABLISHED
|
||||
source_port: 53
|
||||
jump: ACCEPT
|
||||
comment: Accept OUTPUT tcp sport 53
|
||||
state: present
|
||||
become: yes
|
Loading…
Add table
Add a link
Reference in a new issue