Hi guys I think PlantUML is amazing and your doing great work! I've just been playing around with the nwdiag and have found that the code below shows network 'internal' and 'c' overlapping in the generated picture. In this instances I would expect network 'c' to be on its own line and web01 to be connected to all networks.
nwdiag {
network dmz {
address = "210.x.x.x/24"
web01 [address = "210.x.x.1"];
web02 [address = "210.x.x.2"];
}
network internal {
address = "172.x.x.x/24";
web01 [address = "172.x.x.1"];
}
network c {
address = "172.x.x.x/25";
web01 [address = "172.x.x.1"];
db01;
app01;
}
}