This article describes why you would configure stateless firewall filters (ACLs) on SRX Series devices.
Determine why you would configure stateless firewall filters (ACLs).
A stateless firewall filter, also known as an access control list (ACL), is a long-standing Junos feature used to define stateless packet filtering and quality of service (QoS). A stateless firewall filter statically evaluates packet contents. A stateful firewall filter uses connection state information derived from past communications and other applications to make dynamic control decisions. You can configure stateless firewall filters on SRX Series devices to do the following:
Firewall filters (ACLs) are applied before the Flow services module, as depicted in the following diagram.
user@host# show interfaces ge-0/0/0 { unit 0 { family inet { filter { input pim-traffic-filter; output pim-traffic-filter; } address 10.1.1.1/24; } } } user@host# show firewall family inet { filter pim-traffic-filter { term pim { from { source-address { 10.10.0.0/16; } destination-address { 224.0.0.13/32; } protocol pim; } then { policer network-control-5m; count pim-pkts; loss-priority low; forwarding-class network-control; accept; } } } } policer network-control-5m { if-exceeding { bandwidth-limit 5m; burst-size-limit 1m; } then discard; }