File: base.ferm

package info (click to toggle)
ferm 2.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,140 kB
  • sloc: perl: 2,839; sh: 126; makefile: 120
file content (13 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
# test base iptables parameters
table filter chain INPUT {
    interface eth0 saddr 192.168.0.0/24 ACCEPT;
    outerface ppp0 proto esp daddr 195.0.0.0/8 DROP;
    fragment LOG;
    proto ah ! fragment ACCEPT;
    proto ! udp DROP;
    proto !tcp DROP;
    daddr !10.0.0.0/8 REJECT;
    saddr !172.16.0.0/12 DROP;
    interface !ppp0 ACCEPT;
    outerface !ppp1 ACCEPT;
}