2021-05-25 04:12:28 +02:00
|
|
|
# This file was auto-generated by Puppet. Do not edit by hand.
|
|
|
|
*filter
|
|
|
|
|
|
|
|
# Allow all outbound traffic
|
|
|
|
-A OUTPUT -j ACCEPT
|
|
|
|
|
|
|
|
# Accept all loopback traffic
|
|
|
|
-A INPUT -i lo -j ACCEPT
|
|
|
|
|
|
|
|
# Drop all traffic to loopback IPs on other interfaces
|
2023-08-30 17:15:20 +02:00
|
|
|
-A INPUT ! -i lo -d 127.0.0.0/8 -j DROP
|
2021-05-25 04:12:28 +02:00
|
|
|
|
|
|
|
# Accept incoming traffic related to established connections
|
|
|
|
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
|
|
|
|
|
|
|
|
# Host-specific rules follow:
|