aboutsummaryrefslogtreecommitdiffstats
path: root/doc/charts/pfcp_and_gtp.dot
diff options
context:
space:
mode:
Diffstat (limited to 'doc/charts/pfcp_and_gtp.dot')
-rw-r--r--doc/charts/pfcp_and_gtp.dot20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/charts/pfcp_and_gtp.dot b/doc/charts/pfcp_and_gtp.dot
new file mode 100644
index 0000000..5c160b3
--- /dev/null
+++ b/doc/charts/pfcp_and_gtp.dot
@@ -0,0 +1,20 @@
+digraph G {
+rankdir=LR
+labelloc=t; label="PFCP and GTP"
+
+SGSN [label="SGSN\n123.44.0.9"]
+SGWC [label="SGW-C\n123.44.05"]
+subgraph cluster_UPF {
+ label="OsmoUPF";
+ SGWU [label="SGW-U\n123.44.0.6"];
+ GTPk [label="kernel GTP\n123.44.0.6"]
+}
+
+SGSN -> SGWC [label="S4\nGTPv2-C"]
+SGWC -> SGWU [label="Sxa\nPFCP\nSession Establishment:\n"]
+SGSN -> GTPk [label="S4\nGTPv1-U",dir=both]
+
+MS [label="MS\n192.168.104.176"]
+MS -> SGSN [dir=both]
+
+}