-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MB-SMF] SBI: MBS Session Create Service operation #12
Comments
MBS Session Service API needs Using 3GPP TS 29.537 - Release 17.2.0 |
To send the MBS Session Create request from the AF, to create a broadcast MBS Session with a previously allocated TMGI: # MBS Session Create request: /nmbsmf-mbssession/v1/mbs-sessions
curl --http2-prior-knowledge \
--request POST \
--header "Content-Type: application/json" \
--data '{ "mbsSession": { "mbsSessionId": { "tmgi": { "mbsServiceId": "XXXXXX", "plmnId": { "mcc":"001", "mnc":"01" } } }, "serviceType":"BROADCAST" } }' \
smf.open5gs.org:80/nmbsmf-mbssession/v1/mbs-sessions Filling To send the MBS Session Create request from the AF, to create a multicast MBS Session without a preallocated TMGI: # MBS Session Create request with TMGI allocate: /nmbsmf-mbssession/v1/mbs-sessions
curl --http2-prior-knowledge \
--request POST \
--header "Content-Type: application/json" \
--data '{ "mbsSession": { "tmgiAllocReq": true, "serviceType":"MULTICAST" } }' \
smf.open5gs.org:80/nmbsmf-mbssession/v1/mbs-sessions |
From For multicast MBS sessions, a source specific IP multicast address can be assigned by external AFs. |
Following 3GPP TS 29.532 - Release 17.4.0
Ch. 5.3.2.2 - MBS Session Create Service operation
Other references:
3GPP TS 29.537 - TS29537_Npcf_MBSPolicyAuthorization.yaml
The text was updated successfully, but these errors were encountered: