OAM ip of all the nodes connected in the RNC

Dear Experts,

Can anyone tell me how can i collect all the connected nodes (DUW and BB ) OAM ip addresses from the RNC via oss .

BR//

Hi, @Mani, in OSS-RC you have rb2ip amos command:

***************************************************************************************
rb2ip [<iublink>]
***************************************************************************************
Print the mapping of RNC IubLink MOs to RBS O&M IP addresses. Only supported in OSSRC.

Example:
>> rb2ip  ---> print the RBS O&M IP addresses for all IubLinks in the RNC
>> rb2ip Iub-14  --> print the RBS O&M IP address for IubLink=Iub-14

Similar to the get command, it is possible to store the output of this command into a variable
Example:
>> rb2ip Iub-14 > $var ---> stores the RBS O&M IP address of IubLink=Iub-14 to the variable $var

Other way is to export xml with filtering, check alex.

Hi,

Thanks a lot for the info, this command is not giving the BB OAM ip rather it gives only DUW OAM IP. Can you please help me with any other command which can give BB OAM ip also?

BR//Mani

I have no access to OSSRC for now. I believe you can get IP here:

BB

/opt/ericsson/ddc/util/bin/listme | grep @ECIM_Top | awk -F= ‘{print $4}’ | awk -F@ ‘{print $1,$2}’ | sort

DU

/opt/ericsson/ddc/util/bin/listme | grep @RBS_NODE_MODEL | awk -F= ‘{print $4}’ | awk -F@ ‘{print $1,$2}’ | sort

Remove all pipes for full output.

should I run this command in OSS ?

yes, absolutely

Thanks

It is done, Thanks a lot … I really appreciate you for the timely help.

BR//Mani

1 Like