Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hi120ki/vagrant-free5gc

A demo to run free5gc on vagrant
https://github.com/hi120ki/vagrant-free5gc

free5gc vagrant

Last synced: 28 days ago
JSON representation

A demo to run free5gc on vagrant

Awesome Lists containing this project

README

        

# vagrant free5gc

A demo to run free5gc on vagrant

## Quick start

```
bash main.sh
```

## Requirements

- ubuntu 20.04
- virtualbox-6.1
- vagrant

### Install requirements

- virtualbox-6.1

```
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib"
sudo apt update
sudo apt install virtualbox-6.1
```

- vagrant

```
wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install vagrant
```