From a4c402d1a200767c39d0d1241ee229ae1673d29e Mon Sep 17 00:00:00 2001 From: demx8as6 Date: Wed, 5 Jul 2023 16:02:49 +0000 Subject: [PATCH] repo clean-up - remove in the meantime unnessary O-RU-Controller md Issue-ID: OAM-346 Change-Id: Id4a4698600376f191a694c889c50c51082dd4df1 Signed-off-by: demx8as6 --- solution/README-O-RU-Controller.md | 139 ------------------------------------- 1 file changed, 139 deletions(-) delete mode 100644 solution/README-O-RU-Controller.md diff --git a/solution/README-O-RU-Controller.md b/solution/README-O-RU-Controller.md deleted file mode 100644 index c652f1e..0000000 --- a/solution/README-O-RU-Controller.md +++ /dev/null @@ -1,139 +0,0 @@ -# O-RU Controller - -This documents describes the deployment of an O-RU Controller which could be used -as component for O-DU and/or SMO implementations. - -## Prerequisites - -### Resources - -The solution was tested on a VM with - -- 4x Core -- 16 GBit RAM -- 50 Gbit Storage - -### Operating (HOST) System - -``` -$ cat /etc/os-release | grep PRETTY_NAME -PRETTY_NAME="Ubuntu 22.04.2 LTS" -``` - -### Docker - -``` -$ docker --version -Docker version 23.0.1, build a5ee5b1 -``` -Please follow the required docker daemon configuration as documented in the following README.md: -- [./smo/common/docker/README.md](./smo/common/docker/README.md) - -### Docker Compose - -``` -$ docker compose version -Docker Compose version v2.17.2 -``` - -### GIT - -``` -$ git --version -git version 2.34.1 -``` - -### Python - -``` -$ 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" -``` - -### ETC Host (DNS function) - -Please modify the /etc/hosts of your system. - -* \: is the hostname of the system, where the browser is started - -* \: 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 - -# SMO OAM development system - smo.o-ran-sc.org - gateway.smo.o-ran-sc.org - identity.smo.o-ran-sc.org - messages.smo.o-ran-sc.org - odlux.oam.smo.o-ran-sc.org - flows.oam.smo.o-ran-sc.org - tests.oam.smo.o-ran-sc.org - ves-collector.dcn.smo.o-ran-sc.org - controller.dcn.smo.o-ran-sc.org - -``` - -## Bring Up Solution - -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-11221 -python network/config.py -``` - -## Verification Solution - -### Login into O-RU-Controller UI - - https://odlux.oam.smo.o-ran-sc.org - - User: admin - - Password: // see .env file - -In case of trouble, please update the commands with your customized '.env' file. - -### Connection State of the simulated O-RU - -In the O-RU Controller UI you should see the simulated O-RU connected as a kind of reference implementation. - -![Connection State](./docs/connect.odlux.o-ru-controller.o-ran-sc.org.png) - -### Alarm Notification of the simulated O-RU - -In the O-RU Controller UI you should see the generated alarm notifications of the O-RU as a kind of reference implementation. - -![Alarm Notifications](./docs/fault.odlux.o-ru-controller.o-ran-sc.org.png) - -## Terminate solution - -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 -``` -- 2.16.6