-
-
Notifications
You must be signed in to change notification settings - Fork 38
Freifunk Setup im uC3
chris007de edited this page Jan 15, 2015
·
1 revision
Planung/Status fuer das Freifunk Setup im uC3
Graphviz (z.B. http://graphviz-dev.appspot.com/)
digraph G {
vlan [label="FFmuc-VLAN",shape=box,fillcolor="palegreen",style="filled,rounded"];
internet [label="Internet",shape=box,fillcolor="lightblue",style="filled,rounded"];
subgraph cluster_0 {
label = "Hauptraum";
color=lightgrey;
node [style=filled,color=lightgrey];
hr_841_01 [label="TP-Link841",shape=box,fillcolor="burlywood",style="filled,rounded"];
}
subgraph cluster_1 {
label = "Dach";
color=lightgrey;
node [style=filled,color=lightgrey];
d_nanobeam_01 [label="Nanobeam - ungenutzt",shape=ellipse,fillcolor="burlywood",style="filled"];
d_nanobeam_01_poe [label="PoEInjector",shape=rectangle,fillcolor="red",style="filled"];
d_nanobeam_02 [label="Nanobeam - Andznet",shape=ellipse,fillcolor="burlywood",style="filled"];
d_nanobeam_02_poe [label="PoEInjector",shape=rectangle,fillcolor="red",style="filled"];
d_nanobeam_03 [label="Nanobeam - Massmann",shape=ellipse,fillcolor="burlywood",style="filled"];
d_nanobeam_03_poe [label="PoEInjector",shape=rectangle,fillcolor="red",style="filled"];
d_switch [label="Switch",shape=rectangle,fillcolor="none",style="filled"];
d_nanobeam_01->d_nanobeam_01_poe->d_switch;
d_nanobeam_02->d_nanobeam_02_poe->d_switch;
d_nanobeam_03->d_nanobeam_03_poe->d_switch;
}
hr_841_01->vlan;
d_switch->vlan;
vlan -> internet;
}