Skip to content

Commit

Permalink
Use latest srsRAN gnb config file syntax (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
nachomata authored Dec 13, 2024
1 parent 0ee1be4 commit 623453d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 8 deletions.
17 changes: 13 additions & 4 deletions srsran/gnb.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
amf:
addr: AMF_IP # The address or hostname of the AMF.
bind_addr: SRS_GNB_IP # A local IP that the gNB binds to for traffic from the AMF.
cu_cp:
amf:
addr: AMF_IP # The address or hostname of the AMF.
bind_addr: SRS_GNB_IP # A local IP that the gNB binds to for traffic from the AMF.
supported_tracking_areas: # Sets the list of tracking areas supported by this AMF.
- tac: 1 # Tracking area code (needs to match the core configuration).
plmn_list: # The list of PLMN items supported for this Tracking Area.
- plmn: "PLMN" # PLMN broadcasted by the gNB.
tai_slice_support_list: # The list of TAI slices for this PLMN item.
- sst: 1 # Sets the Slice Service Type.

ru_sdr:
device_driver: uhd # The RF driver name.
Expand Down Expand Up @@ -35,6 +42,8 @@ pcap:
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.
e2ap_cu_cp_filename: /mnt/srsran/cu_cp_e2ap.pcap # Path where E2AP CU-CP PCAP is stored.
e2ap_cu_up_filename: /mnt/srsran/cu_up_e2ap.pcap # Path where E2AP CU-UP PCAP is stored.
e2ap_du_filename: /mnt/srsran/du_e2ap.pcap # Path where E2AP CU PCAP is stored.
n3_enable: false # Set to true to enable N3 PCAPs.
n3_filename: /mnt/srsran/gnb_n3.pcap # Path where the N3 PCAP is stored.
17 changes: 13 additions & 4 deletions srsran/gnb_zmq.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
amf:
addr: AMF_IP # The address or hostname of the AMF.
bind_addr: SRS_GNB_IP # A local IP that the gNB binds to for traffic from the AMF.
cu_cp:
amf:
addr: AMF_IP # The address or hostname of the AMF.
bind_addr: SRS_GNB_IP # A local IP that the gNB binds to for traffic from the AMF.
supported_tracking_areas: # Sets the list of tracking areas supported by this AMF.
- tac: 1 # Tracking area code (needs to match the core configuration).
plmn_list: # The list of PLMN items supported for this Tracking Area.
- plmn: "PLMN" # PLMN broadcasted by the gNB.
tai_slice_support_list: # The list of TAI slices for this PLMN item.
- sst: 1 # Sets the Slice Service Type.

ru_sdr:
device_driver: zmq # The RF driver name.
Expand Down Expand Up @@ -41,6 +48,8 @@ pcap:
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.
e2ap_cu_cp_filename: /mnt/srsran/cu_cp_e2ap.pcap # Path where E2AP CU-CP PCAP is stored.
e2ap_cu_up_filename: /mnt/srsran/cu_up_e2ap.pcap # Path where E2AP CU-UP PCAP is stored.
e2ap_du_filename: /mnt/srsran/du_e2ap.pcap # Path where E2AP CU PCAP is stored.
n3_enable: false # Set to true to enable N3 PCAPs.
n3_filename: /mnt/srsran/gnb_n3.pcap # Path where the N3 PCAP is stored.

0 comments on commit 623453d

Please sign in to comment.