Pre-Populate An Interface-Specific ARP Table

  1. Access the network-interface configuration element.
    ORACLE# configure terminal
    ORACLE(configure)# system
    ORACLE(system)# network-interface
    ORACLE(network-interface)
  2. Select the network-interface object to edit.
    ORACLE(network-interface)# select
    <name>:<sub-port-id>:
    1: wancom0:0 ip=10.0.0.2 gw=10.0.4.1
    
    selection: 1
    ORACLE(network-interface)#
  3. add-neighbor-ip—Add the initial IP address to the 
core-interface-specific ARP table.
    ORACLE(network-interface)# add-neighbor-ip 10.0.0.101
  4. If necessary, add an additional IP address to the core-interface-specific ARP table.

    You can add a maximum of ten IP addresses to a single network interface.

  5. Use the show command to examine the pre-populated ARP table, referred to as the neighbor list.
    ORACLE(network-interface)# show
    network-interface
            ...
            neighbor-list                  10.0.0.101
                                           10.0.0.102
                                           10.0.0.103
                                           10.0.0.104
                                           10.0.0.105
                                           10.0.0.106
                                           10.0.0.107
                                           10.0.0.108
                                           10.0.0.109
                                           10.0.0.110
            ...
  6. Type done to save your configuration.