Hi All,
Please let me know how do we take Ericsson Radio node (BBU) dumps in XML format from ENM. I am aware of kget all and dcgk. Just wanted to know if there is another way to take dump in XML format. Please suggest.
Hi All,
Please let me know how do we take Ericsson Radio node (BBU) dumps in XML format from ENM. I am aware of kget all and dcgk. Just wanted to know if there is another way to take dump in XML format. Please suggest.
Hi, @Sooraj, here are couple approaches:
cliappcmedit export --ne RBSNAME1 --filetype 3GPP --filecompression none
curl -i -X POST \
-H "Content-Type:application/json" \
-b ENM_cookie.txt \
-d \
'{
"type": "EXPORT",
"configName": "Live",
"fileFormat": "3GPP",
"dataCategories": ["ENM_DATA", "NETWORK_RESOURCE_DATA"],
"userFilter": {
"value": "STN.*;TGTransport.*;SuperChannel.*;"
},
"nodeSearchCriteria": {
"nodeSearchScopes": [{
"scopeType": "FDN",
"matchCondition": "EQUALS",
"value": "SubNetwork=ONRM_ROOT_MO,SubNetwork=TCU",
"neType": "TCU02"
}
]
},
"compressionType": "NONE",
"enumTranslate": "true",
"syncState": "SYNC",
"jobName": "ExportWithUserDefinedFilter1",
"prettyFormat": "true"
}' \
'https://enm.example.com/bulk/export/jobs'
Thank you. How will I get to know the status of this Job ID and download the same? Please suggest.
![]()
cmedit export --status --job 31160
cmedit export --download --job 31160
Thank you so much.