Files
homelab/sample-nodes-data.json

161 lines
3.0 KiB
JSON
Raw Permalink Normal View History

2026-05-08 11:38:56 -04:00
{
"nodes": [
{
"name": "Router",
"ip": "192.168.1.1",
"type": "Network"
},
{
"name": "Firewall",
"ip": "192.168.1.254",
"type": "Network"
},
{
"name": "NAS",
"ip": "192.168.1.10",
"type": "Storage"
},
{
"name": "Media Server",
"ip": "192.168.1.20",
"type": "Media"
},
{
"name": "Home Automation Hub",
"ip": "192.168.1.30",
"type": "Automation"
},
{
"name": "Laptop",
"ip": "192.168.1.100",
"type": "Client"
},
{
"name": "Phone",
"ip": "192.168.1.101",
"type": "Client"
},
{
"name": "Tablet",
"ip": "192.168.1.102",
"type": "Client"
},
{
"name": "Desktop",
"ip": "192.168.1.103",
"type": "Client"
},
{
"name": "Smart TV",
"ip": "192.168.1.104",
"type": "Media"
},
{
"name": "IoT Device",
"ip": "192.168.1.150",
"type": "IoT"
}
],
"connections": [
{
"source": "Router",
"target": "Firewall",
"description": "Internal"
},
{
"source": "Firewall",
"target": "NAS",
"description": "Internal"
},
{
"source": "Firewall",
"target": "Media Server",
"description": "Internal"
},
{
"source": "Firewall",
"target": "Home Automation Hub",
"description": "Internal"
},
{
"source": "Firewall",
"target": "Internet",
"description": "External"
},
{
"source": "NAS",
"target": "Media Server",
"description": "Storage"
},
{
"source": "NAS",
"target": "Home Automation Hub",
"description": "Storage"
},
{
"source": "Media Server",
"target": "Smart TV",
"description": "Streaming"
},
{
"source": "Media Server",
"target": "Laptop",
"description": "Network"
},
{
"source": "Media Server",
"target": "Desktop",
"description": "Network"
},
{
"source": "Home Automation Hub",
"target": "IoT Device",
"description": "Control"
},
{
"source": "Home Automation Hub",
"target": "Laptop",
"description": "Control"
},
{
"source": "Home Automation Hub",
"target": "Phone",
"description": "Control"
},
{
"source": "Home Automation Hub",
"target": "Tablet",
"description": "Control"
},
{
"source": "Laptop",
"target": "Firewall",
"description": "Network"
},
{
"source": "Phone",
"target": "Firewall",
"description": "Network"
},
{
"source": "Tablet",
"target": "Firewall",
"description": "Network"
},
{
"source": "Desktop",
"target": "Firewall",
"description": "Network"
},
{
"source": "Smart TV",
"target": "Firewall",
"description": "Network"
},
{
"source": "IoT Device",
"target": "Firewall",
"description": "Network"
}
]
}