Slicing capablities #642
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 17 replies
-
srsRAN provides support for network slicing, see e.g. https://github.com/srsran/srsRAN_Project/blob/main/configs/slicing.yml One thing to pay attention to (at least with Open5GS, not sure with other cores) is that it interprets the SD has an hexadecimal number so, for instance, you have to set At the moment, we don't support RAN slicing. |
Beta Was this translation helpful? Give feedback.
-
Hi everyone! I follow the steps @pgawlowicz mentioned but I have this issue in the open5gs when the gbn tries to connect:
Below I show you the configuration I have: I want to have 2 UEs, each of them in one slice. Maybe the problem is because open5gs-5gc.yml is using add_users.py and this script is only configured with one UE? I dont know... (without slicing the network works perfectly, srsrRAN Proyect lastest version). If you could help me!! Thanks!! |
Beta Was this translation helpful? Give feedback.
-
Hi, @rcbarke was right!! The add_users.py needs to be configured to!! Also, @pgawlowicz, I wanted to ask you about being able to see that each user is in a slice. As you shown, you can see that each UE has connected to a different slice using the Wireshark captures in NGAP like: ![]() I've followed these instructions abou DTL_USER and NAS-5GS (https://docs.srsran.com/projects/project/en/latest/user_manuals/source/outputs.html#e2ap-pcap) to decode and view the messages in wireshark, but in the gnb_ngap.pcap I get is the following: can you tell me how tomdo it @pgawlowicz? Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hi @pgawlowicz, thank you for the clear explanation on how to create a slice. I have a few questions: if I want to create a slice, is there a faster way to do it without having to restart Open5GS and srsRAN? If everything is already running, can I create a slice? |
Beta Was this translation helpful? Give feedback.
srsRAN provides support for network slicing, see e.g. https://github.com/srsran/srsRAN_Project/blob/main/configs/slicing.yml
You have to configure the UE to transmit on one slice, configure the core to support slices and also tell the core which slice is UE will be using.
One thing to pay attention to (at least with Open5GS, not sure with other cores) is that it interprets the SD has an hexadecimal number so, for instance, you have to set
SD: 42
in the Open5GS configuration andSD: 0x42
in the srsRAN configuration.At the moment, we don't support RAN slicing.