HTTP source: Get https://tardigrade.io/trusted-satellites: dial tcp: lookup tardigrade.io

This is the original configuration of my firewall, I have never touched anything there, I do not know why it stopped working

Node running Centos 8.1

[root@storj2 ~]# firewall-cmd --list-all
public (active)
target: default
icmp-block-inversion: no
interfaces: eth0
sources:
services: cockpit dhcpv6-client ssh
ports:
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
rule family=“ipv4” source address=“172.17.0.0/16” accept
[root@storj2 ~]#

run this command

firewall-cmd --zone = public --permanent --add-port = 28967 / tcp
firewall-cmd --zone = public --permanent --add-port = 14001 / tcp
service firewalld restart

and now everything works ok

[root@storj2 ~]# firewall-cmd --list-all
public (active)
target: default
icmp-block-inversion: no
interfaces: eth0
sources:
services: cockpit dhcpv6-client ssh
ports: 28967/tcp 14002/tcp
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
rule family=“ipv4” source address=“172.17.0.0/16” accept
[root@storj2 ~]#