This commit is contained in:
Marc Fokkert
2025-05-27 08:36:22 +02:00
parent 82fb383c2e
commit e5ce28f918
5 changed files with 20 additions and 4 deletions

View File

@@ -33,7 +33,15 @@ resource "docker_network" "ipv6-slaac" {
ipv6 = true
ipam_config {
aux_address = {}
gateway = "192.168.48.1"
subnet = "192.168.48.0/20"
}
ipam_config {
aux_address = {}
subnet = "2a02:a470:b12a:2::/64"
gateway = "2a02:a470:b12a:2::1"
}
}
@@ -42,7 +50,15 @@ resource "docker_network" "ip6net" {
ipv6 = true
ipam_config {
aux_address = {}
gateway = "192.168.64.1"
subnet = "192.168.64.0/20"
}
ipam_config {
aux_address = {}
subnet = "2001:db8::/64"
gateway = "2001:db8::1"
}
}