Blame extensions/libipt_icmp.txlate

Packit Service d1fe03
iptables-translate -t filter -A INPUT -m icmp --icmp-type echo-reply -j ACCEPT
Packit Service d1fe03
nft add rule ip filter INPUT icmp type echo-reply counter accept
Packit Service d1fe03
Packit Service d1fe03
iptables-translate -t filter -A INPUT -m icmp --icmp-type 3 -j ACCEPT
Packit Service d1fe03
nft add rule ip filter INPUT icmp type destination-unreachable counter accept
Packit Service d1fe03
Packit Service d1fe03
iptables-translate -t filter -A INPUT -m icmp ! --icmp-type 3 -j ACCEPT
Packit Service d1fe03
nft add rule ip filter INPUT icmp type != destination-unreachable counter accept