Blame extensions/libipt_icmp.txlate

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