Hello there community members!
I would like to talk about how to manage NodeB, it is an important procedure and requires a lot of field engineers,
There are two ways to manage NodeB one is by using command by command and filling in the required input, second way is by using ready command and modifying ip and vlan and then executing them all at once, we will implement both methods in this article
A- Steps to manage NodeB by using command by command
1- Set OM Channel automatic Establishment switch disable by using SET DHCPSW
Indicates whether to enable detection of automatic establishment of the remote maintenance channel.
And you don't need this channel now, all we need is up node management first and back office will reinstall all configuration again

If you do not set the OM channel auto-establishment switch to be disabled, you will encounter a fowling error

2- Set ether port by using SET ETHPORT
Use this command to set the parameters of an Ethernet port, including the Ethernet port speed and duplex mode.

3- Add device management IP by using ADD DEVIP command

4- Add O&M Vlan by using ADD VLANMAP.
Use this command to add an entry of mapping from a next-hop IP address to a single VLAN or VLAN group. The priority of all single VLANs must be the same.

5- Add o&m Rout by using ADD IPRT
Use this command to add a static IP route.

6- Add OM channel by using ADD OMCH command.
Use this command to add a remote maintenance channel, this step is optional, the Node will up management with out this step.

B- mange NodeB by using ready command and modifying IP and VLAN
You can use follwing ready command and modify the IPs and Vlan and then executing them all at once.
SET DHCPSW: SWITCH=DISABLE, VLANSCANSW=DISABLE;
ADD ETHPORT: CN=0, SN=7, SBT=BASE_BOARD, PA=COPPER, SPEED=AUTO, DUPLEX=AUTO;
ADD DEVIP: SN=7, SBT=BASE_BOARD, PT=ETH, PN=0, IP="xx.xxx.xxx.xxx", MASK="255.255.255.252", USERLABEL="MO";
ADD VLANMAP: NEXTHOPIP=" xx.xxx.xxx.xxx ", MASK="255.255.255.252", VLANMODE=SINGLEVLAN, VLANID=2301, SETPRIO=DISABLE;
ADD IPRT: RTIDX=2, SN=7, SBT=BASE_BOARD, DSTIP=" xx.xxx.xxx.xxx ", DSTMASK="255.255.255.0", RTTYPE=NEXTHOP, NEXTHOP=" xx.xxx.xxx.xxx ", DESCRI="MO";
ADD OMCH: IP=" xx.xxx.xxx.xxx ", MASK="255.255.255.252", PEERIP=" xx.xxx.xxx.xxx ", PEERMASK="255.255.255.0", BEAR=IPV4, BRT=NO, CHECKTYPE=NONE;
Thanks,


