Create VPN for port 53

This commit is contained in:
Jake Howard
2022-03-18 19:44:06 +00:00
parent bd49c1c869
commit b8736e1c65
8 changed files with 96 additions and 0 deletions

View File

@ -47,6 +47,15 @@ resource "linode_firewall" "casey" {
ipv6 = ["::/0"]
}
inbound {
label = "allow-inbound-wireguard-53"
action = "ACCEPT"
protocol = "UDP"
ports = "53"
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
inbound {
label = "allow-inbound-nebula"
action = "ACCEPT"