Allow connections to wings

This commit is contained in:
LinuxSquare 2024-11-18 20:51:46 +01:00
parent 8df43c3391
commit f9232d32b2

View file

@ -1,6 +1,13 @@
## This file is managed by Ansible
#!/usr/sbin/nft
table inet filter {
chain input {
iifname eth0 tcp dport 8080 accept \
comment "Accept local connection to wings"
}
}
table ip nat {
chain DOCKER {}
}