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
}
}
|