Commit 99643acf authored by Raphael Defosseux's avatar Raphael Defosseux

Original Author: Nick Hedberg <nhedberg@nvidia.com>

Updates to default config for 24.1 and current best performance
parent e120f54f
...@@ -77,6 +77,7 @@ RUN apt-get update && \ ...@@ -77,6 +77,7 @@ RUN apt-get update && \
iproute2 \ iproute2 \
iputils-ping \ iputils-ping \
gdb \ gdb \
moreutils \
libusb-1.0-0 && \ libusb-1.0-0 && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
......
...@@ -4,6 +4,7 @@ Asn1_verbosity = "none"; ...@@ -4,6 +4,7 @@ Asn1_verbosity = "none";
sa = 1; sa = 1;
nfapi = "AERIAL"; nfapi = "AERIAL";
pdcp-drop = 1;
gNBs = gNBs =
( (
...@@ -25,15 +26,16 @@ gNBs = ...@@ -25,15 +26,16 @@ gNBs =
); );
}); });
nr_cellid = 12345678L; nr_cellid = 51L;
////////// Physical parameters: ////////// Physical parameters:
pdsch_AntennaPorts_XP = 2; pdsch_AntennaPorts_XP = 2;
#pdsch_AntennaPorts_N1 = 2; #Uncomment for 4 layers
pusch_AntennaPorts = 2; pusch_AntennaPorts = 2;
do_CSIRS = 1; do_CSIRS = 1;
do_SRS = 0; do_SRS = 0;
min_rxtxtime = 2; min_rxtxtime = 3;
pdcch_ConfigSIB1 = ( pdcch_ConfigSIB1 = (
{ {
...@@ -46,7 +48,7 @@ gNBs = ...@@ -46,7 +48,7 @@ gNBs =
{ {
#spCellConfigCommon #spCellConfigCommon
physCellId = 0; physCellId = 51;
# downlinkConfigCommon # downlinkConfigCommon
#frequencyInfoDL #frequencyInfoDL
...@@ -168,13 +170,13 @@ gNBs = ...@@ -168,13 +170,13 @@ gNBs =
# pattern1 # pattern1
# dl_UL_TransmissionPeriodicity # dl_UL_TransmissionPeriodicity
# 0=ms0p5, 1=ms0p625, 2=ms1, 3=ms1p25, 4=ms2, 5=ms2p5, 6=ms5, 7=ms10 # 0=ms0p5, 1=ms0p625, 2=ms1, 3=ms1p25, 4=ms2, 5=ms2p5, 6=ms5, 7=ms10
dl_UL_TransmissionPeriodicity = 5; #6; dl_UL_TransmissionPeriodicity = 6;
nrofDownlinkSlots = 3; #7; nrofDownlinkSlots = 6;
nrofDownlinkSymbols = 6; nrofDownlinkSymbols = 10;
nrofUplinkSlots = 1; #2; nrofUplinkSlots = 3;
nrofUplinkSymbols = 0; nrofUplinkSymbols = 0;
ssPBCH_BlockPower = -25; ssPBCH_BlockPower = -34;
} }
); );
...@@ -190,13 +192,20 @@ gNBs = ...@@ -190,13 +192,20 @@ gNBs =
////////// AMF parameters: ////////// AMF parameters:
amf_ip_address = ({ ipv4 = "192.168.70.132"; }); amf_ip_address = ( { ipv4 = "192.168.70.132";
ipv6 = "192:168:30::17";
active = "yes";
preference = "ipv4";
}
);
NETWORK_INTERFACES : NETWORK_INTERFACES :
{ {
GNB_IPV4_ADDRESS_FOR_NG_AMF = "192.168.70.129"; GNB_INTERFACE_NAME_FOR_NG_AMF = "demo-oai";
GNB_IPV4_ADDRESS_FOR_NGU = "192.168.70.129"; GNB_IPV4_ADDRESS_FOR_NG_AMF = "192.168.70.129/24";
GNB_INTERFACE_NAME_FOR_NGU = "demo-oai";
GNB_IPV4_ADDRESS_FOR_NGU = "192.168.70.129/24";
GNB_PORT_FOR_S1U = 2152; # Spec 2152 GNB_PORT_FOR_S1U = 2152; # Spec 2152
}; };
...@@ -206,6 +215,7 @@ gNBs = ...@@ -206,6 +215,7 @@ gNBs =
MACRLCs = ( MACRLCs = (
{ {
num_cc = 1; num_cc = 1;
local_s_if_name = "lo:";
remote_s_address = "127.0.0.1"; // pnf addr [!] remote_s_address = "127.0.0.1"; // pnf addr [!]
local_s_address = "127.0.0.2"; // vnf addr local_s_address = "127.0.0.2"; // vnf addr
local_s_portc = 50001; // vnf p5 port local_s_portc = 50001; // vnf p5 port
...@@ -214,11 +224,12 @@ MACRLCs = ( ...@@ -214,11 +224,12 @@ MACRLCs = (
remote_s_portd = 50010; // pnf p7 port [!] remote_s_portd = 50010; // pnf p7 port [!]
tr_s_preference = "aerial"; tr_s_preference = "aerial";
tr_n_preference = "local_RRC"; tr_n_preference = "local_RRC";
pusch_TargetSNRx10 = 200; #150; pusch_FailureThres = 10;
pucch_TargetSNRx10 = 200; #200; pusch_TargetSNRx10 = 280; # 150;
pucch_TargetSNRx10 = 100; #200;
ulsch_max_frame_inactivity = 10; ulsch_max_frame_inactivity = 10;
dl_max_mcs = 28; dl_max_mcs = 25;
ul_max_mcs = 28; ul_max_mcs = 25;
} }
); );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment