mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Update the shared neighbour config used by the F1 rfsim pipeline to enable CU-provided SIB2 and neighbour-derived SIB3/SIB4 inputs. In `ci-scripts/conf_files/gnb-cu.sa.band78.106prb.conf` - Add `cu_sibs = (2, 3, 4) In `ci-scripts/conf_files/neighbour-config.conf`: - Add a complete `sib2_config` block - Add `frequency_list` / `frequency_config` for inter-frequency SIB4 fields - Extend both neighbour entries with per-cell offsets
78 lines
1.9 KiB
Plaintext
78 lines
1.9 KiB
Plaintext
# SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
|
|
Active_gNBs = ( "cu-rfsim");
|
|
# Asn1_verbosity, choice in: none, info, annoying
|
|
Asn1_verbosity = "none";
|
|
|
|
gNBs =
|
|
(
|
|
{
|
|
////////// Identification parameters:
|
|
gNB_ID = 0xe00;
|
|
|
|
# cell_type = "CELL_MACRO_GNB";
|
|
|
|
gNB_name = "cu-rfsim";
|
|
|
|
// Tracking area code, 0x0000 and 0xfffe are reserved values
|
|
tracking_area_code = 1;
|
|
plmn_list = ({ mcc = 208; mnc = 99; mnc_length = 2; snssaiList = ({ sst = 1, sd = 0xffffff }) });
|
|
cu_sibs = ( 2, 3, 4 );
|
|
@include "neighbour-config.conf"
|
|
|
|
nr_cellid = 12345678L;
|
|
|
|
tr_s_preference = "f1";
|
|
|
|
local_s_address = "192.168.71.150";
|
|
remote_s_address = "192.168.71.171";
|
|
local_s_portd = 2153;
|
|
remote_s_portd = 2153;
|
|
|
|
# ------- SCTP definitions
|
|
SCTP :
|
|
{
|
|
# Number of streams to use in input/output
|
|
SCTP_INSTREAMS = 2;
|
|
SCTP_OUTSTREAMS = 2;
|
|
};
|
|
|
|
|
|
////////// AMF parameters:
|
|
amf_ip_address = ({ ipv4 = "192.168.71.132"; });
|
|
|
|
NETWORK_INTERFACES :
|
|
{
|
|
|
|
GNB_IPV4_ADDRESS_FOR_NG_AMF = "192.168.71.150";
|
|
GNB_IPV4_ADDRESS_FOR_NGU = "192.168.71.150";
|
|
GNB_PORT_FOR_S1U = 2152; # Spec 2152
|
|
};
|
|
}
|
|
);
|
|
|
|
security = {
|
|
# preferred ciphering algorithms
|
|
# the first one of the list that an UE supports in chosen
|
|
# valid values: nea0, nea1, nea2, nea3
|
|
ciphering_algorithms = ( "nea0" );
|
|
|
|
# preferred integrity algorithms
|
|
# the first one of the list that an UE supports in chosen
|
|
# valid values: nia0, nia1, nia2, nia3
|
|
integrity_algorithms = ( "nia2", "nia0" );
|
|
|
|
# setting 'drb_ciphering' to "no" disables ciphering for DRBs, no matter
|
|
# what 'ciphering_algorithms' configures; same thing for 'drb_integrity'
|
|
drb_ciphering = "yes";
|
|
drb_integrity = "no";
|
|
};
|
|
|
|
log_config : {
|
|
global_log_level = "info";
|
|
pdcp_log_level = "info";
|
|
rrc_log_level = "info";
|
|
f1ap_log_level = "info";
|
|
ngap_log_level = "info";
|
|
};
|