Got it

NE40E Deletes Loopback1023

Created: Nov 1, 2019 04:04:31Latest reply: Nov 1, 2019 04:26:28 1213 3 0 0 0
  Rewarded HiCoins: 0 (problem resolved)

Hi friend,

How can I delete the loopback1023 or it's IP address?  I can't enter this interface. I tried to reset the device configuration, but the interface and IP still exist.

loopback1023

Featured Answers

Best answer

Recommended answer

Popeye_Wang
Admin Created Nov 1, 2019 04:09:55

Hi Sprout,

The DCN function is enabled by default on NE40E. And the loopback interface is automatically created by the DCN. You can neither access nor delete this loopback interface.

dcn

To delete this interface, you can only disable the DCN function.

Example

# Disable DCN globally and then enable it globally.

<HUAWEI> system-view
[~HUAWEI] undo dcn
Warning: This operation will disable DCN function.Continue? [Y/N]:y



And the IP address of the loopback interface is actually the NEIP of the device, If you just want to modify the IP, run the ne-ip command.

Example

# Set a NEIP address.

<HUAWEI> system-view
[~HUAWEI] dcn
Warning: This operation will enable DCN function. Continue? [Y/N]:Y
[*HUAWEI-dcn] ne-ip 10.1.1.1 255.255.0.0

For more details, please refer to

 https://support.huawei.com/hedex/hdx.do?docid=EDOC1100077986&id=ne-ip&text=null&lang=en



View more
  • x
  • convention:

All Answers

please help

View more
  • x
  • convention:

Hi Sprout,

The DCN function is enabled by default on NE40E. And the loopback interface is automatically created by the DCN. You can neither access nor delete this loopback interface.

dcn

To delete this interface, you can only disable the DCN function.

Example

# Disable DCN globally and then enable it globally.

<HUAWEI> system-view
[~HUAWEI] undo dcn
Warning: This operation will disable DCN function.Continue? [Y/N]:y



And the IP address of the loopback interface is actually the NEIP of the device, If you just want to modify the IP, run the ne-ip command.

Example

# Set a NEIP address.

<HUAWEI> system-view
[~HUAWEI] dcn
Warning: This operation will enable DCN function. Continue? [Y/N]:Y
[*HUAWEI-dcn] ne-ip 10.1.1.1 255.255.0.0

For more details, please refer to

 https://support.huawei.com/hedex/hdx.do?docid=EDOC1100077986&id=ne-ip&text=null&lang=en



View more
  • x
  • convention:

Hello,
Please find below the solution for your issue
  • Example for Configuring DCN

    This section provides an example for configuring the data communication network (DCN) feature.

    Networking Requirements

    A gateway network element (GNE) shown in Figure 23-1 is connected to a network management system (NMS) and to two network elements (NEs). A static route is configured for communication between the NMS and GNE.

    Figure 23-1  Networking diagram for configuring DCN
    imgDownload?uuid=48f4ab3a52be4639b418302

    Precautions

    Before configuring DCN, note the following:

    • An NMS's IP address is a public IP address, and a GNE's NEIP address is a Layer 3 virtual private network (VPN) address. To implement address conversion, you must specify a GNE's interface that is connected to an NMS, bind the GNE's interface to a DCN VPN instance, and set an IP address for the GNE's interface.

    • The binding operation must be performed before you set an IP address for the interface. Otherwise, this IP address will be deleted when you bind the interface to the DCN VPN instance.

    Configuration Roadmap

    The configuration roadmap is as follows:

    1. Enable the DCN feature globally.

    2. Bind the interface (connecting the GNE to the NMS) to a DCN VPN instance. Then set an IP address for the interface.

    3. Configure a static route for communication between the NMS and GNE.

    4. Configure the automatic NE report function on the GNE.

    Data Preparation

    To complete the configuration, you need the following data:

    • Name of the DCN VPN instance
      imgDownload?uuid=6015b07d0407457ea3310c7 NOTE:

      A DCN VPN instance named __dcn_vpn__ is automatically generated when the DCN feature is enabled globally on the GNE.

      You can run the display ip vpn-instance command on the GNE to view the DCN VPN instance name.

    • IP address of the interface connecting the GNE to the NMS

    Procedure

    1. Enable the DCN feature globally.

      # Enable the DCN feature globally. In this example, a GNE is used.

      <HUAWEI> system-view
      [~HUAWEI] sysname gne
      [*HUAWEI] commit
      [~gne] dcn
      [*gne-dcn] ne-ip 10.1.1.2 24
      [*gne-dcn] quit

    2. Bind the interface (connecting the GNE to the NMS) to DCN VPN instance __dcn_vpn__. Then, set an IP address for the interface.

      [*gne] interface GigabitEthernet 1/0/0
      [*gne-GigabitEthernet1/0/0] ip binding vpn-instance __dcn_vpn__
      [*gne-GigabitEthernet1/0/0] ip address 1.1.1.2 16
      [*gne-GigabitEthernet1/0/0] commit
      [~gne-GigabitEthernet1/0/0] quit

    3. Configure a static route for communication between the NMS and GNE. For configuration details, see "Configuration Files" in this section.
    4. Configure the automatic NE report function on the GNE.

      # Enable the automatic NE report function on the GNE.

      [~gne] dcn
      [*gne-dcn] auto-report
      [*gne-GigabitEthernet1/0/0] commit

    5. Verify the configuration.

      # View the configurations of the GNE.

      <gne> display dcn brief
      ------------------------------------------------
       NE-ID:               0x280FC
       NE-IP:               10.1.1.2
       Mask:                255.255.255.0
       DCN-Interface:       LoopBack1023
       Auto-Report:         Enable
      ------------------------------------------------

    Configuration Files

    • Configuration file of the GNE

      #                                                                               
      ip dcn vpn-instance __dcn_vpn__                                                 
      #                                                                               
      interface GigabitEthernet1/0/0                                                  
       undo shutdown                                                                  
       dcn                                                                            
       ip binding vpn-instance __dcn_vpn__                                            
       ip address 1.1.1.2 16 255.255.0.0                                             
      #                                                                               
      interface LoopBack1023                                                    
       description DCN loopback interface                                             
       ip binding vpn-instance __dcn_vpn__                                            
       ip address 10.1.1.2 255.255.255.0                                               
      #                                                                               
      ospf 65534 vpn-instance __dcn_vpn__                                             
       description DCN ospf create by default                                         
       opaque-capability enable                                                       
       vpn-instance-capability simple                                                 
       area 0.0.0.0                                                                   
        network 0.0.0.0 255.255.255.255                                               
      #                                                                               
      !The DCN function implements the capability of plug-and-play for this device.
      !A NE IP address based on the unique NE ID is automatically generated in VPN
      !of DCN. It is recommended that the NE IP address be changed to the planned 
      !one by running the ne-ip X.X.X.X <MASK>command after the device being online.
      dcn                                                                             
       auto-report                                                                    
       ne-ip 10.1.1.2 255.255.255.0
      #                                                                               
      return 
    • Configuration files of NE1 and NE2

      #                                                                               
      interface GigabitEthernet1/0/1                                                  
       undo shutdown                                                                  
       dcn                                                                            
      #                                                                               
      interface LoopBack1023                                                    
       description DCN loopback interface                                             
       ip binding vpn-instance __dcn_vpn__                                            
       ip address 128.1.0.1 255.255.0.0                                               
      #                                                                               
      ospf 65534 vpn-instance __dcn_vpn__                                             
       description DCN ospf create by default                                         
       opaque-capability enable 
       hostname                                                       
       vpn-instance-capability simple                                                 
       area 0.0.0.0                                                                   
        network 0.0.0.0 255.255.255.255                                               
      #                                                                               
      !The DCN function implements the capability of plug-and-play for this device.
      !A NE IP address based on the unique NE ID is automatically generated in VPN
      !of DCN. It is recommended that the NE IP address be changed to the planned 
      !one by running the ne-ip X.X.X.X <MASK>command after the device being online.
      dcn                                                                             
      #                                                                               
      return

For details : https://support.huawei.com/enterprise/en/doc/EDOC1100028537?section=j08j&topicName=example-for-configuring-dcn


Thanks
View more
  • x
  • convention:

Comment

You need to log in to comment to the post Login | Register
Comment

Notice: To protect the legitimate rights and interests of you, the community, and third parties, do not release content that may bring legal risks to all parties, including but are not limited to the following:
  • Politically sensitive content
  • Content concerning pornography, gambling, and drug abuse
  • Content that may disclose or infringe upon others ' commercial secrets, intellectual properties, including trade marks, copyrights, and patents, and personal privacy
Do not share your account and password with others. All operations performed using your account will be regarded as your own actions and all consequences arising therefrom will be borne by you. For details, see " User Agreement."

My Followers

Login and enjoy all the member benefits

Login

Block
Are you sure to block this user?
Users on your blacklist cannot comment on your post,cannot mention you, cannot send you private messages.
Reminder
Please bind your phone number to obtain invitation bonus.