mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-upf.git
synced 2025-11-03 13:33:31 +00:00
Add section 'Configure Primary Links' with detailed explanation of the GTP and netfilter setup. Related: SYS#5599 Change-Id: I2378d4856b28e81dae2a85e20aaf2999768de4d9
32 lines
831 B
Plaintext
32 lines
831 B
Plaintext
digraph G {
|
|
rankdir=LR
|
|
sgsn [label="SGSN"]
|
|
|
|
subgraph cluster_sgw {
|
|
style=invisible
|
|
sgwc [label="SGW-C"]
|
|
sgwu [label="OsmoUPF as SGW-U\ntunnel proxy\n*netfilter* kernel module",style=bold,shape=box]
|
|
sgwc -> sgwu [label="PFCP",constraint=false]
|
|
}
|
|
|
|
subgraph cluster_pgw {
|
|
style=invisible
|
|
pgwc [label="PGW-C"]
|
|
pgwu [label="OsmoUPF as PGW-U\ntunnel proxy\n*netfilter* kernel module",style=bold,shape=box]
|
|
pgwc -> pgwu [label="PFCP",constraint=false]
|
|
}
|
|
|
|
subgraph cluster_tdf {
|
|
style=invisible
|
|
tdfc [label="TDF-C"]
|
|
tdfu [label="OsmoUPF as TDF-U\ntunnel en-/decaps\n*GTP* kernel module",style=bold,shape=box]
|
|
tdfc -> tdfu [label="PFCP",constraint=false]
|
|
}
|
|
|
|
pdn [label="PDN\n'the internet'"]
|
|
|
|
sgsn -> sgwc -> pgwc -> tdfc [label="GTP-C"]
|
|
sgsn -> sgwu -> pgwu -> tdfu [label="GTP-U",dir=both]
|
|
tdfu -> pdn [label="IP",dir=both]
|
|
}
|