mirror of https://github.com/bol-van/zapret/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
286 B
23 lines
286 B
zapret_do_firewall()
|
|
{
|
|
linux_fwtype
|
|
|
|
case "$FWTYPE" in
|
|
iptables)
|
|
zapret_do_firewall_ipt "$@"
|
|
;;
|
|
nftables)
|
|
zapret_do_firewall_nft "$@"
|
|
;;
|
|
esac
|
|
|
|
return 0
|
|
}
|
|
zapret_apply_firewall()
|
|
{
|
|
zapret_do_firewall 1 "$@"
|
|
}
|
|
zapret_unapply_firewall()
|
|
{
|
|
zapret_do_firewall 0 "$@"
|
|
}
|
|
|