Compare commits
2 Commits
v0.0.6r-em
...
v0.0.6s-jl
Author | SHA1 | Date | |
---|---|---|---|
083b112d03 | |||
252618618b |
@ -35,23 +35,22 @@ table filter {
|
|||||||
proto (udp tcp) dport domain ACCEPT;
|
proto (udp tcp) dport domain ACCEPT;
|
||||||
proto udp dport bootps ACCEPT;
|
proto udp dport bootps ACCEPT;
|
||||||
}
|
}
|
||||||
|
|
||||||
# interface réseau
|
# interface réseau
|
||||||
interface $DEV_WORLD {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
# the rest is dropped by the above policy
|
# the rest is dropped by the above policy
|
||||||
}#FIN INPUT
|
}#FIN INPUT
|
||||||
|
|
||||||
# outgoing connections are not limited
|
# outgoing connections are not limited
|
||||||
chain OUTPUT {policy ACCEPT;
|
chain OUTPUT {
|
||||||
|
policy ACCEPT;
|
||||||
|
# interface $DEV_VPN proto ssh dport 22 ACCEPT;
|
||||||
|
|
||||||
}#FIN OUTPUT
|
}#FIN OUTPUT
|
||||||
|
|
||||||
chain FORWARD {
|
chain FORWARD {
|
||||||
policy ACCEPT;
|
policy ACCEPT;
|
||||||
|
|
||||||
proto icmp icmp-type echo-request ACCEPT;
|
proto icmp icmp-type echo-request ACCEPT;
|
||||||
}
|
|
||||||
# connection tracking
|
# connection tracking
|
||||||
mod state state INVALID DROP;
|
mod state state INVALID DROP;
|
||||||
mod state state (ESTABLISHED RELATED) ACCEPT;
|
mod state state (ESTABLISHED RELATED) ACCEPT;
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
copy:
|
copy:
|
||||||
src: /root/tools/ansible/gsb2023/roles/peertube/files/resolv.conf
|
src: /root/tools/ansible/gsb2023/roles/peertube/files/resolv.conf
|
||||||
dest: /etc/
|
dest: /etc/
|
||||||
mode '0644'
|
mode: '0644'
|
||||||
|
|
||||||
- name: création du répertoire du dépot peertube...
|
- name: création du répertoire du dépot peertube...
|
||||||
file:
|
file:
|
||||||
|
Reference in New Issue
Block a user