Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hi120ki/vagrant-free5gc
- Owner: hi120ki
- License: mit
- Created: 2022-08-02T08:20:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-04T03:28:50.000Z (12 months ago)
- Last Synced: 2024-04-30T11:48:42.214Z (8 months ago)
- Topics: free5gc, vagrant
- Language: Shell
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```