// Hospital Network Diagram
digraph {
CT [label="CT Scanner" fillcolor=lightpink shape=ellipse style=filled]
MRI [label="MRI Scanner" fillcolor=lightpink shape=ellipse style=filled]
LINAC [label=LINAC fillcolor=lightpink shape=ellipse style=filled]
WLAN [label="WLAN Access Point" fillcolor=lightgreen shape=ellipse
style=filled]
Switch [label="LAN Switch" fillcolor=lightblue shape=rectangle style=filled]
Firewall [label=Firewall fillcolor=lightsalmon shape=rectangle style=filled]
Internet [label=Internet fillcolor=lightyellow shape=ellipse style=filled]
HIS [label="Hospital Information System (HIS)" fillcolor=lightyellow
shape=rectangle style=filled]
PACS [label="PACS Archive" fillcolor=plum shape=cylinder style=filled]
DiagWS [label="Diagnostic Workstation" fillcolor=lightgreen shape=rectangle
style=filled]
WebClients [label="Web Clients" fillcolor=moccasin shape=rectangle
style=filled]
CT -> Switch
MRI -> Switch
LINAC -> Switch
Switch -> Firewall
Firewall -> Internet
Switch -> WLAN
Switch -> HIS
Switch -> PACS
Switch -> DiagWS
Switch -> WebClients
}