mirror of
https://github.com/status-im/infra-role-geth.git
synced 2025-01-10 12:15:44 +00:00
16 lines
323 B
YAML
16 lines
323 B
YAML
---
|
|
- name: Geth | Enable ports on firewall
|
|
iptables:
|
|
comment: '{{ geth_cont_name }} {{ item }}'
|
|
jump: ACCEPT
|
|
action: insert
|
|
chain: DOCKER-USER
|
|
source: '0.0.0.0/0'
|
|
protocol: '{{ item }}'
|
|
destination_port: '{{ geth_port }}'
|
|
with_items:
|
|
- tcp
|
|
- udp
|
|
notify:
|
|
- Save iptables rules
|