open5gs/docs/_docs/platform/05-macosx.md

156 lines
4.0 KiB
Markdown
Raw Normal View History

2019-04-27 15:01:51 +00:00
---
title: Mac OS X
head_inline: "<style> .blue { color: blue; } </style>"
---
2020-11-27 02:52:54 +00:00
This guide is based on **macOS Big Sur 11.0.1**.
2019-04-27 15:01:51 +00:00
{: .blue}
### Installing Homebrew
---
```bash
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```
### Getting MongoDB
---
Install MongoDB with Package Manager.
```bash
$ brew tap mongodb/brew
$ brew install mongodb-community
2019-04-27 15:01:51 +00:00
```
Run MongoDB server.
```bash
$ mongod --config /usr/local/etc/mongod.conf
2019-04-27 15:01:51 +00:00
```
2020-04-11 01:42:43 +00:00
**Tip:** MongoDB is persistent after rebooting with the following commands:
2020-04-11 02:12:04 +00:00
`$ brew services start mongodb-community`
2020-04-11 01:42:43 +00:00
{: .notice--info}
2019-04-27 15:01:51 +00:00
### Setting up TUN device (No persistent after rebooting)
---
Install TUN/TAP driver
- You can download it from [http://tuntaposx.sourceforge.net/](http://tuntaposx.sourceforge.net/)
- And then, run tuntap_20150118.pkg to install TUN/TAP driver.
2019-04-27 15:01:51 +00:00
Configure the TUN device.
```bash
$ sudo ifconfig lo0 alias 127.0.0.2 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.3 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.4 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.5 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.5 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.6 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.7 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.8 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.9 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.10 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.11 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.12 netmask 255.255.255.255
$ sudo ifconfig lo0 alias 127.0.0.13 netmask 255.255.255.255
2019-04-27 15:01:51 +00:00
```
Enable IP forwarding & Masquerading
```bash
$ sudo sysctl -w net.inet.ip.forwarding=1
2020-02-17 01:41:16 +00:00
$ sudo sh -c "echo 'nat on {en0} from 10.45.0.0/16 to any -> {en0}' > /etc/pf.anchors/org.open5gs"
$ sudo pfctl -e -f /etc/pf.anchors/org.open5gs
2019-04-27 15:01:51 +00:00
```
**Tip:** The script provided in [$GIT_REPO/misc/netconf.sh](https://github.com/{{ site.github_username }}/open5gs/blob/master/misc/netconf.sh) makes it easy to configure the TUN device as follows:
`$ sudo ./misc/netconf.sh`
2019-04-27 15:01:51 +00:00
{: .notice--info}
### Building Open5GS
2019-04-27 15:01:51 +00:00
---
Install the depedencies for building the source code.
```bash
$ brew install mongo-c-driver gnutls libgcrypt libidn libyaml libmicrohttpd nghttp2 pkg-config
2019-04-27 15:01:51 +00:00
```
2020-11-12 19:35:05 +00:00
Install Bison and Create soft link.
```bash
$ brew install bison
2020-11-29 03:38:46 +00:00
$ export PATH="/usr/local/opt/bison/bin:$PATH"
2020-11-12 19:35:05 +00:00
```
Install Meson using Homebrew.
```bash
$ brew install meson
```
Git clone.
2019-04-27 15:01:51 +00:00
```bash
$ git clone https://github.com/{{ site.github_username }}/open5gs
2019-04-27 15:01:51 +00:00
```
To compile with meson:
2019-04-27 15:01:51 +00:00
```bash
$ cd open5gs
$ meson build --prefix=`pwd`/install -D c_std=c99
$ ninja -C build
2019-04-27 15:01:51 +00:00
```
2019-06-01 10:53:57 +00:00
Check whether the compilation is correct.
2020-08-22 16:44:11 +00:00
**Note:** This should require *sudo* due to access `/dev/tun0`.
2019-04-27 15:01:51 +00:00
{: .notice--danger}
2020-08-22 16:44:11 +00:00
2019-06-01 10:53:57 +00:00
```bash
2020-09-01 04:46:39 +00:00
$ sudo ./build/tests/attach/attach ## EPC Only
$ sudo ./build/tests/registration/registration ## 5G Core Only
2019-06-01 10:53:57 +00:00
```
2019-04-27 15:01:51 +00:00
2020-08-22 16:44:11 +00:00
Run all test programs as below.
**Note:** This should require *sudo* due to access `/dev/tun0`.
{: .notice--danger}
```bash
$ cd build
$ sudo meson test -v
```
**Tip:** You can also check the result of `ninja -C build test` with a tool that captures packets. If you are running `wireshark`, select the `loopback` interface and set FILTER to `s1ap || gtpv2 || pfcp || diameter || gtp || ngap || http2.data.data || http2.headers`. You can see the virtually created packets. [testattach.pcapng]({{ site.url }}{{ site.baseurl }}/assets/pcapng/testattach.pcapng)/[testregistration.pcapng]({{ site.url }}{{ site.baseurl }}/assets/pcapng/testregistration.pcapng)
2019-04-27 15:01:51 +00:00
{: .notice--info}
2020-08-22 16:44:11 +00:00
You need to perform the **installation process**.
2019-04-27 15:01:51 +00:00
```bash
$ cd build
$ ninja install
2020-08-22 16:44:11 +00:00
$ cd ../
2019-04-27 15:01:51 +00:00
```
2020-08-22 16:44:11 +00:00
### Building WebUI of Open5GS
2019-04-27 15:01:51 +00:00
---
[Node.js](https://nodejs.org/) is required to build WebUI of Open5GS
2019-04-27 15:01:51 +00:00
```bash
$ brew install node
```
Install the dependencies to run WebUI
```bash
$ cd webui
$ npm install
2019-04-27 15:01:51 +00:00
```
The WebUI runs as an [npm](https://www.npmjs.com/) script.
```bash
$ npm run dev
2019-04-27 15:01:51 +00:00
```