updated on Wed Jan 18 16:10:53 UTC 2012
[aur-mirror.git] / ferm / ferm.conf
bloba613da344188f80a8e8b8c10772c91576876e040
1 # -*- shell-script -*-
2 #  Configuration file for ferm(1).
4 table filter {
5     chain INPUT {
6         policy DROP;
8         # connection tracking
9         mod state state (ESTABLISHED RELATED) ACCEPT;
11         # allow local packet
12         interface lo ACCEPT;
14         # allow icmp is a good idea
15         proto icmp ACCEPT; 
17         # allow SSH connections
18         proto tcp dport ssh ACCEPT mod state state NEW;
19     }
20     chain OUTPUT policy ACCEPT;
21     chain FORWARD {
22         policy DROP;
24         # connection tracking
25         mod state state (ESTABLISHED RELATED) ACCEPT;
26     }
29 # IPv6:
30 #domain ip6 {
31 #    table filter {
32 #        chain INPUT {
33 #            policy ACCEPT;
34 #            # ...
35 #        }
36 #        # ...
37 #    }
40 # vim:set ts=2 sw=2 ft=sh et: