Network Diagram - VBychkov-boop/Spring-SYS265-Final-Project GitHub Wiki

We used the PlantUML Editorto setup with our network diagram. It'll be edited over the course of this project to include services and more connections. For now, as of 4/6 , this is the code for the diagram and the diagram itself:

@startuml
nwdiag {
  network WAN {
    address = "10.0.17.x/24"
    ISP_Gateway [address = "10.0.17.1"]
    pfSense_Firewall [address = "10.0.17.50"]
  }

  network LAN {
    address = "172.16.1.x/24"
    pfSense_Firewall [address = "172.16.1.2"]
    DC01_Server2019Core_ADDS_DNS [address = "172.16.1.12"]
    DC02_Server2019Core_ADDS_DNS [address = "172.16.1.13"]
    MGMT_Server2019GUI [address = "172.16.1.14"]
    W01_Windows10 [address = "172.16.1.100"]
    W02_Windows10 [address = "172.16.1.145"]
  }
}
@enduml