You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

217 lines
7.2 KiB
Markdown

10 years ago
srsLTE
11 years ago
========
[![Build Status](https://travis-ci.org/srsLTE/srsLTE.svg?branch=master)](https://travis-ci.org/srsLTE/srsLTE)
srsLTE is a free and open-source LTE software suite developed by SRS (www.softwareradiosystems.com).
It includes:
* srsUE - a complete SDR LTE UE application featuring all layers from PHY to IP
* srsENB - a complete SDR LTE eNodeB application
7 years ago
* srsEPC - a light-weight LTE core network implementation with MME, HSS and S/P-GW
* a highly modular set of common libraries for PHY, MAC, RLC, PDCP, RRC, NAS, S1AP and GW layers.
6 years ago
srsLTE is released under the AGPLv3 license and uses software from the OpenLTE project (http://sourceforge.net/projects/openlte) for some security functions and for NAS message parsing.
10 years ago
8 years ago
Common Features
---------------
9 years ago
* LTE Release 10 aligned
9 years ago
* Tested bandwidths: 1.4, 3, 5, 10, 15 and 20 MHz
7 years ago
* Transmission mode 1 (single antenna), 2 (transmit diversity), 3 (CCD) and 4 (closed-loop spatial multiplexing)
9 years ago
* Frequency-based ZF and MMSE equalizer
7 years ago
* Evolved multimedia broadcast and multicast service (eMBMS)
7 years ago
* Highly optimized Turbo Decoder available in Intel SSE4.1/AVX2 (+100 Mbps) and standard C (+25 Mbps)
8 years ago
* MAC, RLC, PDCP, RRC, NAS, S1AP and GW layers
* Detailed log system with per-layer log levels and hex dumps
* MAC layer wireshark packet capture
* Command-line trace metrics
* Detailed input configuration files
* Channel simulator for EPA, EVA, and ETU 3GPP channels
* ZeroMQ-based fake RF driver for I/Q over IPC/network
8 years ago
srsUE Features
--------------
* FDD and TDD configuration
* Carrier Aggregation support
8 years ago
* Cell search and synchronization procedure for the UE
6 years ago
* Soft USIM supporting Milenage and XOR authentication
* Hard USIM support using PCSC framework
8 years ago
* Virtual network interface *tun_srsue* created upon network attach
6 years ago
* 150 Mbps DL in 20 MHz MIMO TM3/TM4 configuration in i7 Quad-Core CPU.
8 years ago
* 75 Mbps DL in 20 MHz SISO configuration in i7 Quad-Core CPU.
* 36 Mbps DL in 10 MHz SISO configuration in i5 Dual-Core CPU.
8 years ago
srsUE has been fully tested and validated with the following network equipment:
* Amarisoft LTE100 eNodeB and EPC
* Nokia FlexiRadio family FSMF system module with 1800MHz FHED radio module and TravelHawk EPC simulator
* Huawei DBS3900
* Octasic Flexicell LTE-FDD NIB
srsENB Features
---------------
* FDD configuration
8 years ago
* Round Robin MAC scheduler with FAPI-like C++ API
8 years ago
* SR support
* Periodic and Aperiodic CQI feedback support
8 years ago
* Standard S1AP and GTP-U interfaces to the Core Network
7 years ago
* 150 Mbps DL in 20 MHz MIMO TM3/TM4 with commercial UEs
7 years ago
* 75 Mbps DL in SISO configuration with commercial UEs
6 years ago
* 50 Mbps UL in 20 MHz with commercial UEs
* User-plane encryption
8 years ago
srsENB has been tested and validated with the following handsets:
6 years ago
* LG Nexus 5 and 4
* Motorola Moto G4 plus and G5
* Huawei P9/P9lite, P10/P10lite, P20/P20lite
7 years ago
* Huawei dongles: E3276 and E398
9 years ago
7 years ago
srsEPC Features
---------------
* Single binary, light-weight LTE EPC implementation with:
* MME (Mobility Management Entity) with standard S1AP and GTP-U interface to eNB
* S/P-GW with standard SGi exposed as virtual network interface (TUN device)
* HSS (Home Subscriber Server) with configurable user database in CSV format
* Support for paging
7 years ago
11 years ago
Hardware
8 years ago
--------
11 years ago
9 years ago
The library currently supports the Ettus Universal Hardware Driver (UHD) and the bladeRF driver. Thus, any hardware supported by UHD or bladeRF can be used. There is no sampling rate conversion, therefore the hardware should support 30.72 MHz clock in order to work correctly with LTE sampling frequencies and decode signals from live LTE base stations.
11 years ago
9 years ago
We have tested the following hardware:
* USRP B210
6 years ago
* USRP B205mini
9 years ago
* USRP X300
6 years ago
* limeSDR
9 years ago
* bladeRF
9 years ago
8 years ago
Build Instructions
------------------
11 years ago
* Mandatory requirements:
8 years ago
* Common:
7 years ago
* cmake https://cmake.org/
8 years ago
* libfftw http://www.fftw.org/
* PolarSSL/mbedTLS https://tls.mbed.org
* srsUE:
* Boost: http://www.boost.org
* srsENB:
* Boost: http://www.boost.org
* lksctp: http://lksctp.sourceforge.net/
* config: http://www.hyperrealm.com/libconfig/
7 years ago
* srsEPC:
* Boost: http://www.boost.org
* lksctp: http://lksctp.sourceforge.net/
* config: http://www.hyperrealm.com/libconfig/
8 years ago
For example, on Ubuntu 17.04, one can install the required libraries with:
```
sudo apt-get install cmake libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev
```
or on Fedora:
```
dnf install cmake fftw3-devel polarssl-devel lksctp-tools-devel libconfig-devel boost-devel
```
Note that depending on your flavor and version of Linux, the actual package names may be different.
10 years ago
* Optional requirements:
8 years ago
* srsgui: https://github.com/srslte/srsgui - for real-time plotting.
6 years ago
* libpcsclite-dev: https://pcsclite.apdu.fr/ - for accessing smart card readers
10 years ago
* RF front-end driver:
* UHD: https://github.com/EttusResearch/uhd
6 years ago
* SoapySDR: https://github.com/pothosware/SoapySDR
* BladeRF: https://github.com/Nuand/bladeRF
* ZeroMQ: https://github.com/zeromq
10 years ago
Download and build srsLTE:
11 years ago
```
10 years ago
git clone https://github.com/srsLTE/srsLTE.git
cd srsLTE
11 years ago
mkdir build
cd build
cmake ../
7 years ago
make
make test
11 years ago
```
6 years ago
Install srsLTE:
```
sudo make install
sudo srslte_install_configs.sh
```
This installs srsLTE and also copies the default srsLTE config files to
the user's home directory (~/.srs).
10 years ago
8 years ago
Execution Instructions
----------------------
11 years ago
7 years ago
The srsUE, srsENB and srsEPC applications include example configuration files
6 years ago
that should be copied (manually or by using the convenience script) and modified,
if needed, to meet the system configuration.
On many systems they should work out of the box.
By default, all applications will search for config files in the user's home
directory (~/.srs) upon startup.
11 years ago
7 years ago
Note that you have to execute the applications with root privileges to enable
real-time thread priorities and to permit creation of virtual network interfaces.
7 years ago
srsENB and srsEPC can run on the same machine as a network-in-the-box configuration.
srsUE needs to run on a separate machine.
7 years ago
6 years ago
If you have installed the software suite using ```sudo make install``` and
have installed the example config files using ```sudo srslte_install_configs.sh```,
you may just start all applications with their default parameters.
7 years ago
### srsEPC
6 years ago
On machine 1, run srsEPC as follows:
11 years ago
```
6 years ago
sudo srsepc
11 years ago
```
6 years ago
Using the default configuration, this creates a virtual network interface
named "srs_spgw_sgi" on machine 1 with IP 172.16.0.1. All connected UEs
will be assigned an IP in this network.
8 years ago
### srsENB
10 years ago
6 years ago
Also on machine 1, but in another console, run srsENB as follows:
7 years ago
```
6 years ago
sudo srsenb
7 years ago
```
### srsUE
6 years ago
On machine 2, run srsUE as follows:
10 years ago
7 years ago
```
6 years ago
sudo srsue
7 years ago
```
Using the default configuration, this creates a virtual network interface
named "tun_srsue" on machine 2 with an IP in the network 172.16.0.x.
Assuming the UE has been assigned IP 172.16.0.2, you may now exchange
7 years ago
IP traffic with machine 1 over the LTE link. For example, run a ping to
7 years ago
the default SGi IP address:
6 years ago
7 years ago
```
ping 172.16.0.1
```
11 years ago
Support
========
10 years ago
Mailing list: http://www.softwareradiosystems.com/mailman/listinfo/srslte-users