Initial MBS support in the 5GC
This tutorial showcases the current features present in the 5G-MAG MBS implementation. You can check out the video to see more details or follow the write-up tutorial.
Tutorial video
Description
In this tutorial a Broadcast MBS Session will be created in order to send traffic from the AF/AS to a multicast group (SSM) and see the traffic going through the 5G Core and leaving the MB-UPF (LLSSM) in order to reach the gNB.
Note: Currently there is no way to receive the multicast traffic on the gNB, that feature is under development, but while performing the MBS Session setup you can see an MBS related message being sent between the AMF and the gNB through the N2 interface
In order to create a Broadcast MBS Session a TMGI will be used as identifier but an SSM address needs to be specified too. This SSM will be the address that the AF/AS will use to send the multicast traffic to the MB-UPF through the N6mb interface. The LLSSM is the lower layer SSM that the MB-UPF will use in order to reach the gNBs that need to receive the multicast traffic.
Important note: Currently, there is a limit of 20 MBS Sessions per MB-UPF. The range of IP multicast addresses being used for the MB-UPF to forward the multicast traffic to the gNB using the LLSSM is
239.0.0.4-239.0.0.24
. That is why it is recommended to start the range for the SSM on the IP multicast address239.0.0.25
onwards
To start, deploy the internal
Docker Compose deployment and check everything is up and running.
From the AF/AS container execute:
# Execute this command inside the AF/AS container
# MBS Session Create request with TMGI allocate: /nmbsmf-mbssession/v1/mbs-sessions with multicast source
curl --http2-prior-knowledge \
--request POST \
--header "Content-Type: application/json" \
--data '{ "mbsSession": { "ssm": { "sourceIpAddr": { "ipv4Addr": "<af_as_container_ip>" }, "destIpAddr": { "ipv4Addr": "<n6mb_ip_multicast_destination_address>" } },"tmgiAllocReq": true, "serviceType":"BROADCAST" } }' \
smf-mb-smf.5g-mag.org:80/nmbsmf-mbssession/v1/mbs-sessions
Tip: Check AF/AS container IP executing
ip address
from the AF/AS container and use theeth0
interface address as<af_as_container_ip>
This command will create an MBS Session of type BROADCAST
, specifying the SSM address from which the MB-UPF will receive the traffic from the AF/AS. With the parameter tmgiAllocReq
set to true
, the request also tells the MB-SMF to create a TMGI for this MBS Session.
In order for the MB-UPF to receive the traffic being sent to this multicast group (SSM) and then forward it to the LLSSM, we need to execute the following command to configure the MB-UPF:
# Execute this command inside the MB-UPF container
smcroutectl add eth0 <n6mb_ip_multicast_destination_address> ogstun
This command will update the MFC of the MB-UPF to receive the traffic for the multicast group <n6mb_ip_multicast_destination_address>
and forward it internally using the ogstun
interface.
After all of this is configured, the MB-UPF has been configured through PFCP to forward the traffic received to the LLSSM. The first LLSSM created uses the multicast destination address 239.0.0.4
and random C-TEID.
Through the AF/AS with IP address <af_as_container_ip>
you can send an IP packet to the multicast destination <n6mb_ip_multicast_destination_address>
. This causes the MB-UPF to forward the traffic using GTPU to the LLSSM:
# To send traffic from the AF/AS to the MB-UPF
sendip -p ipv4 -is <af_as_container_ip> -id <n6mb_ip_multicast_destination_address> upf-mb-upf.5g-mag.org
You can check the traffic is being forwarded to the LLSSM executing:
$ tcpdump -i br-5g-mag udp port 2152
Note: When the gNB part is done, this traffic will be received by the gNBs configured to listen to the LLSSM and forward it to the UEs using PTM.