Update srsRAN to tag release_23_10

This commit is contained in:
herlesupreeth
2023-10-21 13:14:58 +02:00
parent 957b1fb9a7
commit 85878f7ebb
3 changed files with 19 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ RUN add-apt-repository ppa:ettusresearch/uhd && \
# Get srsRAN_Project, compile and install
RUN git clone https://github.com/srsran/srsRAN_Project.git && \
cd srsRAN_Project && \
cd srsRAN_Project && git checkout tags/release_23_10 && \
mkdir build && cd build && \
cmake ../ -DENABLE_EXPORT=ON -DENABLE_ZEROMQ=ON && make -j`nproc` && make install && \
ldconfig

View File

@@ -30,3 +30,11 @@ pcap:
mac_filename: /mnt/srsran/gnb_mac.pcap # Path where the MAC PCAP is stored.
ngap_enable: false # Set to true to enable NGAP PCAPs.
ngap_filename: /mnt/srsran/gnb_ngap.pcap # Path where the NGAP PCAP is stored.
f1ap_enable: false # Set to true to enable F1AP PCAPs.
f1ap_filename: /mnt/srsran/gnb_f1ap.pcap # Path where the F1AP PCAP is stored.
e1ap_enable: false # Set to true to enable E1AP PCAPs.
e1ap_filename: /mnt/srsran/gnb_e1ap.pcap # Path where the E1AP PCAP is stored.
e2ap_enable: false # Set to true to enable E2AP PCAPs.
e2ap_filename: /mnt/srsran/gnb_e2ap.pcap # Path where the E2AP PCAP is stored.
gtpu_enable: false # Set to true to enable GTP-U PCAPs.
gtpu_filename: /mnt/srsran/gnb_gtpu.pcap # Path where the GTP-U PCAP is stored.

View File

@@ -21,6 +21,8 @@ cell_cfg:
dedicated:
ss2_type: common # Search Space type, has to be set to common
dci_format_0_1_and_1_1: false # Set correct DCI format (fallback)
prach:
prach_config_index: 1
log:
filename: /mnt/srsran/gnb.log # Path of the log file.
@@ -31,3 +33,11 @@ pcap:
mac_filename: /mnt/srsran/gnb_mac.pcap # Path where the MAC PCAP is stored.
ngap_enable: false # Set to true to enable NGAP PCAPs.
ngap_filename: /mnt/srsran/gnb_ngap.pcap # Path where the NGAP PCAP is stored.
f1ap_enable: false # Set to true to enable F1AP PCAPs.
f1ap_filename: /mnt/srsran/gnb_f1ap.pcap # Path where the F1AP PCAP is stored.
e1ap_enable: false # Set to true to enable E1AP PCAPs.
e1ap_filename: /mnt/srsran/gnb_e1ap.pcap # Path where the E1AP PCAP is stored.
e2ap_enable: false # Set to true to enable E2AP PCAPs.
e2ap_filename: /mnt/srsran/gnb_e2ap.pcap # Path where the E2AP PCAP is stored.
gtpu_enable: false # Set to true to enable GTP-U PCAPs.
gtpu_filename: /mnt/srsran/gnb_gtpu.pcap # Path where the GTP-U PCAP is stored.