Skip to content
Snippets Groups Projects
Commit ae3857d0 authored by Manuel Kieweg's avatar Manuel Kieweg
Browse files

simplified topo

parent a07b924c
Branches
Tags
2 merge requests!110Integration test,!90Develop
Pipeline #66429 passed with warnings
......@@ -10,16 +10,6 @@ resource "docker_container" "gosdn" {
external = 5555
}
networks_advanced {
name = docker_network.danet.name
ipv4_address = "fd::605d"
}
networks_advanced {
name = docker_network.danet_legacy.name
ipv4_address = "172.100.100.10"
}
env = [
"GOSDN_DEBUG=",
]
......@@ -41,16 +31,6 @@ resource "docker_container" "ceos" {
name = "bridge"
}
networks_advanced {
name = docker_network.danet.name
ipv4_address = "fd::ce05"
}
networks_advanced {
name = docker_network.danet_legacy.name
ipv4_address = "172.100.100.20"
}
command = ["/sbin/init",
"systemd.setenv=INTFTYPE=eth",
"systemd.setenv=ETBA=4",
......
resource "docker_network" "danet_legacy" {
name = "danet_legacy"
ipam_config {
subnet = "172.100.100.0/24"
}
}
resource "docker_network" "danet" {
name = "danet"
ipv6 = true
ipam_config {
subnet = "fd::/64"
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment