[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-16 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/Makefile
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmoepdg-usermanual-docinfo.xml
A docs/manuals/osmoepdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
11 files changed, 458 insertions(+), 0 deletions(-)

Approvals:
  laforge: Looks good to me, approved
  pespin: Looks good to me, but someone else must approve
  Jenkins Builder: Verified




diff --git a/docs/manuals/Makefile b/docs/manuals/Makefile
new file mode 100644
index 000..36f64b5
--- /dev/null
+++ b/docs/manuals/Makefile
@@ -0,0 +1,13 @@
+# A simplistic Makefile to use without autoconf
+#
+# Install osmo-gsm-manuals or use `export 
OSMO_GSM_MANUALS_DIR=/path/to/osmo-gsm-manuals`
+
+OSMO_GSM_MANUALS_DIR ?= /usr/share/osmo-gsm-manuals/
+srcdir ?= $(realpath .)
+
+ASCIIDOC = osmoepdg-usermanual.adoc
+ASCIIDOC_DEPS = $(srcdir)/chapters/*.adoc $(srcdir)/*.dot $(srcdir)/*.msc
+include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.asciidoc.inc
+
+OSMO_REPOSITORY = osmo-epdg
+include $(OSMO_GSM_MANUALS_DIR)/build/Makefile.common.inc
diff --git a/docs/manuals/chapters/osmo-epdg.adoc 
b/docs/manuals/chapters/osmo-epdg.adoc
new file mode 100644
index 000..9318fcd
--- /dev/null
+++ b/docs/manuals/chapters/osmo-epdg.adoc
@@ -0,0 +1,96 @@
+[[osmoepdg]]
+== osmo-epdg/erlang
+
+The core component of the osmo-epdg is the osmo-epdg/erlang daemon.
+It holds the state of the UE and communicates with the relevant core 
components.
+
+[[fig-osmo-epdg-erlang]]
+.osmo-epdg/erlang structure
+[graphviz]
+
+include::{srcdir}/osmo-epdg-erlang.dot[]
+
+
+=== Debian packages
+
+For Debian based distributions, Osmocom provides package repositories:
+
+- https://osmocom.org/projects/cellular-infrastructure/wiki/Latest_Builds
+- https://osmocom.org/projects/cellular-infrastructure/wiki/Nightly_Builds
+
+The osmo-epdg package contains a systemd.service file and a default example 
configuration.
+
+=== Configuration
+
+The osmo-epdg/erlang is configured via Erlang configuration 
(https://www.erlang.org/doc/man/config.html).
+When using the osmo-epdg debian package, the default location for the 
configuration is
+*/etc/osmocom/osmo-epdg.config*.
+
+= CEIA: Connection for strongSwan
+
+The CEIA is the internal protocol between strongSwan and osmo-epdg/erlang.
+See [CEIA]
+
+[format="csv",options="header"]
+|===
+key, default, description
+gsup_local_ip, 127.0.0.1, bind IP of the GSUP server (TCP). strongSwan 
connects to this IP.
+gsup_local_port, 4222, bind TCP server port
+|===
+
+= SWx (diameter)
+
+SWx (<<3gpp-ts-29-273>>): Interface between AAA and HSS.
+The AAA will retrieve authentication, authorize the UE and
+update the location (AAA, PGW address) in the HSS.
+
+See Erlang diameter specific behaviour on 
https://www.erlang.org/doc/man/diameter.html
+
+[format="csv",options="header"]
+|===
+key,default,description
+dia_swx_remote_ip, 127.0.0.1, Remote IP of the HSS
+dia_swx_remote_port, 3868, SCTP port of the HSS
+dia_swx_proto, sctp, Protocol. sctp or tcp
+dia_swx_connect_timer, 3, Watchdog Connect timer in ms. RFC 
6733.dia_swx_watchdog_timer, 3, Watchdog TwInit. RFC 3539.
+dia_swx_watchdog_config, "[ok, suspect]", See 
https://www.erlang.org/doc/man/diameter.html
+dia_swx_transmit_timer, 1, SWx Transmit Timeout (ms)
+dia_swx_vendor_id, 0, Diameter Vendor Id
+dia_swx_origin_host, epdg.localdomain, Diameter Origin Host
+dia_swx_origin_realm, localdomain, Diameter Origin Realm
+|===
+
+= S6b (diameter)
+
+S6b (<<3gpp-ts-29-273>>): Interface between AAA and PGW.
+Authorize the GTP session of the ePDG.
+
+See Erlang diameter specific behaviour on 
https://www.erlang.org/doc/man/diameter.html
+
+[format="csv",options="header"]
+|===
+key,default,description
+dia_s6b_local_ip, 127.0.0.10, local bind IP
+dia_s6b_local_port, 3868, local bind Port
+dia_s6b_proto, sctp, Protocol. sctp or tcp
+dia_s6b_connect_timer, 3, Watchdog Connect timer in ms. RFC 6733.
+dia_s6b_watchdog_timer, 3, Watchdog TwInit. RFC 3539.
+dia_s6b_watchdog_config, "[ok, suspect]", See 
https://www.erlang.org/doc/man/diameter.html
+dia_s6b_vendor_id, 0, Diameter Vendor Id
+dia_s6b_origin_host, aaa.localdomain, Diameter Origin Host
+dia_s6b_origin_realm, localdomain, Diameter Origin Realm
+|===
+
+= S2b (GTPv2)
+
+S2b (<<3gpp-ts-29-273>>): Interface between ePDG and PGW.
+GTP control plane for the UE traffic.
+
+[format="csv",options="header"]
+|===
+key,default,description
+gtpc_local_ip, 

[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-16 Thread laforge
Attention is currently required from: lynxis lazus, osmith.

laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 8: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 8
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: osmith 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Thu, 16 May 2024 22:00:01 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-16 Thread pespin
Attention is currently required from: lynxis lazus, osmith.

pespin has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 8: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 8
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: osmith 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Thu, 16 May 2024 14:49:24 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-16 Thread lynxis lazus
Attention is currently required from: osmith, pespin.

lynxis lazus has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 8:

(1 comment)

File docs/manuals/chapters/strongswan.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/34babd38_f70417ef
PS5, Line 45: In the default configuration this will use TCP port 4222.
> TCP/IPA
not sure what I should change.



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 8
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: osmith 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Thu, 16 May 2024 13:38:48 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: pespin 
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-16 Thread lynxis lazus
Attention is currently required from: osmith, pespin.

Hello Jenkins Builder, osmith, pespin,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email

to look at the new patch set (#8).

The following approvals got outdated and were removed:
Code-Review+1 by osmith, Code-Review+1 by pespin, Verified+1 by Jenkins Builder


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/Makefile
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmoepdg-usermanual-docinfo.xml
A docs/manuals/osmoepdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
11 files changed, 458 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/8
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 8
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: osmith 
Gerrit-Attention: pespin 
Gerrit-MessageType: newpatchset


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-16 Thread lynxis lazus
Attention is currently required from: osmith.

lynxis lazus has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 7:

(6 comments)

File docs/manuals/chapters/epcrequirements.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/2757e551_71786711
PS7, Line 1: [[epcrequirements]]
> This file does not get included, and gets deleted in the next commit?
will move the file to the next commit.


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/c487a890_34b828ee
PS7, Line 15: THe
> The
Done


File docs/manuals/chapters/osmo-epdg.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/cb3ae825_10328dcd
PS7, Line 16: distribution osmocom
> distributions, Osmocom
Done


File docs/manuals/chapters/strongswan.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/8b6d41fa_28dbff27
PS7, Line 9:
> at
Done


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/92c04790_85d64e86
PS7, Line 32: )
> ).
Done


File docs/manuals/osmoepdg-usermanual-docinfo.xml:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/39a08cb8_043b971a
PS7, Line 4: 2014
> 2024? :)
Done



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 7
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: osmith 
Gerrit-Comment-Date: Thu, 16 May 2024 13:36:30 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: osmith 
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-15 Thread osmith
Attention is currently required from: lynxis lazus.

osmith has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 7:

(1 comment)

File docs/manuals/chapters/epcrequirements.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/c619ddaa_f410f95b
PS7, Line 1: [[epcrequirements]]
This file does not get included, and gets deleted in the next commit?



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 7
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Wed, 15 May 2024 07:36:56 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-15 Thread osmith
Attention is currently required from: lynxis lazus.

osmith has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 7: Code-Review+1

(6 comments)

Patchset:

PS7:
Very nice manual!


File docs/manuals/chapters/epcrequirements.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/ae7c94e6_941fb722
PS7, Line 15: THe
The


File docs/manuals/chapters/osmo-epdg.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/e15d00ea_67ccb87a
PS7, Line 16: distribution osmocom
distributions, Osmocom


File docs/manuals/chapters/strongswan.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/0cb554bd_6cab21c6
PS7, Line 9:
at


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/ca83c707_c10be7a9
PS7, Line 32: )
).


File docs/manuals/osmoepdg-usermanual-docinfo.xml:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/9007eb7b_4ab52043
PS7, Line 4: 2014
2024? :)



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 7
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Wed, 15 May 2024 07:34:32 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread pespin
Attention is currently required from: lynxis lazus.

pespin has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 7: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 7
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin 
Gerrit-CC: daniel 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Tue, 14 May 2024 15:37:43 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread lynxis lazus
Attention is currently required from: pespin.

lynxis lazus has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 6:

(3 comments)

File docs/manuals/chapters/overview.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/cd89d5a1_86733d64
PS5, Line 42: control UE sessions, pass authentication, authorisation and 
configuration.
> See < for further information.
Done


File docs/manuals/chapters/strongswan.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/265d294f_ef194fd3
PS5, Line 16: Further strongSwan will handle EAP traffic.
> This needs to be rephrased ("Further").
Done


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/8148779e_575803fe
PS5, Line 25: archive high performance on the user-plane.
> achieve
Done



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 6
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Tue, 14 May 2024 15:36:30 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: pespin 
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread lynxis lazus
Attention is currently required from: lynxis lazus.

Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email

to look at the new patch set (#7).

The following approvals got outdated and were removed:
Verified+1 by Jenkins Builder


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/Makefile
A docs/manuals/chapters/epcrequirements.adoc
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmoepdg-usermanual-docinfo.xml
A docs/manuals/osmoepdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
12 files changed, 476 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/7
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 7
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-MessageType: newpatchset


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread pespin
Attention is currently required from: lynxis lazus.

pespin has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 5:

(4 comments)

File docs/manuals/chapters/overview.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/d97e3e99_a1cbc431
PS5, Line 42: control UE sessions, pass authentication, authorisation and 
configuration.
See < for further information.


File docs/manuals/chapters/strongswan.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/2d9384aa_804636d5
PS5, Line 16: Further strongSwan will handle EAP traffic.
This needs to be rephrased ("Further").


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/cfd83462_00731956
PS5, Line 25: archive high performance on the user-plane.
achieve


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/c7316410_782e5d5a
PS5, Line 45: In the default configuration this will use TCP port 4222.
TCP/IPA



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 5
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Tue, 14 May 2024 15:32:23 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread lynxis lazus
Attention is currently required from: lynxis lazus, pespin.

Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email

to look at the new patch set (#6).

The following approvals got outdated and were removed:
Verified+1 by Jenkins Builder


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/Makefile
A docs/manuals/chapters/epcrequirements.adoc
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmoepdg-usermanual-docinfo.xml
A docs/manuals/osmoepdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
12 files changed, 474 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/6
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 6
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-MessageType: newpatchset


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread lynxis lazus
Attention is currently required from: lynxis lazus, pespin.

Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email

to look at the new patch set (#5).

The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/Makefile
A docs/manuals/chapters/epcrequirements.adoc
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmoepdg-usermanual-docinfo.xml
A docs/manuals/osmoepdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
12 files changed, 474 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/5
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 5
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-MessageType: newpatchset


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread Jenkins Builder
Attention is currently required from: pespin.

Jenkins Builder has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 4:

(1 comment)

File docs/manuals/chapters/strongswan.adoc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16102):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/896b4bd7_9485f28e
PS4, Line 24: In the default configuration of osmo-epdg, strongSwan will use 
Linux kernel to handle ESP to
trailing whitespace



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 4
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Tue, 14 May 2024 15:20:11 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread lynxis lazus
Attention is currently required from: pespin.

Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email

to look at the new patch set (#4).

The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/Makefile
A docs/manuals/chapters/epcrequirements.adoc
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmoepdg-usermanual-docinfo.xml
A docs/manuals/osmoepdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
12 files changed, 474 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/4
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 4
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: pespin 
Gerrit-MessageType: newpatchset


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread lynxis lazus
Attention is currently required from: pespin.

lynxis lazus has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 3:

(10 comments)

File docs/manuals/chapters/epcrequirements.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/90bd2154_1b342bb3
PS2, Line 14: An UE will request attributes via IKEv2 which are translated into 
additional PCO in GTP on the S2b
> Additional PCO (APCO)
Done


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/77c0b703_c97ba6bf
PS2, Line 15: reference point. THe PGW should support additional PCO via S2b.
> Additional PCO
Done


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/0b9a16c4_b573c2a1
PS2, Line 16: open5gs supports additional PCO by 2.7.1.
> Additional PCO since v2.7. […]
Done


File docs/manuals/chapters/osmo-epdg.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/cdf4ab09_287c5747
PS2, Line 16: For Debian based distribution osmocom provides packages 
repositories:
> package repositories
Done


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/e8fac7ed_31f16339
PS2, Line 29: = CEIA: Connection for strongSwan
> I recall this was usually CEAI? whatever it's meaning is :)
Done


File docs/manuals/chapters/overview.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/b9824bd1_a68e200b
PS2, Line 27: Further the osmo-epdg is using strongSwan to handle the 
communication towards UEs.
> "Furthermore, osmo-epdg speaks with strongswan to handle communication... […]
Done


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/a946366e_3462302b
PS2, Line 34: * Linux generic policy routing and firewall (user plane)
> I think we are missing mention to the gtp kernel module somewhere in here.
Done


File docs/manuals/chapters/strongswan.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/9c930e31_2b8fb620
PS2, Line 8: strongSwan has been extended to support this role in the osmo-epdg.
> this means it was forked, so information on where to find it should be 
> provided here.
Done


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/646e93d9_f249d602
PS2, Line 44: Further it allows the osmo-epdg/erlang to:
> Moreover? I don't think you can use Further this way; I may be wrong though.
Done


File docs/manuals/ue-connects.msc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/c30d2532_904a994e
PS2, Line 8:
> > trailing whitespace […]
Done



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: pespin 
Gerrit-Comment-Date: Tue, 14 May 2024 14:49:18 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: pespin 
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread Jenkins Builder
Attention is currently required from: lynxis lazus.

Jenkins Builder has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 3:

(1 comment)

File docs/manuals/chapters/strongswan.adoc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16101):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/5865aad6_a960cae8
PS3, Line 24: In the default configuration of osmo-epdg, strongSwan will use 
Linux kernel to handle ESP to
trailing whitespace



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Tue, 14 May 2024 14:44:42 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-14 Thread lynxis lazus
Attention is currently required from: lynxis lazus.

Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email

to look at the new patch set (#3).

The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/chapters/epcrequirements.adoc
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmo-epdg-usermanual-docinfo.xml
A docs/manuals/osmo-epdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
11 files changed, 461 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/3
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-MessageType: newpatchset


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-13 Thread pespin
Attention is currently required from: lynxis lazus.

pespin has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 2:

(10 comments)

File docs/manuals/chapters/epcrequirements.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/f775bb18_e8b7bbf0
PS2, Line 14: An UE will request attributes via IKEv2 which are translated into 
additional PCO in GTP on the S2b
Additional PCO (APCO)


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/65893856_906a002a
PS2, Line 15: reference point. THe PGW should support additional PCO via S2b.
Additional PCO


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/b585c145_0cd234a0
PS2, Line 16: open5gs supports additional PCO by 2.7.1.
Additional PCO since v2.7.1


File docs/manuals/chapters/osmo-epdg.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/e520aea9_1a2a4c19
PS2, Line 16: For Debian based distribution osmocom provides packages 
repositories:
package repositories


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/84e29a8d_b09c7912
PS2, Line 29: = CEIA: Connection for strongSwan
I recall this was usually CEAI? whatever it's meaning is :)


File docs/manuals/chapters/overview.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/7755c924_64b9d17a
PS2, Line 27: Further the osmo-epdg is using strongSwan to handle the 
communication towards UEs.
"Furthermore, osmo-epdg speaks with strongswan to handle communication..." ?


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/5a7256c5_d1652f79
PS2, Line 34: * Linux generic policy routing and firewall (user plane)
I think we are missing mention to the gtp kernel module somewhere in here.


File docs/manuals/chapters/strongswan.adoc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/db65ba9c_64c8e356
PS2, Line 8: strongSwan has been extended to support this role in the osmo-epdg.
this means it was forked, so information on where to find it should be provided 
here.


https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/18f3aa1e_7ccf945f
PS2, Line 44: Further it allows the osmo-epdg/erlang to:
Moreover? I don't think you can use Further this way; I may be wrong though.


File docs/manuals/ue-connects.msc:

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/f7bc7b8d_b3574f72
PS2, Line 8:  
> trailing whitespace

Please fix.



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 2
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Mon, 13 May 2024 09:15:42 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-11 Thread Jenkins Builder
Attention is currently required from: lynxis lazus.

Jenkins Builder has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 2:

(13 comments)

File docs/manuals/chapters/osmo-epdg.adoc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/2d324c9d_8138e4ff
PS2, Line 48: key,default,description
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/c1f9da01_9340149d
PS2, Line 69: key,default,description
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/d6207441_45cc36cc
PS2, Line 88: key,default,description
trailing whitespace


File docs/manuals/ue-connects.msc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/80f20227_351549a8
PS2, Line 8:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/2f79d31d_3ae91e8f
PS2, Line 14:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/e51d77f4_f2050a1c
PS2, Line 20:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/7cd1ec41_60d758ac
PS2, Line 22:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/c147b8cf_a7a89ffb
PS2, Line 25:
trailing whitespace


File docs/manuals/ue-connects2.msc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/1429b417_873ac754
PS2, Line 7:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/683162e5_baae663a
PS2, Line 13:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/9948f5f7_6619249a
PS2, Line 17:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/c2acf9ad_1cae12b6
PS2, Line 20: 
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16053):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/044c7a51_7900c475
PS2, Line 26:
trailing whitespace



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 2
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-Comment-Date: Sat, 11 May 2024 18:25:09 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-11 Thread lynxis lazus
Attention is currently required from: lynxis lazus.

Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email

to look at the new patch set (#2).

The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/chapters/epcrequirements.adoc
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmo-epdg-usermanual-docinfo.xml
A docs/manuals/osmo-epdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
11 files changed, 453 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/2
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 2
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: daniel 
Gerrit-CC: pespin 
Gerrit-Attention: lynxis lazus 
Gerrit-MessageType: newpatchset


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-11 Thread lynxis lazus
lynxis lazus has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 1:

(1 comment)

Patchset:

PS1:
I don't know what is the best way to add build scripts.
Should I create a configure in the docs directory?



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus 
Gerrit-CC: Jenkins Builder
Gerrit-Comment-Date: Sat, 11 May 2024 17:29:38 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-11 Thread Jenkins Builder
Jenkins Builder has posted comments on this change. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )

Change subject: docs: add basic manual of the osmo-epdg
..


Patch Set 1:

(13 comments)

File docs/manuals/chapters/osmo-epdg.adoc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/fcf4d292_a5ed4faf
PS1, Line 48: key,default,description
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/e4411747_d83e9029
PS1, Line 69: key,default,description
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/dc8c8f23_7d9897f3
PS1, Line 88: key,default,description
trailing whitespace


File docs/manuals/ue-connects.msc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/8ff69cc0_f4b06ef3
PS1, Line 8:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/97b7bd63_4d55069d
PS1, Line 14:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/1a2bf5d8_b514cd32
PS1, Line 20:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/ef87a115_25d2474c
PS1, Line 22:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/352d40e9_14a90b8a
PS1, Line 25:
trailing whitespace


File docs/manuals/ue-connects2.msc:

Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/93c071cb_c62296d1
PS1, Line 7:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/9ebf41f0_94786f77 
PS1, Line 13:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/4a74bdab_22269efe
PS1, Line 17:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/61e2763e_9649f3c1
PS1, Line 20:
trailing whitespace


Robot Comment from checkpatch (run ID jenkins-gerrit-lint-16052):
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783/comment/70b9e32c_6bab37be
PS1, Line 26:
trailing whitespace



--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: erlang/osmo-epdg
Gerrit-Branch: master
Gerrit-Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
Gerrit-Change-Number: 36783
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus 
Gerrit-CC: Jenkins Builder
Gerrit-Comment-Date: Sat, 11 May 2024 17:29:10 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


[L] Change in ...osmo-epdg[master]: docs: add basic manual of the osmo-epdg

2024-05-11 Thread lynxis lazus
lynxis lazus has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/36783?usp=email )


Change subject: docs: add basic manual of the osmo-epdg
..

docs: add basic manual of the osmo-epdg

Change-Id: I596b6a351b7356aefa7e69f95521bc4012b9264b
---
A docs/manuals/chapters/epcrequirements.adoc
A docs/manuals/chapters/osmo-epdg.adoc
A docs/manuals/chapters/overview.adoc
A docs/manuals/chapters/strongswan.adoc
A docs/manuals/osmo-epdg-erlang.dot
A docs/manuals/osmo-epdg-overview.dot
A docs/manuals/osmo-epdg-usermanual-docinfo.xml
A docs/manuals/osmo-epdg-usermanual.adoc
A docs/manuals/strongswan-ue-connection.msc
A docs/manuals/ue-connects.msc
A docs/manuals/ue-connects2.msc
11 files changed, 453 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/erlang/osmo-epdg 
refs/changes/83/36783/1

diff --git a/docs/manuals/chapters/epcrequirements.adoc 
b/docs/manuals/chapters/epcrequirements.adoc
new file mode 100644
index 000..036b1ff
--- /dev/null
+++ b/docs/manuals/chapters/epcrequirements.adoc
@@ -0,0 +1,18 @@
+[[epcrequirements]]
+== EPC requirements
+
+The osmo-epdg was tested and developed against open5gs (version 
2.7.0.83.290df).
+
+=== HSS
+
+When a UE connects it requests an APN via SWu. By default the UE will request
+the APN "ims". The subscriber entry must allow connections to the requested 
APN to succeed.
+
+=== PGW
+
+The osmo-epdg/erlang expects the PGW to support and use S2b and S6b.
+A UE will request attributes via IKEv2 which are translated into additional 
PCO in GTP on the S2b
+reference point. THe PGW should support additional PCO via S2b.
+open5gs supports additional PCO by 2.7.1.
+
+osmo-epdg only supports S2b over GTP.
diff --git a/docs/manuals/chapters/osmo-epdg.adoc 
b/docs/manuals/chapters/osmo-epdg.adoc
new file mode 100644
index 000..36c7ee9
--- /dev/null
+++ b/docs/manuals/chapters/osmo-epdg.adoc
@@ -0,0 +1,93 @@
+[[osmoepdg]]
+== osmo-epdg/erlang
+
+The core component of the osmo-epdg is the osmo-epdg/erlang daemon.
+It holds the state of the UE and communicates with the relevant core 
components.
+
+[[fig-osmo-epdg-erlang]]
+.osmo-epdg/erlang structure
+[graphviz]
+
+include::{srcdir}/osmo-epdg-erlang.dot[]
+
+
+=== Debian packages
+
+For Debian based distribution osmocom provides packages repositories:
+
+- https://osmocom.org/projects/cellular-infrastructure/wiki/Latest_Builds
+- https://osmocom.org/projects/cellular-infrastructure/wiki/Nightly_Builds
+
+The osmo-epdg package contains a systemd.service file and a default example 
configuration.
+
+=== Configuration
+
+The osmo-epdg/erlang is configured via Erlang configuration 
(https://www.erlang.org/doc/man/config.html).
+When using the osmo-epdg debian package, the default location for the 
configuration is
+*/etc/osmocom/osmo-epdg.config*.
+
+= CEIA: Connection for strongSwan
+
+[format="csv",options="header"]
+|===
+key, default, description
+gsup_local_ip, 127.0.0.1, bind IP of the GSUP server (TCP). strongSwan 
connects to this IP.
+gsup_local_port, 4222, bind TCP server port
+|===
+
+= SWx (diameter)
+
+SWx (<<3gpp-ts-29-273>>): Interface between AAA and HSS.
+The AAA will retrieve authentication, authorize the UE and
+update the location (AAA, PGW address) in the HSS.
+
+See Erlang diameter specific behaviour on 
https://www.erlang.org/doc/man/diameter.html
+
+[format="csv",options="header"]
+|===
+key,default,description
+dia_swx_remote_ip, 127.0.0.1, Remote IP of the HSS
+dia_swx_remote_port, 3868, SCTP port of the HSS
+dia_swx_proto, sctp, Protocol. sctp or tcp
+dia_swx_connect_timer, 3, Watchdog Connect timer in ms. RFC 
6733.dia_swx_watchdog_timer, 3, Watchdog TwInit. RFC 3539.
+dia_swx_watchdog_config, "[ok, suspect]", See 
https://www.erlang.org/doc/man/diameter.html
+dia_swx_transmit_timer, 1, SWx Transmit Timeout (ms)
+dia_swx_vendor_id, 0, Diameter Vendor Id
+dia_swx_origin_host, epdg.localdomain, Diameter Origin Host
+dia_swx_origin_realm, localdomain, Diameter Origin Realm
+|===
+
+= S6b (diameter)
+
+S6b (<<3gpp-ts-29-273>>): Interface between AAA and PGW.
+Authorize the GTP session of the ePDG.
+
+See Erlang diameter specific behaviour on 
https://www.erlang.org/doc/man/diameter.html
+
+[format="csv",options="header"]
+|===
+key,default,description
+dia_s6b_local_ip, 127.0.0.10, local bind IP
+dia_s6b_local_port, 3868, local bind Port
+dia_s6b_proto, sctp, Protocol. sctp or tcp
+dia_s6b_connect_timer, 3, Watchdog Connect timer in ms. RFC 6733.
+dia_s6b_watchdog_timer, 3, Watchdog TwInit. RFC 3539.
+dia_s6b_watchdog_config, "[ok, suspect]", See 
https://www.erlang.org/doc/man/diameter.html
+dia_s6b_vendor_id, 0, Diameter Vendor Id
+dia_s6b_origin_host, aaa.localdomain, Diameter Origin Host
+dia_s6b_origin_realm, localdomain, Diameter Origin Realm
+|===
+
+= S2b (GTPv2)
+
+S2b (<<3gpp-ts-29-273>>): Interface between ePDG and PGW.
+GTP