User guide
Table Of Contents
- Introduction
- Hardware setup
- Connection to AMARI UE Simbox
- LTE service
- Initial setting
- Create scenario using WebGui
- Run UE scenarios with WebGui
- Create scenario without WebGui
- Downlink and Uplink transfer using iperf
- NB-IOT devices
- Channel simulator
- logging
- Advanced options
- Troubleshooting
27
8 Create scenario without WebGui
In order to ease automation, UE scenario can be directly defined in the ue.cfg file and run
automatically when lte service is started.
The exhaustive list of parameters that can be used are described in lteue.pdf documentation,
chapter 7.3.
For creating configuration files including scenario, you can start from one of the files provided
in the amarisoft releases (available under /root/ue/config folder) as a starting point and modify
it as described in the following sections in order to create multiple UE.
Note: as described in "Export scenario" section above, another possibility consists in creating
the scenario through the Web GUI and exporting it. The json config file generated can be
integrated into the config file.
Note : Export button is active only when number of UE created in scenario is not Null
8.1 Multiple UEs
It’s possible to create multiple UEs by using either the ue_count parameter or by . This is
convenient when high number of UEs must be created manually.
When defined, ue_count instances of UE are created. Each of them has a unique IMEI and K
values (starting from IMSI and K values and incremented by one) .
All others properties remain the same for each UEs.
When using Amarisoft EPC solution, count parameter can be used as well to create n user
entries in EPC by incrementing the IMSI and K values
8.2 Examples of configuration file
8.2.1 Power ON OFF
In the example below, UE with IMSI 001010000000200 will automatically power on after 3
seconds and power off after 3000 seconds.
ue_list: [
{
as_release: 8,
ue_category: 4,
imsi: "001010000000200",
sim_events: [
{
"start_time": 3,
"event": "power_on"
},
{
"start_time": 3000,
"event": "power_off"
},
]










