Network Diagram

IT Infrastructure
Network Management
Welcome to our visual representation of the CloudCore Network, designed to provide a clear overview of our cloud infrastructure’s architecture.
Title Network Diagram
Doc# DOC-ITIN-002
Version 1.0
Date 08-03-2023

Welcome to our visual representation of the CloudCore Network, designed to provide a clear overview of our cloud infrastructure’s architecture. This diagram, crafted in Mermaid markup, details the interconnections between various components essential for maintaining efficient, secure, and scalable cloud operations. In this diagram, you will find:

This network diagram serves as a strategic tool to visualise the relationships and operational pathways within our network. It is an essential reference for understanding how we manage data flows, ensure security, and deliver services efficiently across our cloud infrastructure.

graph TB
    subgraph "Internet"
        ISP1[ISP]
        ISP2[ISP]
    end

    subgraph "CloudCoreNetworks"
        subgraph "PublicSubnet"
            LB[Load Balancer]
            FW[Firewall]
        end

        subgraph "AppSubnet"
            WS[Web Server]
            AP[App Server]
            DB[Database]
        end

        subgraph "ManagementSubnet"
            DC1[Domain Controller]
            DC2[Domain Controller]
        end

        NAT[NAT Device]
        RTR[Router]

        LB -- HTTPS --> FW
        FW -- HTTP --> WS
        WS-- "App Traffic" --> AP
        AP --- DB
        DC1 --- DC2

        ISP1 -->|Internet| NAT
        ISP2 -->|Internet| NAT
        NAT --> RTR
        RTR -- "App Subnet" --> AP
        RTR -- "Mgmt Subnet" --> DC1
        RTR -- "Mgmt Subnet" --> DC2

    end