Last active
July 8, 2020 13:23
-
-
Save ernierasta/915ebb62dca4e70b3a5d0638269105dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table inet filter { | |
chain input { | |
type filter hook input priority 0; | |
iifname $LXC_BR accept \ | |
comment "Accept any LXC (bridge interface) traffic" | |
# common services on host | |
tcp dport { 22, 443 } accept; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment