/* Cat M1 UE simulator configuration file version 2022-01-17 * Copyright (C) 2015-2022 Amarisoft */ #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, 2 #define UE_COUNT 1 // number of simulated UEs { // 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: [ { /* If true, allow the simulation of several UEs at the same time and allow dynamic UE creation from remote API */ multi_ue: true, group_type: "cat_m1", cells: [{ bandwidth: CELL_BANDWIDTH, #if TDD == 1 dl_earfcn: 40620, /* 2593 MHz (band 41) */ #else dl_earfcn: 3350, /* 2680 MHz (Band 7) */ #endif 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: [ { /* USIM data */ imsi: "001010123456789", K: "00112233445566778899aabbccddeeff", /* UE capabilities */ as_release: 13, ue_category: -1, 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", } ], }