Skip to content

Commit 7a6ebc3

Browse files
Minor docu updates while reinstalling (#245)
* Update 5gnetwork.md
1 parent 4288fbf commit 7a6ebc3

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

pages/3gpp-ran-and-core-platforms/tutorials/5gnetwork.md

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,15 @@ the [srsRAN documentation](https://docs.srsran.com/projects/project/en/latest/kn
2828
Follow the installation procedures in
2929
the [Open5GS Quickstart guide](https://open5gs.org/open5gs/docs/guide/01-quickstart/).
3030

31+
For the **config** files go to: `/etc/open5gs/*.yaml`
32+
33+
For the **logs** go to: `/var/log/open5gs/*.log`
34+
35+
The Open5GS Subscriber portal is located in: `http://localhost:9999` (by default admin:1423 as user:password)
36+
3137
### Step 1: Install the 5G Core (Open5GS)
3238

33-
We recommend installing for Ubuntu 22.04 with the following instructions:
39+
We recommend installing for Ubuntu 24.04 with the following instructions:
3440

3541
#### Getting MongoDB
3642

@@ -42,10 +48,18 @@ sudo apt install gnupg
4248
curl -fsSL https://pgp.mongodb.com/server-6.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-6.0.gpg --dearmor
4349
```
4450

45-
Create the list file /etc/apt/sources.list.d/mongodb-org-6.0.list for Ubuntu 22.04:
51+
Create the list file /etc/apt/sources.list.d/mongodb-org-6.0.list.
52+
53+
For Ubuntu 24.04 (noble):
4654

4755
```bash
48-
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-6.0.gpg] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
56+
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list
57+
```
58+
59+
For Ubuntu 22.04 (jammy):
60+
61+
```bash
62+
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list
4963
```
5064

5165
Install the MongoDB packages.
@@ -81,8 +95,6 @@ echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.co
8195
sudo apt update
8296
sudo apt install nodejs -y
8397

84-
sudo zypper install nodejs8
85-
8698
curl -fsSL https://open5gs.org/open5gs/assets/webui/install | sudo -E bash -
8799
```
88100

@@ -137,7 +149,7 @@ UDR-sbi = 127.0.0.20:7777 for 5G SBI
137149

138150
#### PLMN ID and TAC information
139151

140-
Our setup will be using PLMN ID (MCC/MNC) 001/01 and TAC 7. This information needs to be loaded into the NRF and AMF
152+
Our setup will be using PLMN ID (MCC/MNC) 001/01 and TAC 7. 5GC and gNodeB will be running in the same machine (we use the default binding addresses). This information needs to be loaded into the NRF and AMF
141153
config files (and the gNB).
142154

143155
Modify `/etc/open5gs/nrf.yaml` to set the Serving PLMN ID:
@@ -196,8 +208,8 @@ amf:
196208
integrity_order : [ NIA2, NIA1, NIA0 ]
197209
ciphering_order : [ NEA0, NEA1, NEA2 ]
198210
network_name:
199-
full: 5GMAG
200-
short: 5GMAG
211+
full: 5G-MAG
212+
short: 5G-MAG
201213
```
202214

203215
After changing config files, please restart Open5GS daemons.
@@ -247,15 +259,15 @@ Install dependencies
247259
sudo apt-get install cmake make gcc g++ pkg-config libfftw3-dev libmbedtls-dev libsctp-dev libyaml-cpp-dev libgtest-dev
248260
```
249261

250-
Install UHD drivers (e.g. for Ettus USRP)
262+
Install UHD drivers (e.g. for Ettus USRP). More information at the Ettus [website](https://files.ettus.com/manual/page_build_guide.html).
251263

252264
```bash
253265
sudo add-apt-repository ppa:ettusresearch/uhd
254266
sudo apt-get update
255267
sudo apt-get install libuhd-dev uhd-host
256268
```
257269

258-
Download the srsRAN Project packages:
270+
Download the srsRAN Project packages. If there are no packages for your Ubuntu version, a manual build would be required.
259271

260272
```bash
261273
sudo add-apt-repository ppa:softwareradiosystems/srsran-project

0 commit comments

Comments
 (0)