30 lines
341 B
Text
30 lines
341 B
Text
#! /sbin/nft -f
|
|
|
|
table inet firewall {
|
|
|
|
set allowed_daddr_prerezotage {
|
|
type ipv4_addr
|
|
flags interval
|
|
elements = {
|
|
$comnpay,
|
|
$website
|
|
}
|
|
}
|
|
|
|
|
|
chain to_prerezotage {
|
|
accept
|
|
}
|
|
|
|
chain from_prerezotage {
|
|
ip daddr != @allowed_daddr_prerezotage drop
|
|
}
|
|
|
|
}
|
|
|
|
table nat {
|
|
chain prerezotage_nat {
|
|
snat to $ip_self_public
|
|
}
|
|
}
|
|
|