1 # Service Management and Orchestration (SMO)
3 This project focus on a docker-compose deployment solution for SMO/OAM Components.
7 With respect to OAM the SMO implements the O1-interface consumers.
8 According to the O-RAN OAM Architecture and the O-RAN OAM Interface Specification,
9 the SMO implements a NETCONF Client for configuration and a HTTP/REST/VES server
10 for receiving all kind of events in VES format.
12 The setup contains an OpenDaylight based NETCONF client and an ONAP VES Collector.
16 This docker-compose file starts a pre-configured, self-contained SDN-R solution
17 with the following components.
20 ... representing an KeyCloak based identity service for centralized user
21 management. Please note that the implementation does not support IPv6.
22 Therefore, its own network is required called 'DMZ'.
24 * **Controller** single node instance
26 ... representing the NETCONF consumer on the Service Management and
27 Orchestration framework (SMO) for O-RAN O1 interface and/or O-RAN OpenFronthaul Management Plane and/or other NETCONF/YANG schemas implemented by the OpenDaylight project.
31 ... representing the VES (REST) provider at SMO for all kind of events.
34 ... representing SMO MessageRouter component, includes message-router
38 ### Operating (HOST) System
41 $ cat /etc/os-release | grep PRETTY_NAME
42 PRETTY_NAME="Ubuntu 22.04.2 LTS"
49 Docker version 23.0.1, build a5ee5b1
51 Please follow the required docker daemon configuration as documented in the following README.md:
52 - [./smo/common/docker/README.md](./smo/common/docker/README.md)
57 $ docker compose version
58 Docker Compose version v2.17.2
75 A python parser package is required.
77 sudo apt install python3-pip
78 pip install jproperties
81 It is beneficial (but not mandatory) adding the following line add the
82 end of your ~/.bashrc file. I will suppress warnings when python script
83 do not verify self signed certificates for HTTPS communication.
86 export PYTHONWARNINGS="ignore:Unverified HTTPS request"
89 ### ETC Host (DNS function)
91 Please modify the /etc/hosts of your system.
93 * \<your-system>: is the hostname of the system, where the browser is started
95 * \<deployment-system-ipv4>: is the IP address of the system where the solution will be deployed
97 For development purposes <your-system> and <deployment-system> may reference the same system.
102 127.0.1.1 <your-system>
104 # SMO OAM development system
105 <deployment-system-ipv4> smo.o-ran-sc.org
106 <deployment-system-ipv4> gateway.smo.o-ran-sc.org
107 <deployment-system-ipv4> identity.smo.o-ran-sc.org
108 <deployment-system-ipv4> messages.smo.o-ran-sc.org
109 <deployment-system-ipv4> ves-collector.oam.smo.o-ran-sc.org
110 <deployment-system-ipv4> odlux.oam.smo.o-ran-sc.org
111 <deployment-system-ipv4> controller.oam.smo.o-ran-sc.org
115 ## Expected Folder Structure
117 The following figure show the expected folder structure for the different
118 docker-compose file and its configurations.
124 │ ├── docker-compose.yml
131 │ ├── docker-compose.yml
135 │ ├── docker-compose.yml
145 ├── docker-compose.yml
154 ### Bring Up Solution
158 The following commands should be invoked. More detailed can be found in the
162 docker compose -f smo/common/docker-compose.yml up -d
163 # wait until the cpu load is low again
164 python smo/common/identity/config.py
166 docker compose -f smo/oam/docker-compose.yml up -d
167 docker compose -f smo/apps/docker-compose.yml up -d
169 # wait until the cpu load is low again
171 docker compose -f network/docker-compose.yml up -d
173 docker restart ntsim-ng-o-du-1122
174 python network/config.py
177 #### Check (adjust if required) environment variables
185 #### Startup solution
187 Please note that it is necessary to configure first the identity service,
188 before starting further docker images.
190 The several docker-compose yml files must be started in the right order as listed below:
193 docker compose -f smo/common/docker-compose.yml up -d
194 python smo/common/identity/config.py
197 The python script configure the users within the identity service (keycloak).
198 A system user (%USER) is also created with administration rights.
202 docker compose -f smo/oam/docker-compose.yml up -d
205 Looking into the ONAP SDN-R logs will give you the startup procedure.
208 docker logs -f controller
211 If you see the login page (https://odlux.oam.smo.o-ran-sc.org) you are good to go and can start the (simulated) network.
214 docker compose -f network/docker-compose.yml up -d
217 Usually the first ves:event gets lost. Please restart the O-DU docker container(s) to send a second ves:pnfRegistration.
220 docker compose -f network/docker-compose.yml restart ntsim-ng-o-du-1122
221 python network/config.py
224 The python script configures the simulated O-DU and O-RU according to O-RAN hybrid architecture.
226 O-DU - NETCONF Call HOME and NETCONF notifications
227 O-RU - ves:pnfRegistration and ves:fault, ves:heartbeat
229 ![ves:pnfRegistration in ODLUX](docs/nstim-ng-connected-after-ves-pnf-registration-in-odlux.png "ves:pnfRegistration in ODLUX")
231 'True' indicated that the settings through SDN-R to the NETCONF server were
234 SDN-R reads the fault events from DMaaP and processes them.
235 Finally the fault events are visible in ODLUX.
237 ![ves:fault in ODLUX](docs/ves-fault-in-odlux.png "ves:fault in ODLUX")
240 ### Log files and karaf console
245 docker exec -it controller tail -f /opt/opendaylight/data/log/karaf.log
248 #### ves-collector logs
251 docker logs -f ves-collector
254 ### Customizing Solution
256 '.env' file contains customizing parameters
258 ### Verification Solution
260 #### Access to SDN-R ODLUX
262 ##### Login into SDN-R
264 https://odlux.oam.smo.o-ran-sc.org
266 User: admin // see .env file
268 Password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
270 In case of trouble, please update the commands with your customized '.env' file.
272 ### Terminate solution
274 To stop all container please respect the following order
277 docker compose -f network/docker-compose.yml down
278 docker compose -f smo/apps/docker-compose.yml down
279 docker compose -f smo/oam/docker-compose.yml down
280 docker compose -f smo/common/docker-compose.yml down
285 !!! be careful if other stopped containers are on the same system
287 docker system prune -a -f
291 In most cases the .env setting do not fit to the environment and need to be
294 Please make sure that the network settings to not overlap with other networks.
300 docker rm -f $(docker ps -aq)