Open MEschenbacher opened 2 years ago
The iptables generator does not generate any rules from protocol:: icmp icmpv6 but packetfilter does.
protocol:: icmp icmpv6
header { target:: iptables INPUT DROP target:: packetfilter test-filter } term permit-icmp { protocol:: icmp icmpv6 action:: accept }
Output iptables
# Iptables INPUT Policy # $Id:$ # $Date:$ # $Revision:$ # inet -P INPUT DROP
Output packetfilter
# Packetfilter test-filter Policy # $Id:$ # $Date:$ # $Revision:$ # inet # term permit-icmp pass quick inet proto { icmp ipv6-icmp } from { any } to { any } keep state
The iptables generator does not generate any rules from
protocol:: icmp icmpv6
but packetfilter does.Output iptables
Output packetfilter