/* UE simulator configuration file version 2024-05-14 * NB-IoT example with NTN support * Copyright (C) 2016-2024 Amarisoft */ #define CELL_BANDWIDTH 1.4 // Values: 1.4 (1.4MHz) #define N_ANTENNA_DL 1 // Values: 1 #define N_ANTENNA_UL 1 // Values: 1 { // log_options: "all.level=debug,all.max_size=32,phy.ntn=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: "[::]: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, ground_position: { latitude: 43.295, longitude: 5.373, altitude: 20 }, cells: [{ bandwidth: CELL_BANDWIDTH, dl_earfcn: 229300, /* 2192.4 MHz (Band 256) */ 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: 17, ue_category: "nb2", /* Category NB2 */ /* if true, enable control plane CIoT optimization. */ cp_ciot_opt: false, apn: "ntn-internet", /* USIM data */ imsi: "001010123456789", K: "00112233445566778899aabbccddeeff", multi_tone : true, two_harq : true, /* 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", } ], }