firewall/config/networks/switchs.nft

14 lines
149 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
2021-11-07 11:14:20 +00:00
drop
}
chain from_switchs {
# meta oif $admin_if accept
2021-11-07 11:14:20 +00:00
drop
}
}