mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-26 20:20:53 +03:00
24 lines
286 B
Bash
24 lines
286 B
Bash
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 "$@"
|
|
}
|