Skip to content

Commit

Permalink
PR update rectangle colors (#83)
Browse files Browse the repository at this point in the history
Co-authored-by: Emmanuel Lavinal <elavinal@users.noreply.github.com>
  • Loading branch information
louisroyer and elavinal committed Dec 12, 2024
1 parent b11d011 commit 06f8e65
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions doc/nextmn-lite.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,32 @@
## PDU Session Establishment procedure

```mermaid
%%{init: { 'sequence': {'noteAlign': 'left'} }}%%
%%{init: { 'sequence': {'noteAlign': 'left'} , 'themeVariables':{'actorLineColor': '#333333', 'signalColor': '#000000', 'signalTextColor':'#000000'} }}%%
sequenceDiagram
actor User
participant UE
participant gNB
participant CP
participant UPF
rect blue
rect LightBlue
note over CP,UPF: PFCP Association
CP->>+UPF: PFCP Association Setup Request
UPF->>+CP: PFCP Association Setup Response
end
User->>+UE: POST cli/radio/peer(gNBControl)
note over User,UE: {<br>"gnb": "http://gnb1.example.org/",<br>}
rect purple
rect Orange
User->>+UE: POST cli/radio/peer(gNBControl)
note over User,UE: {<br>"gnb": "http://gnb1.example.org/",<br>}
end
rect Plum
note over UE, gNB: RadioSim Link Establishment
UE->>+gNB: Radio Peer(dl endpoint)
gNB->>+UE: Radio Peer(ul endpoint)
end
User->>+UE: POST cli/ps/establish(gNBControl, dnn)
note over User,UE: {<br>"gnb": "http://gnb1.example.org/",<br>"dnn": "srv6",<br>}
rect green
rect Orange
User->>+UE: POST cli/ps/establish(gNBControl, dnn)
note over User,UE: {<br>"gnb": "http://gnb1.example.org/",<br>"dnn": "srv6",<br>}
end
rect LightGreen
note over UE,UPF: PDU Session Establishment
UE->>+gNB: PDU Session Estab. Req.(UEControl)
gNB->>+CP: PDU Session Estab. Req.(UEControl, gNBControl)
Expand All @@ -41,7 +45,7 @@ UE<<-->>+UPF: PDUs

## N2 Handover Scenario 1 (preserve SRGW, preserve Anchor)
```mermaid
%%{init: { 'sequence': {'noteAlign': 'left'} }}%%
%%{init: { 'sequence': {'noteAlign': 'left'} , 'themeVariables':{'actorLineColor': '#333333', 'signalColor': '#000000', 'signalTextColor':'#000000'} }}%%
sequenceDiagram
actor User
participant UE
Expand All @@ -53,7 +57,7 @@ participant SRGW
participant Anchor
note over UE, gNB2: gNB1 initiate N2 Handover
rect green
rect LightGreen
gNB1->>+CP: HandoverRequired
CP->>+SRv6Ctrl: PFCP Session Establishment(uplinkPDR, uplinkFAR)
SRv6Ctrl->>+SRGW: create UL rule (match on new FTEID, same path)
Expand All @@ -73,7 +77,7 @@ end

## N2 Handover Scenario 2 (SRGW update, preserve Anchor)
```mermaid
%%{init: { 'sequence': {'noteAlign': 'left'} }}%%
%%{init: { 'sequence': {'noteAlign': 'left'} , 'themeVariables':{'actorLineColor': '#333333', 'signalColor': '#000000', 'signalTextColor':'#000000'} }}%%
sequenceDiagram
actor User
participant UE
Expand All @@ -86,7 +90,7 @@ participant SRGW2
participant Anchor
note over UE, gNB2: gNB1 initiate N2 Handover
rect green
rect LightGreen
gNB1->>+CP: HandoverRequired
CP->>+SRv6Ctrl: PFCP Session Establishment(uplinkPDR, uplinkFAR)
SRv6Ctrl->>+SRGW2: create UL rule (match on new FTEID, path to Anchor)
Expand All @@ -106,7 +110,7 @@ end

## N2 Handover Scenario 3 (preserve SRGW, Anchor update)
```mermaid
%%{init: { 'sequence': {'noteAlign': 'left'} }}%%
%%{init: { 'sequence': {'noteAlign': 'left'} , 'themeVariables':{'actorLineColor': '#333333', 'signalColor': '#000000', 'signalTextColor':'#000000'} }}%%
sequenceDiagram
actor User
participant UE
Expand All @@ -119,7 +123,7 @@ participant Anchor1
participant Anchor2
note over UE, gNB2: gNB1 initiate N2 Handover
rect green
rect LightGreen
gNB1->>+CP: HandoverRequired
CP->>+SRv6Ctrl: PFCP Session Establishment(uplinkPDR, uplinkFAR)
SRv6Ctrl->>+SRGW: create UL rule (match on new FTEID, path to Anchor2, desactivated)
Expand All @@ -140,7 +144,7 @@ end

## N2 Handover Scenario 4 (SRGW update, Anchor update)
```mermaid
%%{init: { 'sequence': {'noteAlign': 'left'} }}%%
%%{init: { 'sequence': {'noteAlign': 'left'} , 'themeVariables':{'actorLineColor': '#333333', 'signalColor': '#000000', 'signalTextColor':'#000000'} }}%%
sequenceDiagram
actor User
participant UE
Expand All @@ -154,7 +158,7 @@ participant Anchor1
participant Anchor2
note over UE, gNB2: gNB1 initiate N2 Handover
rect green
rect LightGreen
gNB1->>+CP: HandoverRequired
CP->>+SRv6Ctrl: PFCP Session Establishment(uplinkPDR, uplinkFAR)
SRv6Ctrl->>+SRGW2: create UL rule (match on new FTEID, path to Anchor2)
Expand Down

0 comments on commit 06f8e65

Please sign in to comment.