File: block.fw

package info (click to toggle)
foomuuri 0.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 856 kB
  • sloc: python: 4,075; makefile: 126; sh: 39
file content (27 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# "Block all traffic" ruleset that can be used in foomuuri-boot.service
# instead of "good.fw". This file is also used by "foomuuri block" command.
#
# Use command "systemctl edit --full foomuuri-boot.service" to switch to this
# file instead of "good.fw".
#
# Warning: Do not edit this file as Foomuuri update will overwrite it.

table inet foomuuri
delete table inet foomuuri

table inet foomuuri {
	chain input {
		type filter hook input priority filter
		drop
	}

	chain output {
		type filter hook output priority filter
		drop
	}

	chain forward {
		type filter hook forward priority filter
		drop
	}
}