OPENAIR-CN-5G
An implementation of the 5G Core network by the OpenAirInterface community.
OPENAIR-CN-5G is an implementation of the 3GPP specifications for the 5G Core Network. At the moment, it contains the following network elements:
- Access and Mobility Management Function (AMF)
- Authentication Server Management Function (AUSF)
- Location Management Function (LMF)
- Network Exposure Function (NEF)
- Network Slicing Selection Function (NSSF)
- Network Repository Function (NRF)
- Network Data Analytics Function (NWDAF)
- Policy Control Function (PCF)
- Session Management Function (SMF)
- Unified Data Management (UDM)
- Unified Data Repository (UDR)
- Unstructured Data Storage Function (UDSF)
- User Plane Function (UPF)
Each has its own repository: this repository (oai-cn5g-ausf
) is meant for AUSF.
It is distributed under OAI Public License V1.1
.
See OAI Website for more details.
The text for OAI Public License V1.1
is also available under LICENSE
file at the root of this repository.
The Openair-CN-5G AUSF code is written, executed, and tested on UBUNTU server bionic version. Other Linux distributions support will be added later on.
More details on the supported feature set is available on this page.
This source code is managed through a GITLAB server, a collaborative development platform:
Process is explained in CONTRIBUTING file.
In a general way, anybody who is willing can contribute on any part of the code in any network component.
Contributions can be simple bugfixes, advices and remarks on the design, architecture, coding/implementation.
They are available on the CHANGELOG file.
The OpenAirInterface CN AUSF software is composed of the following parts:
openair-cn5g-ausf ├── 3gpp-specs: Directory containing 3GPP specification files (YAML) used to implement AUSF network function. ├── build: Build directory, contains targets and object files generated by compilation of network functions. ├── log: Directory containing build log files. ├── scripts: Directory containing scripts for building network functions. └── ausf: Directory containing CMakefile.txt and object files generated by compilation of AUSF network function. ├── ci-scripts: Directory containing the script files for CI framework. ├── docs: Directory containing the documentation files. ├── etc: Directory containing the configuration file to be deployed for AUSF. └── src: Source files of AUSF. ├── 5gaka: Security algorimth implementation. ├── api-server: AUSF services APIs. ├── common: Common header files │ └── utils: Common utilities. ├── oai_ausf: AUSF main directory, contains the "main" CMakeLists.txt file. └── ausf_app: AUSF network functions procedures and contexts.