pmaports/main/postmarketos-config-nftables/rules/51_anbox.nft

12 lines
345 B
Text
Raw Normal View History

#!/usr/sbin/nft -f
table inet filter {
chain input {
iif anbox0 accept comment "Allow incomming network traffic from Anbox"
}
chain forward {
iif anbox0 accept comment "Allow outgoing network traffic from Anbox"
ct state {established, related} counter accept comment "accept established connections"
}
}