Forrest logo
back to the iptables tool

iptables:ai:b35a1

$IPTABLES -A icmp_packets -p ICMP -s 0/0 --icmp-type 8 -j ACCEPT $IPTABLES -A icmp_packets -p ICMP -s 0/0 --icmp-type 11 -j ACCEPT
$ iptables -A icmp_packets -p ICMP -s 0/0 --icmp-type 8 -j ACCEPT && iptables -A icmp_packets -p ICMP -s 0/0 --icmp-type 11 -j ACCEPT
try on your machine

Allow incoming ICMP echo (type 8) and outgoing ICMP time exceeded (type 11) packets

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.

Questions that are answered by this command:

  • $IPTABLES -A icmp_packets -p ICMP -s 0/0 --icmp-type 8 -j ACCEPT $IPTABLES -A icmp_packets -p ICMP -s 0/0 --icmp-type 11 -j ACCEPT?
back to the iptables tool