Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/5GCoreNet/5GCoreNetSDK
5GCoreNetSDK is a fully-featured SDK for developing in 5GC. The SDK currently follows 3GPP R18 specifications.
https://github.com/5GCoreNet/5GCoreNetSDK
3gpp 5g 5g-core-network core golang network release18 sdk
Last synced: 3 months ago
JSON representation
5GCoreNetSDK is a fully-featured SDK for developing in 5GC. The SDK currently follows 3GPP R18 specifications.
- Host: GitHub
- URL: https://github.com/5GCoreNet/5GCoreNetSDK
- Owner: 5GCoreNet
- License: apache-2.0
- Archived: true
- Created: 2022-09-14T12:40:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-03T08:54:54.000Z (over 1 year ago)
- Last Synced: 2024-06-20T22:35:39.229Z (5 months ago)
- Topics: 3gpp, 5g, 5g-core-network, core, golang, network, release18, sdk
- Language: Go
- Homepage:
- Size: 172 KB
- Stars: 17
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-5g - 5GCoreNetSDK - 5GCoreNetSDK is a fully-featured Golang SDK for developing inside 5GC (Release-18). (Tools / Diameter)
README
# 5GCoreNetSDK
[![Go Reference](https://pkg.go.dev/badge/github.com/5GCoreNet/5GCoreNetSDK.svg)](https://pkg.go.dev/github.com/5GCoreNet/5GCoreNetSDK)
[![Go Report Card](https://goreportcard.com/badge/github.com/5GCoreNet/5GCoreNetSDK)](https://goreportcard.com/report/github.com/5GCoreNet/5GCoreNetSDK)
[![License](https://img.shields.io/github/license/5GCoreNet/5GCoreNetSDK)](LICENSE)
![GitHub stars](https://img.shields.io/github/stars/5GCoreNet/5GCoreNetSDK?style=social)
> At this moment, this SDK is in development. It is not ready for production use.
> Refers to the [Roadmap](#roadmap) section for more information on what has been done.
>
> See the [Contributing](#contributing) section if you would like to help make it better.
5GCoreNetSDK is an open source project that provides a set of APIs to access or expose a Network Function (NF) in 5G Core Network.
The APIs are based on the 3GPP specifications and are implemented in Golang.Under the hood, the SDK exposes the standard HTTP RESTful API for the Network Function you've built.
The RESTful APIs are implemented using [Gin](https://github.com/gin-gonic/gin) framework.The SDK follows the R18 3GPP specifications.
## Getting Started
```bash
go get github.com/5GCoreNet/5GCoreNetSDK
```## Features
- Simple and easy to use, just implement the interface you need, and you are ready to go
- Support for both Server and Client mode
- Follows the 3GPP specifications out of the box (R18)
- C compatible thanks to [cgo](https://golang.org/cmd/cgo/)
- Fully open source and free to use, modify, and distribute under the terms of the [Apache 2.0 license](LICENSE)## Roadmap
As 5GCoreNetSDK is still in development, the following table is the roadmap representing what has been done and what is still to do.
The following table shows the status of the APIs and the order in which they will be implemented. If you want to see a specific API implemented,
you can open an issue (or you can implement it and open a pull request).Network Function | API | Status | Comments | Documentation
---------------- |------|-----------------|-----------------------------------------------------------------------------------------| -------------
LMF | NLMF | In progress | NLMF is the first API proposal and is considered as a PoC. NLMF might change in future. | [Link](fivegc/nlmf/examples/main.go)
NRF | NNRF | Not implemented | |
AMF | NAMF | Not implemented | |
SMF | NSMF | Not implemented | |
UDM | NUDM | Not implemented | |
UDR | NUDR | Not implemented | |
AUSF | NAUSF | Not implemented | |
PCF | NPCF | Not implemented | |
NSSF | NNSSF | Not implemented | |
N3IWF | NN3IWF | Not implemented | |
UPF | NUPF | Not implemented | |> Note that API is considered implemented if it is implemented in the SDK in Server and Client mode and if it is tested and documented.
## Contributing
Contributions are welcome! Please read the [Contributing Guide](docs/CONTRIBUTING.md) for more information.