blob: fb349173cd3e9700809481d1bd9d0a877a891ce6 [file] [log] [blame]
Pau Espin Pedrol65beb8f2020-03-31 12:03:19 +02001/* UE simulator configuration file version 2018-10-18
2 * Copyright (C) 2015-2018 Amarisoft
3 */
4{
5
6%if ue.license_server_addr != '0.0.0.0':
7 license_server: {
8 server_addr: "${ue.license_server_addr}",
9 name: "amarisoft",
10 },
11%endif
12
13% if ue.rf_dev_type == 'zmq':
14 /* Force sampling rate (if uncommented) */
15 sample_rate: ${ue.sample_rate},
16%endif
17
18
19// log_options: "all.level=debug,all.max_size=32",
20 log_options: "all.level=error,all.max_size=0,nas.level=debug,nas.max_size=1,rrc.level=debug,rrc.max_size=1",
21 log_filename: "${ue.log_filename}",
22
23 /* Enable remote API and Web interface */
24 com_addr: "${ue.addr}:9002",
25
26 include "amarisoft_rf_driver.cfg",
27
28 bandwidth: 5,
29
30 /* If true, allow the simulation of several UEs at the same time and
31 allow dynamic UE creation from remote API */
32 multi_ue: false,
33
34 cells: [
35 {
36 dl_earfcn: 3350, /* 2850 MHz (band 7) */
37// dl_earfcn: 40620, /* 3500 MHz (band 41) */
38 n_antenna_dl: 1, /* number of downlink antennas */
39 n_antenna_ul: 1,
40
41 /* must be provided if multi_ue = true */
42 //global_timing_advance: 1,
43 }
44 ],
45
46 ue_list: [
47 {
48 /* UE capabilities */
49 as_release: 8,
50 ue_category: 4,
51
52 /* USIM data */
53 imsi: "${ue.imsi}",
54 K: "${ue.ki}",
55
56 /* If enabled, will try to use external SIM card using libpcsclite */
57 //external_sim: true,
58
59 /* Enable it to create a TUN interface for each UE PDN */
60 //tun_setup_script: "ue-ifup",
61 }
62 ],
63
64 /* If case your system have a high SNR and you are running high number of
65 * UEs, enable this option to optimize PDCCH decoding and save CPU
66 */
67 pdcch_decode_opt: false,
68 pdcch_decode_opt_threshold: 0.1,
69
70}