Hi everyone,
In Ericsson ENM, specifically from the CLI, you can do:
cmedit get {FDN string here}
to get a list of attributes for that particular object (like an EutranCell). You can filter out certain attributes if you are not interested in the entire list, like so:
cmedit get {insert FDN string} -attr EutranCellFDDId
cmedit get {insert FDN string} --attribute EutranCellFDDId
This way you can obtain the attribute EutranCellFDDId from the given FDN.
You can even get a description for all or many attributes using:
cmedit describe EutranCellFDD
However, I would like to know the child MOs of a given MO. For example, the MO EutranCellFDD, in addition to many attributes such as EutranCellFDDId, contains some child MOs like EutranFreqRelation or UtranFreqRelation. Is there a way to obtain these directly from CLI?
I know you can use the Topology Browser in ENM, but I am looking for a CLI way of doing it.
In moshell is trivial using lpr ,EutranCellFDD=.*, but you have to connect to the node and you get relative DNs as a result.
Thanks.