blob: 9375fc9de2ac786044403514add0cbb2c04ae3be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
graph G {
rankdir=LR;
MS0 [label="MS",shape=box]
MS1 [label="MS",shape=box]
MS2 [label="MS",shape=box]
MS0--PHY [label="Um"]
MS1--PHY [label="Um"]
MS2--PHY [label="Um"]
subgraph cluster_0 {
label = "sysmoBTS"
OsmoBTS
OsmoPCU [style="dashed"]
PHY -- OsmoBTS [label="shmem msgq"]
PHY -- OsmoPCU [label="shmem msgq"]
OsmoPCU -- OsmoBTS [label="pcu_sock"]
{ rank=same; OsmoBTS OsmoPCU }
}
subgraph cluster_1 {
label = "Linux PC"
OsmoNITB
OsmoSGSN [style="dashed"]
OsmoBTS -- OsmoNITB [label="Abis/IP"]
OsmoPCU -- OsmoSGSN [label="Gb/IP"]
{ rank=same; OsmoNITB OsmoSGSN }
}
}
|