takeshineshiro / free5GRAN

free5GRAN is an open-source 5G RAN stack. The current version includes a receiver which decodes MIB & SIB1 data. It also acts as a cell scanner. free5GRAN works in SA mode.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

free5GRAN

free5GRAN is an open-source 5G RAN stack. The current version includes a receiver which decodes MIB & SIB1 data. It also acts as a cell scanner. free5GRAN works in SA mode.

free5GRAN includes a library which can be reused for further developments. Documentation is available https://free5g.github.io/free5GRAN-documentation/.

LGTM scores

Total alerts

Language grade: C/C++

Codacy score

Codacy Badge

Installation & Running

Requirements

Before compiling, make sure that the following libraries are installed:

  • cmake
  • libfftw3
  • libconfig++
  • boost

On ubuntu, those libraries can be installed via:

sudo apt-get install cmake libfftw3-dev libconfig++-dev libboost-program-options-dev libboost-log-dev

Radio frontend

We currently support USRP B210 and X310 natively. libuhd-dev is required. It can be installed on Ubuntu via:

sudo apt-get install libuhd-dev

USRP N210 is also supported but free5GRAN requires Liquid SDR library for sampling rate resampling : https://liquidsdr.org/doc/installation/. To build free5GRAN with USRP N210 support, just run cmake with option -DINCLUDE_N210=ON.

Compiling

free5GRAN executable can be compiled from sources with the following commands:

git clone https://github.com/free5G/free5GRAN.git
cd free5GRAN
mkdir build
cd build
cmake ..
make
sudo make install

Configuration and running

Two functions are supported by free5GRAN.

Cell search

Searching a cell with pre-defined parameters. Example config file is provided (free5GRAN/config/search_cell.cfg).

Band scanning

Scanning one or more 5G NR bands. Example config file is provided (free5GRAN/config/scan_band.cfg).

USRP configuration

Pre-defined USRP device

If you want to use a pre-defined RF device, USRP device has to be configured:

  • Run uhd_find_devices
  • Find the device you want to use
  • Copy the serial field of the device and paste it in the config file.
USRP X310 network configuration

Before running free5GRAN with USRP X310, set mtu size to 8000: ifconfig ETHERNET_INTERFACE mtu 8000. Foremost, run sudo sysctl -w net.core.wmem_max=24266666.

Running

free5GRAN should be available globally after installation. Configuration files are located in /root/.config/free5GRAN/config. There is two possible options for running free5GRAN:

  • Run sudo free5GRAN to run free5GRAN with default config file /root/.config/free5GRAN/config/free5GRAN.cfg.
  • Run sudo free5GRAN RELATIVE_CONFIG_FILE_PATH to run free5GRAN with a specific configuration file.

Foremost, if you want to set the maximum priority level for free5GRAN, you can run it with: sudo nice -n -20 free5GRAN RELATIVE_CONFIG_FILE_PATH

Debugging

free5GRAN writes logs in /var/log/free5GRAN/free5GRAN.log. It can be used for debugging. Foremost, free5RGAN writes some data files in /root/.files/free5GRAN/execution_raw_files/ directory (if it exists). For plotting those files, run python analyse.py in /root/.files/free5GRAN/. This python script generates files that are stored in /root/.files/visualization_files/ directory.

Testing note

free5GRAN has been successfully tested on Ubuntu 18.04 with USRP B210. It is currently under active development, which means that it might not be fully stable.

Issues

All the issues have to be reported in the issues page of this repository. Some known issues about the current version are already detailed in issues section.

5G NSA support

As 5G NSA uses 4G cell for attachment, SIB are transmitted on a 4G cell and this receiver won't be able to decode SIB1 data from 5G NSA mode. However, this receiver should be able to detect 5G NSA cell and decode MIB data.

Supported bands

A number of bands are already supported by free5GRAN. New bands can be added in free5GRAN/lib/variables/common_structures

About

free5GRAN is an open-source 5G RAN stack. The current version includes a receiver which decodes MIB & SIB1 data. It also acts as a cell scanner. free5GRAN works in SA mode.

License:Apache License 2.0


Languages

Language:C++ 53.3%Language:C 46.7%Language:Python 0.0%Language:CMake 0.0%