Skip to content

Instantly share code, notes, and snippets.

@NeftaliYagua
Created May 17, 2024 16:59
Show Gist options
  • Save NeftaliYagua/a4fbde9cc96574393478c4795d8882c5 to your computer and use it in GitHub Desktop.
Save NeftaliYagua/a4fbde9cc96574393478c4795d8882c5 to your computer and use it in GitHub Desktop.
@startuml
title "Diagrama de Red"
nwdiag {
network Frontend {
address = "x.x.x.0/32";
internal;
backend [address = ".x"];
portal [address = ".x"];
// define group
group IIS {
description = "IIS Server";
internal;
backend;
portal;
}
}
network DMZ {
address = "127.0.1.0/30";
webservices [address = ".1"];
internal [address = ".1"];
tomcat [address = ".1"];
backend [address = ".1"];
}
group {
description = Backend
color = "#FFAAAA";
webservices [address = ".1"];
tomcat;
oracle;
}
network Internal {
address = "127.0.0.0/30";
webservices;
tomcat [address = ".1"];
oracle [address = ".1"];
}
}
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment