Commit d789ed4e authored by Joanne Hugé's avatar Joanne Hugé

ue: update configs

parent 284757df
/* UE simulator configuration file version 2021-02-26
* Copyright (C) 2015-2021 Amarisoft
*/
#define TDD 1 // Values: 0 (FDD), 1(TDD)
#define CELL_BANDWIDTH 20 // Values: 1.4 (1.4MHz), 3 (3MHz), 5 (5MHz), 10 (10MHz), 15 (15MHz), 20 (20MHz)
#define N_ANTENNA_DL 2 // Values: 1 (SISO), 2 (MIMO 2x2), 4 (MIMO 4x4)
#define N_ANTENNA_UL 2 // Values: 1, 2
#define UE_COUNT 1 // number of simulated UEs
{
// log_options: "all.level=debug,all.max_size=32",
log_options: "all.level=error,all.max_size=0,nas.level=debug,nas.max_size=1,rrc.level=debug,rrc.max_size=1",
log_filename: "/tmp/ue0.log",
/* Enable remote API and Web interface */
com_addr: "0.0.0.0:9002",
#if !defined(N_CELL)
#define N_CELL 1
#endif
#if N_ANTENNA_DL <= 2
#define N_CHAN N_CELL
#else
#define N_CHAN 2*N_CELL
#endif
rf_driver: {
name: "sdr",
/* list of devices. 'dev0' is always the master. */
#if N_CHAN == 1
args: "dev0=/dev/sdr0",
#elif N_CHAN == 2
args: "dev0=/dev/sdr0,dev1=/dev/sdr1",
#elif N_CHAN == 3
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2",
#elif N_CHAN == 4
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3",
#elif N_CHAN == 6
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3,dev4=/dev/sdr4,dev5=/dev/sdr5",
#else
args: "",
#endif
/* synchronisation source: internal, gps, external (default = internal) */
// sync: "gps",
rx_antenna:"rx", // force to use the RX connector in TDD as RX antenna
},
tx_gain: 49.0, /* TX gain (in dB) */
rx_gain: 50.0, /* RX gain (in dB) */
/* Each cell group must define cells of same type (lte, catm, nbiot or nr)
* Cells of same type can be spread accross multiple groups
*/
cell_groups: [{
/* If true, allow the simulation of several UEs at the same time and
allow dynamic UE creation from remote API */
multi_ue: true,
cells: [
{
bandwidth: CELL_BANDWIDTH,
#if TDD == 1
dl_earfcn: 38050, /* 2600 MHz (band 38) */
//dl_earfcn: 38350, /* 1890 MHz (band 39) */
//dl_earfcn: 40620, /* 2593 MHz (band 41) */
//dl_earfcn: 42590, /* 3500 MHz (band 42) */
//dl_earfcn: 44590, /* 3700 MHz (band 43) */
#else
dl_earfcn: 3350, /* DL center frequency: 2680 MHz (Band 7) */
#endif
n_antenna_dl: N_ANTENNA_DL,
n_antenna_ul: N_ANTENNA_UL,
/* must be provided if multi_ue = true */
global_timing_advance: -1, // -1: use the timing advance from the first received RAR
}
],
/* If case your system have a high SNR and you are running high number of
* UEs, enable this option to optimize PDCCH decoding and save CPU
*/
pdcch_decode_opt: false,
pdcch_decode_opt_threshold: 0.1,
}],
ue_list: [
{
"imsi": "001010123456789",
"K": "00112233445566778899aabbccddeeff",
"imeisv": "8682430000000101",
/* UE capabilities */
as_release: 13,
ue_category: 12,
forced_cqi: 15,
forced_ri: N_ANTENNA_DL,
ue_count: UE_COUNT,
/* If enabled, will try to use external SIM card using libpcsclite */
//external_sim: true,
/* Enable it to create a TUN interface for each UE PDN */
tun_setup_script: "ue-ifup",
apn: "internet",
}
],
}
/* UE simulator configuration file version 2021-02-26
* Copyright (C) 2015-2021 Amarisoft
*/
#define TDD 1 // Values: 0 (FDD), 1(TDD)
#define CELL_BANDWIDTH 20 // Values: 1.4 (1.4MHz), 3 (3MHz), 5 (5MHz), 10 (10MHz), 15 (15MHz), 20 (20MHz)
#define N_ANTENNA_DL 2 // Values: 1 (SISO), 2 (MIMO 2x2), 4 (MIMO 4x4)
#define N_ANTENNA_UL 2 // Values: 1, 2
#define UE_COUNT 1 // number of simulated UEs
{
// log_options: "all.level=debug,all.max_size=32",
log_options: "all.level=error,all.max_size=0,nas.level=debug,nas.max_size=1,rrc.level=debug,rrc.max_size=1",
log_filename: "/tmp/ue0.log",
/* Enable remote API and Web interface */
com_addr: "0.0.0.0:9002",
#if !defined(N_CELL)
#define N_CELL 1
#endif
#if N_ANTENNA_DL <= 2
#define N_CHAN N_CELL
#else
#define N_CHAN 2*N_CELL
#endif
rf_driver: {
name: "sdr",
/* list of devices. 'dev0' is always the master. */
#if N_CHAN == 1
args: "dev0=/dev/sdr0",
#elif N_CHAN == 2
args: "dev0=/dev/sdr0,dev1=/dev/sdr1",
#elif N_CHAN == 3
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2",
#elif N_CHAN == 4
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3",
#elif N_CHAN == 6
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3,dev4=/dev/sdr4,dev5=/dev/sdr5",
#else
args: "",
#endif
/* synchronisation source: internal, gps, external (default = internal) */
// sync: "gps",
rx_antenna:"rx", // force to use the RX connector in TDD as RX antenna
},
tx_gain: 49.0, /* TX gain (in dB) */
rx_gain: 50.0, /* RX gain (in dB) */
/* Each cell group must define cells of same type (lte, catm, nbiot or nr)
* Cells of same type can be spread accross multiple groups
*/
cell_groups: [{
/* If true, allow the simulation of several UEs at the same time and
allow dynamic UE creation from remote API */
multi_ue: true,
cells: [
{
bandwidth: CELL_BANDWIDTH,
#if TDD == 1
//dl_earfcn: 38050, /* 2600 MHz (band 38) */
dl_earfcn: 38350, /* 1890 MHz (band 39) */
//dl_earfcn: 40620, /* 2593 MHz (band 41) */
//dl_earfcn: 42590, /* 3500 MHz (band 42) */
//dl_earfcn: 44590, /* 3700 MHz (band 43) */
#else
dl_earfcn: 3350, /* DL center frequency: 2680 MHz (Band 7) */
#endif
n_antenna_dl: N_ANTENNA_DL,
n_antenna_ul: N_ANTENNA_UL,
/* must be provided if multi_ue = true */
global_timing_advance: -1, // -1: use the timing advance from the first received RAR
}
],
/* If case your system have a high SNR and you are running high number of
* UEs, enable this option to optimize PDCCH decoding and save CPU
*/
pdcch_decode_opt: false,
pdcch_decode_opt_threshold: 0.1,
}],
ue_list: [
{
"imsi": "001010123456789",
"K": "00112233445566778899aabbccddeeff",
"imeisv": "8682430000000101",
/* UE capabilities */
as_release: 13,
ue_category: 12,
forced_cqi: 15,
forced_ri: N_ANTENNA_DL,
ue_count: UE_COUNT,
/* If enabled, will try to use external SIM card using libpcsclite */
//external_sim: true,
/* Enable it to create a TUN interface for each UE PDN */
tun_setup_script: "ue-ifup",
apn: "internet",
}
],
}
/* UE simulator configuration file version 2021-02-26
* Copyright (C) 2015-2021 Amarisoft
*/
#define TDD 1 // Values: 0 (FDD), 1(TDD)
#define CELL_BANDWIDTH 20 // Values: 1.4 (1.4MHz), 3 (3MHz), 5 (5MHz), 10 (10MHz), 15 (15MHz), 20 (20MHz)
#define N_ANTENNA_DL 2 // Values: 1 (SISO), 2 (MIMO 2x2), 4 (MIMO 4x4)
#define N_ANTENNA_UL 2 // Values: 1, 2
#define UE_COUNT 1 // number of simulated UEs
{
// log_options: "all.level=debug,all.max_size=32",
log_options: "all.level=error,all.max_size=0,nas.level=debug,nas.max_size=1,rrc.level=debug,rrc.max_size=1",
log_filename: "/tmp/ue0.log",
/* Enable remote API and Web interface */
com_addr: "0.0.0.0:9002",
#if !defined(N_CELL)
#define N_CELL 1
#endif
#if N_ANTENNA_DL <= 2
#define N_CHAN N_CELL
#else
#define N_CHAN 2*N_CELL
#endif
rf_driver: {
name: "sdr",
/* list of devices. 'dev0' is always the master. */
#if N_CHAN == 1
args: "dev0=/dev/sdr0",
#elif N_CHAN == 2
args: "dev0=/dev/sdr0,dev1=/dev/sdr1",
#elif N_CHAN == 3
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2",
#elif N_CHAN == 4
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3",
#elif N_CHAN == 6
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3,dev4=/dev/sdr4,dev5=/dev/sdr5",
#else
args: "",
#endif
/* synchronisation source: internal, gps, external (default = internal) */
// sync: "gps",
rx_antenna:"rx", // force to use the RX connector in TDD as RX antenna
},
tx_gain: 49.0, /* TX gain (in dB) */
rx_gain: 50.0, /* RX gain (in dB) */
/* Each cell group must define cells of same type (lte, catm, nbiot or nr)
* Cells of same type can be spread accross multiple groups
*/
cell_groups: [{
/* If true, allow the simulation of several UEs at the same time and
allow dynamic UE creation from remote API */
multi_ue: true,
cells: [
{
bandwidth: CELL_BANDWIDTH,
#if TDD == 1
//dl_earfcn: 38050, /* 2600 MHz (band 38) */
//dl_earfcn: 38350, /* 1890 MHz (band 39) */
//dl_earfcn: 40620, /* 2593 MHz (band 41) */
dl_earfcn: 42590, /* 3500 MHz (band 42) */
//dl_earfcn: 44590, /* 3700 MHz (band 43) */
#else
dl_earfcn: 3350, /* DL center frequency: 2680 MHz (Band 7) */
#endif
n_antenna_dl: N_ANTENNA_DL,
n_antenna_ul: N_ANTENNA_UL,
/* must be provided if multi_ue = true */
global_timing_advance: -1, // -1: use the timing advance from the first received RAR
}
],
/* If case your system have a high SNR and you are running high number of
* UEs, enable this option to optimize PDCCH decoding and save CPU
*/
pdcch_decode_opt: false,
pdcch_decode_opt_threshold: 0.1,
}],
ue_list: [
{
"imsi": "001010123456789",
"K": "00112233445566778899aabbccddeeff",
"imeisv": "8682430000000101",
/* UE capabilities */
as_release: 13,
ue_category: 12,
forced_cqi: 15,
forced_ri: N_ANTENNA_DL,
ue_count: UE_COUNT,
/* If enabled, will try to use external SIM card using libpcsclite */
//external_sim: true,
/* Enable it to create a TUN interface for each UE PDN */
tun_setup_script: "ue-ifup",
apn: "internet",
}
],
}
/* UE simulator configuration file version 2021-02-26
* LTE / 5G Non StandAlone
* Copyright (C) 2019-2021 Amarisoft
*/
{
#define N_ANTENNA_DL 2
#define TDD 1
#define CELL_BANDWIDTH 20
log_options: "all.level=debug,all.max_size=1",
log_filename: "/tmp/ue0.log",
/* Enable remote API and Web interface */
com_addr: "0.0.0.0:9002",
#if !defined(N_CELL)
#define N_CELL 1
#endif
#if N_ANTENNA_DL <= 2
#define N_CHAN N_CELL
#else
#define N_CHAN 2*N_CELL
#endif
rf_driver: {
name: "sdr",
/* list of devices. 'dev0' is always the master. */
#if N_CHAN == 1
args: "dev0=/dev/sdr0",
#elif N_CHAN == 2
args: "dev0=/dev/sdr0,dev1=/dev/sdr1",
#elif N_CHAN == 3
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2",
#elif N_CHAN == 4
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3",
#elif N_CHAN == 6
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3,dev4=/dev/sdr4,dev5=/dev/sdr5",
#else
args: "",
#endif
/* synchronisation source: internal, gps, external (default = internal) */
// sync: "gps",
rx_antenna:"rx", // force to use the RX connector in TDD as RX antenna
},
tx_gain: 49.0, /* TX gain (in dB) */
rx_gain: 50.0, /* RX gain (in dB) */
cell_groups: [{
group_type: "nr",
multi_ue: false,
cells: [{
rf_port: 0,
bandwidth: CELL_BANDWIDTH,
#if TDD == 1
band: 38,
dl_nr_arfcn: 520000, /* 2600 MHz */
ssb_nr_arfcn: 520090, /* 2600 MHz */
ssb_subcarrier_spacing: 30,
#else
band: 7,
dl_nr_arfcn: 536020,
ssb_nr_arfcn: 535930,
ssb_subcarrier_spacing: 30,
#endif
subcarrier_spacing: 15,
n_antenna_dl: N_ANTENNA_DL,
n_antenna_ul: 2,
}],
}],
ue_list: [
{
imsi: "001010123456789",
K: "00112233445566778899aabbccddeeff",
/* UE capabilities */
as_release: 15,
ue_category: "nr",
// nr_forced_cqi: 15,
// nr_forced_ri: 1,
/* Enable it to create a TUN interface for each UE PDN */
tun_setup_script: "ue-ifup",
apn: "internet",
}
],
}
/* UE simulator configuration file version 2021-02-26
* LTE / 5G Non StandAlone
* Copyright (C) 2019-2021 Amarisoft
*/
{
#define N_ANTENNA_DL 2
#define TDD 1
#define CELL_BANDWIDTH 20
log_options: "all.level=debug,all.max_size=1",
log_filename: "/tmp/ue0.log",
/* Enable remote API and Web interface */
com_addr: "0.0.0.0:9002",
#if !defined(N_CELL)
#define N_CELL 1
#endif
#if N_ANTENNA_DL <= 2
#define N_CHAN N_CELL
#else
#define N_CHAN 2*N_CELL
#endif
rf_driver: {
name: "sdr",
/* list of devices. 'dev0' is always the master. */
#if N_CHAN == 1
args: "dev0=/dev/sdr0",
#elif N_CHAN == 2
args: "dev0=/dev/sdr0,dev1=/dev/sdr1",
#elif N_CHAN == 3
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2",
#elif N_CHAN == 4
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3",
#elif N_CHAN == 6
args: "dev0=/dev/sdr0,dev1=/dev/sdr1,dev2=/dev/sdr2,dev3=/dev/sdr3,dev4=/dev/sdr4,dev5=/dev/sdr5",
#else
args: "",
#endif
/* synchronisation source: internal, gps, external (default = internal) */
// sync: "gps",
rx_antenna:"rx", // force to use the RX connector in TDD as RX antenna
},
tx_gain: 49.0, /* TX gain (in dB) */
rx_gain: 50.0, /* RX gain (in dB) */
cell_groups: [{
group_type: "nr",
multi_ue: false,
cells: [{
rf_port: 0,
bandwidth: CELL_BANDWIDTH,
#if TDD == 1
band: 78,
dl_nr_arfcn: 632628,
ssb_nr_arfcn: 632544,
#else
band: 7,
dl_nr_arfcn: 536020,
ssb_nr_arfcn: 535930,
ssb_subcarrier_spacing: 15,
#endif
subcarrier_spacing: 30,
n_antenna_dl: N_ANTENNA_DL,
n_antenna_ul: 2,
}],
}],
ue_list: [
{
imsi: "001010123456789",
K: "00112233445566778899aabbccddeeff",
/* UE capabilities */
as_release: 15,
ue_category: "nr",
// nr_forced_cqi: 15,
// nr_forced_ri: 1,
/* Enable it to create a TUN interface for each UE PDN */
tun_setup_script: "ue-ifup",
apn: "internet",
}
],
}
ue.5G-BANDN78-lower-TOMO.cfg
\ No newline at end of file
simbox/ue.N38.cfg
\ No newline at end of file
ue.default.cfg
\ No newline at end of file
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