/* UE simulator configuration file version 2022-12-06 * NB-IoT example * Copyright (C) 2016-2022 Amarisoft */ #define CELL_BANDWIDTH 1.4 // Values: 1.4 (1.4MHz) #define NB_NON_ANCHOR 0 // Values: 0 (non anchor carrier disabled), 1 (non anchor carrier enabled) #define NB_TWO_HARQ 0 // Values: 0 (two harq process disabled), 1 (two harq process enabled) #define N_ANTENNA_DL 1 // Values: 1 #define N_ANTENNA_UL 1 // Values: 1 { // log_options: "all.level=debug,all.max_size=1", 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", include "rf_driver/config.cfg", cell_groups: [ { group_type: "nbiot", /* 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, dl_earfcn: 3359, /* 2680.9 MHz (Band 7) */ ul_carrier_freq_offset: 0, /* must set ul_earfcn and ul_carrier_freq_offset if the UL/DL spacing is different from the default one of the selected band */ n_antenna_dl: N_ANTENNA_DL, /* number of downlink antennas */ n_antenna_ul: N_ANTENNA_UL, /* must be provided if multi_ue = true */ global_timing_advance: -1, }] } ], ue_list: [ { /* UE capabilities */ as_release: 15, ue_category: "nb2", /* Category NB1 */ wus_support: true, wus_edrx_min_time_offset: 40, /* 40, 240, 1000, 2000 (default = 40) */ /* if true, enable control plane CIoT optimization. */ cp_ciot_opt: false, /* USIM data */ imsi: "001010123456789", K: "00112233445566778899aabbccddeeff", #if NB_NON_ANCHOR == 1 multi_carrier : true, #endif multi_tone : true, #if NB_TWO_HARQ == 1 two_harq : true, #endif /* 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", } ], }