Dynamically create/delete PDU Session #116
Unanswered
brianchennn
asked this question in
Q&A
Replies: 1 comment
-
Hi @brianchennn, PacketRusher/internal/common/tools/tools.go Line 155 in 46f1706 ex: add in this file something like: go func() {
for {
time.Sleep(time.Second*5)
ueRx <- procedures.UeTesterMessage{Type: procedures.DestroyPDUSession, Param: 1}
time.Sleep(time.Second*5)
ueRx <- procedures.UeTesterMessage{Type: procedures.NewPDUSession, Param: 1}
}()
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@linouxis9
I wonder if it's possible to create another PDU Session dynamically for UE after executing
sudo ./packetrusher ue
. I want to test if free5gc can handle NGAP/NAS message correctly after AMF planned removal.Beta Was this translation helpful? Give feedback.
All reactions