Jakub Sokołowski ad1cc0dd2b
enable 30303 for geth on master
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-03-19 20:26:12 +01:00

25 lines
515 B
YAML

---
- name: Enable geth port
iptables:
comment: 'Enable geth'
action: insert
chain: DOCKER-USER
jump: ACCEPT
source: '0.0.0.0/0'
protocol: tcp
destination_port: '{{ faucet_geth_main_port }}'
notify:
- Save iptables rules
- name: Enable faucet HTTP port
iptables:
comment: 'Enable faucet'
action: insert
chain: DOCKER-USER
jump: ACCEPT
source: '0.0.0.0/0'
protocol: tcp
destination_port: '{{ faucet_http_port }}'
notify:
- Save iptables rules