File: time.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 (18 lines) | stat: -rw-r--r-- 545 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
table filter chain INPUT mod time {
    proto tcp dport ssh {
        timestart 09:00 timestop 18:00 ACCEPT;
        REJECT reject-with icmp-host-prohibited;
    }
    days Sun DROP;
    days (Fri Sat) REJECT;
    proto tcp dport http {
        datestart 2005/02/01 ACCEPT;
        REJECT;
    }
    datestop 2004/12/31 DROP;
    datestop 2004/12/31 timestart 09:00 DROP;
    datestop 2004/12/31 timestart 18:00 kerneltz DROP;
    monthday (1 2 3) ACCEPT;
    weekdays (Mon Tue Wed) ACCEPT;
    timestart 22:00 timestop 07:00 contiguous DROP;
}