vps/nftables.conf

33 lines
647 B
Text
Raw Normal View History

2023-11-22 08:26:10 +01:00
#!/usr/sbin/nft -f
flush ruleset
table inet filter {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
2023-11-29 08:32:08 +01:00
2023-11-22 08:26:10 +01:00
ct state invalid drop
2023-11-29 08:32:08 +01:00
ct state { established, related } accept
2023-11-22 08:26:10 +01:00
# Allow ICMP ping
2023-11-29 08:32:08 +01:00
meta nfproto ipv4 icmp type echo-request limit rate 1/second accept
meta nfproto ipv6 icmpv6 type echo-request limit rate 1/second accept
2023-11-22 08:26:10 +01:00
# SSH
2023-11-29 08:32:08 +01:00
tcp dport 995 limit rate 15/minute accept
2023-11-22 08:26:10 +01:00
# HTTP
2023-11-29 08:32:08 +01:00
tcp dport { http, https } limit rate 25/second accept
2023-11-22 08:26:10 +01:00
}
chain forward {
type filter hook forward priority 0; policy accept;
}
chain output {
type filter hook output priority 0; policy accept;
}
}