This documents describes the deployment of an O-RU Controller which could be used as component for O-DU and/or SMO implementations.
The solution was tested on a VM with
$ cat /etc/os-release | grep PRETTY_NAME PRETTY_NAME="Ubuntu 22.04.2 LTS"
$ docker --version Docker version 23.0.1, build a5ee5b1
Please follow the required docker daemon configuration as documented in the following README.md:
$ docker compose version Docker Compose version v2.17.2
$ git --version git version 2.34.1
$ python3 --version Python 3.10.6
sudo apt install python3-pip pip install jproperties
It is beneficial (but not mandatory) adding the following line add the end of your ~/.bashrc file. I will suppress warnings when python script do not verify self signed certificates for HTTPS communication.
export PYTHONWARNINGS="ignore:Unverified HTTPS request"
Please modify the /etc/hosts of your system.
<your-system>: is the hostname of the system, where the browser is started
<deployment-system-ipv4>: is the IP address of the system where the solution will be deployed
For development purposes and may reference the same system.
$ cat /etc/hosts 127.0.0.1 localhost 127.0.1.1 <your-system> # SMO OAM development system <deployment-system-ipv4> smo.o-ran-sc.org <deployment-system-ipv4> gateway.smo.o-ran-sc.org <deployment-system-ipv4> identity.smo.o-ran-sc.org <deployment-system-ipv4> messages.smo.o-ran-sc.org <deployment-system-ipv4> ves-collector.oam.smo.o-ran-sc.org <deployment-system-ipv4> odlux.oam.smo.o-ran-sc.org <deployment-system-ipv4> controller.oam.smo.o-ran-sc.org
The following commands should be invoked. More detailed can be found in the next chapters.
docker compose -f smo/common/docker-compose.yml up -d python smo/common/identity/config.py docker compose -f smo/oam/docker-compose.yml up -d odlux controller docker compose -f network/docker-compose.yml up -d ntsim-ng-o-ru-fh-11221 python network/config.py
https://odlux.oam.smo.o-ran-sc.org User: admin // see .env file Password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
In case of trouble, please update the commands with your customized '.env' file.
In the O-RU Controller UI you should see the simulated O-RU connected as a kind of reference implementation.
In the O-RU Controller UI you should see the generated alarm notifications of the O-RU as a kind of reference implementation.
To stop all container please respect the following order
docker compose -f network/docker-compose.yml down docker compose -f smo/oam/docker-compose.yml down docker compose -f smo/common/docker-compose.yml down