Skip to content
Snippets Groups Projects
Commit 1e97c70a authored by Nikolay Stanchev's avatar Nikolay Stanchev
Browse files

Extends clmc dev guide with info on graph api

parent cf934962
No related branches found
No related tags found
No related merge requests found
......@@ -393,6 +393,20 @@ In current implementation, we still have two manual steps to perform after each
* Edit the **src/service/resources/GraphAPI/network_clusters.json** file (on the CLMC container) which maps the IP address of a service router to the host name of the cluster that is connected to this service router
* Edit the **src/service/resources/GraphAPI/network_ues.json** file (on the CLMC container) which maps the IP address of a service router to the host name of a user equipment that is connected to this service router
The information for these files can be retrieved by looking into the platform infrastructure slice, e.g. on the sandpit run `openstack server list`. Then, we can see that cluster 20-sr1-cluster1-cluster is connected through 20-sr1-cluster1-sr. Hence in the **network_clusters.json** we need an entry like the following:
```json
"<ip of 20-sr1-cluster1-sr>": "20-sr1-cluster1-cluster"
```
Similar for the emulated UEs, ue20 is connected through 20-sr2-sr. Hence in the **network_ues.json** we need an entry like the following:
```json
"<ip of 20-sr2-sr>": "ue20"
```
The IP addresses mentioned above must be the IP addresses the service routers receive on the SDN controller network (e.g. flame-sdnctrl)
Afterwards, the platform operator must build the network topology graph by either:
* sending a post request to the graoh API - `curl -X POST http://<clmc-host>/clmc-service/graph/network`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment