mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2025-01-03 11:00:49 -05:00
split out network nftables rules for SUPL proxy
This commit is contained in:
parent
f0f6b9d993
commit
8b96ee620c
63
nftables-network.conf
Normal file
63
nftables-network.conf
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
#!/usr/bin/nft -f
|
||||||
|
|
||||||
|
flush ruleset
|
||||||
|
|
||||||
|
table inet filter {
|
||||||
|
chain prerouting-raw {
|
||||||
|
type filter hook prerouting priority raw
|
||||||
|
|
||||||
|
iif lo notrack accept
|
||||||
|
tcp dport {22, 80, 443, 7275} notrack accept
|
||||||
|
meta l4proto {icmp, ipv6-icmp} notrack accept
|
||||||
|
}
|
||||||
|
|
||||||
|
chain output-raw {
|
||||||
|
type filter hook output priority raw
|
||||||
|
|
||||||
|
oif lo notrack accept
|
||||||
|
tcp sport {22, 80, 443, 7275} notrack accept
|
||||||
|
meta l4proto {icmp, ipv6-icmp} notrack accept
|
||||||
|
}
|
||||||
|
|
||||||
|
chain input {
|
||||||
|
type filter hook input priority filter
|
||||||
|
policy drop
|
||||||
|
|
||||||
|
iif lo accept
|
||||||
|
tcp dport {22, 80, 443, 7275} ip daddr {{ipv4_address}} accept
|
||||||
|
tcp dport {22, 80, 443, 7275} ip6 daddr {{ipv6_address}} accept
|
||||||
|
meta l4proto {icmp, ipv6-icmp} accept
|
||||||
|
|
||||||
|
ct state vmap { invalid : drop, established : accept, related : accept }
|
||||||
|
|
||||||
|
meta l4proto udp reject
|
||||||
|
meta l4proto tcp reject with tcp reset
|
||||||
|
reject
|
||||||
|
}
|
||||||
|
|
||||||
|
chain forward {
|
||||||
|
type filter hook forward priority filter
|
||||||
|
policy drop
|
||||||
|
}
|
||||||
|
|
||||||
|
chain output {
|
||||||
|
type filter hook output priority filter
|
||||||
|
|
||||||
|
oif lo goto output-internal
|
||||||
|
skuid != {root, systemd-network, unbound, chrony, http} counter goto output-reject
|
||||||
|
}
|
||||||
|
|
||||||
|
chain output-internal {
|
||||||
|
skuid unbound meta l4proto {tcp, udp} th sport 53 th dport >= 1024 accept
|
||||||
|
skuid {chrony, http} meta l4proto {tcp, udp} th sport >= 1024 th dport 53 accept
|
||||||
|
|
||||||
|
skuid != root counter goto output-reject
|
||||||
|
accept
|
||||||
|
}
|
||||||
|
|
||||||
|
chain output-reject {
|
||||||
|
meta l4proto udp reject
|
||||||
|
meta l4proto tcp reject with tcp reset
|
||||||
|
reject
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user