-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into cn-open5gs
- Loading branch information
Showing
5 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
# | ||
# SRSRAN | ||
## Building | ||
|
||
## Running | ||
After building and installing SRSRAN we recommend running the srsran_performance script available in the official srsran_project repository. Since these changes do not persist remember to re-run them if the machine is restarted. | ||
|
||
For each of the core networks there is an accompanying helper script, however, you still need to manually change the second line of each script so that they have the name of your network interface. | ||
|
||
Finnaly, free5gc and OAI CN require a change in routing table of the gNB host. This change can be applied with the commands: | ||
- Free5Gc: `sudo ip route add 10.100.200.0/24 via {external addr of the core host} dev {name of the network interface used to reach the core host}`. | ||
- OAI CN: `sudo ip route add 10.100.200.0/26 via {external addr of the core host} dev {name of the network interface used to reach the core host}`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
MY_IP=$(ip addr show bri0 | grep -o 'inet [0-9\\.]*' | grep -o '[0-9\\.]*') | ||
sudo gnb -c gnb_speed.yml configs/qam256.yml amf --bind_addr $MY_IP --addr 10.100.200.250 | ||
sudo gnb -c gnb_speed.yml amf --bind_addr $MY_IP --addr 10.100.200.250 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
MY_IP=$(ip addr show bri0 | grep -o 'inet [0-9\\.]*' | grep -o '[0-9\\.]*') | ||
sudo gnb -c gnb_speed.yml configs/qam256.yml amf --bind_addr $MY_IP --addr 192.168.70.132 | ||
sudo gnb -c gnb_speed.yml amf --bind_addr $MY_IP --addr 192.168.70.132 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
MY_IP=$(ip addr show bri0 | grep -o 'inet [0-9\\.]*' | grep -o '[0-9\\.]*') | ||
sudo gnb -c gnb_speed.yml configs/qam256.yml amf --bind_addr $MY_IP --addr core | ||
sudo gnb -c gnb_speed.yml amf --bind_addr $MY_IP --addr core |