mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Add Ethernet PDU session support and make PDU session request configurable
This MR adds support for Ethernet PDU sessions, and makes PDU sessions
configurable: per-PDU session ID, type (IPv4/IPv4v6/IPv6/Ethernet [1]),
DNN, NSSAI.
Concretely, it adds a new configuration file section pdu_sessions below
uicc0 that looks like this if everything is specified (default values
are shown):
uicc0:
[...]
pdu_sessions:
- id: 1
type: "IPv4"
nssai_sst: 1
nssai_sd: 0xffffff
dnn: "oai"
It is possible to list multiple PDU sessions (add new line - id: 2 to
request a second PDU session). It is backwards-compatible to the current
PDU session configuration (uicc0.dnn/nssai_sst/etc), the idea being that
either legacy or new configuration could be used, but (1) if
pdu_sessions exist, it will overwrite the legacy configuration, and (2)
multiple PDU sessions, and type, can only be configured using the new
config. The old parameters --extra-pdu-id and --default-pdu-id are not
accepted anymore. Documentation has been added to the UE tutorial.
It is possible to test an Ethernet PDU session [1]. It is possible to
test the PDU session inside the UE by verifying it has an TAP interface
oaitap_ue1, and ARPing the data network (arping has been added to
oai-nr-ue container for that purpose):
ip addr add 192.168.72.140/26 dev oaitap_ue1 # same subnet as data network!
ip link set dev oaitap_ue1 up
arping -c 20 -I oaitap_ue1 192.168.72.135 # will send ARP request in Ethernet frame to get IP address of data network
[1] See description MR !3769 for more information. On the UE side, only
the type has to be changed to "Ethernet".
129 lines
4.7 KiB
Docker
129 lines
4.7 KiB
Docker
#/*
|
|
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
|
|
# * contributor license agreements. See the NOTICE file distributed with
|
|
# * this work for additional information regarding copyright ownership.
|
|
# * The OpenAirInterface Software Alliance licenses this file to You under
|
|
# * the OAI Public License, Version 1.1 (the "License"); you may not use this file
|
|
# * except in compliance with the License.
|
|
# * You may obtain a copy of the License at
|
|
# *
|
|
# * http://www.openairinterface.org/?page_id=698
|
|
# *
|
|
# * Unless required by applicable law or agreed to in writing, software
|
|
# * distributed under the License is distributed on an "AS IS" BASIS,
|
|
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# * See the License for the specific language governing permissions and
|
|
# * limitations under the License.
|
|
# *-------------------------------------------------------------------------------
|
|
# * For more information about the OpenAirInterface (OAI) Software Alliance:
|
|
# * contact@openairinterface.org
|
|
# */
|
|
#---------------------------------------------------------------------
|
|
#
|
|
# Dockerfile for the Open-Air-Interface BUILD service
|
|
# Valid for Ubuntu 24.04
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
FROM ran-base:latest AS nr-ue-base
|
|
|
|
FROM ran-build:latest AS nr-ue-build
|
|
|
|
|
|
#start from scratch for target executable
|
|
FROM ubuntu:noble AS oai-nr-ue
|
|
ARG BUILD_OPTION
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV TZ=Europe/Paris
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade --yes && \
|
|
apt-get install --yes \
|
|
arping \
|
|
software-properties-common \
|
|
procps \
|
|
libsctp1 \
|
|
libboost-chrono1.83.0 \
|
|
libboost-date-time1.83.0 \
|
|
libboost-filesystem1.83.0 \
|
|
libboost-regex1.83.0 \
|
|
libboost-serialization1.83.0 \
|
|
libboost-thread1.83.0 \
|
|
libboost-system1.83.0 \
|
|
libboost-program-options1.83.0 \
|
|
tzdata \
|
|
liblapacke \
|
|
libblas3 \
|
|
libconfig9 \
|
|
openssl \
|
|
net-tools \
|
|
gdb \
|
|
python3 \
|
|
python3-six \
|
|
python3-requests \
|
|
libusb-1.0-0 \
|
|
iputils-ping \
|
|
iproute2 \
|
|
iperf3 \
|
|
iperf \
|
|
libyaml-cpp-dev \
|
|
libnanomsg5 && \
|
|
# if the --sanitize option was used to build, additional packages are required
|
|
/bin/bash -c 'if [[ "$BUILD_OPTION" = "--sanitize" ]]; then DEBIAN_FRONTEND=noninteractive apt-get install --yes \
|
|
libasan8 \
|
|
libubsan1; fi' && \
|
|
apt-get clean -y && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /opt/oai-nr-ue/bin
|
|
COPY --from=nr-ue-build \
|
|
/oai-ran/cmake_targets/ran_build/build/nr-uesoftmodem \
|
|
./
|
|
|
|
COPY ./docker/scripts/nr_ue_entrypoint.sh ./entrypoint.sh
|
|
WORKDIR /opt/oai-nr-ue/etc
|
|
|
|
COPY --from=nr-ue-build \
|
|
/oai-ran/cmake_targets/ran_build/build/liboai_eth_transpro.so \
|
|
/oai-ran/cmake_targets/ran_build/build/librfsimulator.so \
|
|
/oai-ran/cmake_targets/ran_build/build/liboai_usrpdevif.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libcoding.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libparams_libconfig.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libdfts.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libldpc*.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv_ciUE.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv_5Gue.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libparams_yaml.so \
|
|
/oai-ran/cmake_targets/ran_build/build/libvrtsim.so \
|
|
/usr/local/lib/
|
|
|
|
# Now we are copying from builder-image the UHD files.
|
|
COPY --from=nr-ue-base /usr/local/bin/uhd_find_devices /usr/local/bin
|
|
COPY --from=nr-ue-base /usr/local/lib/libuhd.so.4.8.0 /usr/local/lib
|
|
COPY --from=nr-ue-base /usr/local/lib/uhd/utils/uhd_images_downloader.py /opt/oai-nr-ue/bin
|
|
|
|
RUN /bin/bash -c "ln -s /usr/local/lib/liboai_usrpdevif.so /usr/local/lib/liboai_device.so" && \
|
|
ldconfig && \
|
|
echo "---- ldd on nr-uesoftmodem ----" && \
|
|
ldd /opt/oai-nr-ue/bin/nr-uesoftmodem && \
|
|
echo "---- ldd on shared libraries ----" && \
|
|
ldd /usr/local/lib/liboai_eth_transpro.so \
|
|
/usr/local/lib/librfsimulator.so \
|
|
/usr/local/lib/liboai_usrpdevif.so \
|
|
/usr/local/lib/libcoding.so \
|
|
/usr/local/lib/libparams_libconfig.so \
|
|
/usr/local/lib/libdfts.so \
|
|
/usr/local/lib/libldpc*.so \
|
|
/usr/local/lib/libtelnetsrv.so \
|
|
/usr/local/lib/libtelnetsrv_ciUE.so \
|
|
/usr/local/lib/libtelnetsrv_5Gue.so \
|
|
/usr/local/lib/libuhd.so.4.8.0
|
|
|
|
WORKDIR /opt/oai-nr-ue
|
|
|
|
COPY --from=nr-ue-base /usr/local/bin/yq /usr/local/bin/yq
|
|
COPY --from=nr-ue-base /tini /tini
|
|
CMD ["/opt/oai-nr-ue/bin/nr-uesoftmodem"]
|
|
ENTRYPOINT ["/tini", "-v", "--", "/opt/oai-nr-ue/bin/entrypoint.sh"]
|