firewall/config/networks/switchs.nft

14 lines
145 B
Plaintext
Raw Normal View History

2021-11-07 11:14:20 +00:00
table inet firewall {
chain to_switchs {
meta iif $admin_if accept
drop
}
chain from_switchs {
meta oif $admin_if accept
drop
}
}