Hello,
I try to run the
xran controller in onos using ng-sdn tutorial's Makefileto deploy onos
My
problem is when i want to load the xran-cfg.json file to onos. The make
netcfg seems to work but when i connect to onos-cli the netcfg command
shows this result:
{
"layouts" : { },
"regions" : { },
"devices" : { },
"links" : { },
"hosts" : { },
"ports" : { },
"apps" : {
"org.onosproject.xran" : { }
}
}
The xran-cfg.json is this:
{
"apps": {
"org.onosproject.xran": {
"xran": {
"active_cells": [
{
"plmn_id": "000001",
"eci": "00000010",
"ip_addr": "1.1.1.2"
},
{
"plmn_id": "000002",
"eci": "00000020",
"ip_addr": "1.1.1.3"
}
],
"l2_meas_report_interval_ms": 5000,
"rx_signal_meas_report_interval_ms": 7000,
"xranc_cellconfigrequest_interval_seconds": 10,
"xranc_bind_ip": "1.1.1.1",
"xranc_port": 7891,
"admission_success": true,
"bearer_success": true,
"no_meas_link_removal_ms": 1000000,
"idle_ue_removal_ms": 1,
"nb_response_timeout_ms": 10000
}
}
}
}
How can i fix that?