-
Notifications
You must be signed in to change notification settings - Fork 10
Description
We've managed to create a CentOS Docker image with all the dependencies, from which we launch a Docker container where we are able to build both mplane_server and mplane_client for the x86 platform. After the build, we've executed the following steps:
a) executed the mplane_server/scripts/o-ran-user-config.sh script
b) copied the mplane_server/yang-manager-server/yang-config/YangConfig.xml config file to another folder, and on this copy, we changed the leaf-enabled value to true inside <module-o-ran-usermgmt> / <container-users> / <list-user> / <listEntry>
c) manually copied all the YANG module files under the mplane_server/yang-models/O-RAN.WG4.MP-YANGs-v07.01 folder to /usr/share/mplane-server/modules
d) launched the mplane_server pointing the --cfg-data-path parameter to a folder where the modified YangConfig.xml is located, pointing the --netopeer-path parameter to /usr/local/bin and the --yang-mods-path to /usr/share/mplane-server/modules
After this, I can verify with netstat --all -n inside the Docker container that indeed we have a server socket on localhost at port 830. However, we tried following the steps described in mplane_client/README.md for testing but we couldn't get any connection at all. Is there something we're missing?