/* lteue configuration file version 2024-05-07 * Copyright (C) 2015-2024 Amarisoft */ #define N_CELL 2 // should not be changed, used in config.cfg #define TDD 0 // Values: 0 (FDD), 1(TDD) #define CELL_BANDWIDTH 5 // Values: 1.4 (1.4MHz), 3 (3MHz), 5 (5MHz), 10 (10MHz), 15 (15MHz), 20 (20MHz) #define N_ANTENNA_DL 1 // Values: 1 (SISO), 2 (MIMO 2x2), 4 (MIMO 4x4) #define N_ANTENNA_UL 1 // Values: 1 #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: "[::]:9002", include "rf_driver/config.cfg", /* 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: 40620, /* DL center frequency: 2593 MHz (band 41) */ #else dl_earfcn: 3350, /* DL center frequency: 2680 MHz (Band 7) */ #endif n_antenna_dl: N_ANTENNA_DL, n_antenna_ul: N_ANTENNA_UL, global_timing_advance: -1, // -1: use the timing advance from the first received RAR }, { bandwidth: CELL_BANDWIDTH, #if TDD == 1 dl_earfcn: 39150, /* DL center frequency: 2350 MHz (band 40) */ #else dl_earfcn: 1575, /* DL center frequency: 1842.5 MHz (Band 3) */ #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 } ], /* In case your system has a high SNR and you are running high number of * UEs, enable this option to optimize PDCCH decoding and save CPU */ #if UE_COUNT > 10 pdcch_decode_opt: true, pdcch_decode_opt_threshold: 0.1, #endif }], ue_list: [ { "imsi": "001010123456789", "K": "00112233445566778899aabbccddeeff", /* 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", }, ], }