Você quer dizer, por exemplo
iptables -F INPUT
iptables -I INPUT 1 -j RETURN
De man iptables
:
If [...] a rule in a built-in chain with target RETURN is matched, the target specified by the chain policy determines the fate of the packet.
A política da cadeia é definida com iptables -P
e pode ser encontrada no início da saída de iptables -L -n -v
, por exemplo:
Chain INPUT (policy DROP 32 packets, 6666 bytes)
que mostra uma política de DROP
na cadeia INPUT
.