Network Interface Configuration

These ACLI command sequences configure two network interfaces. The first sequence configures a network interface named m10, thus associating the network interface with the physical interface of the same name. The ACLI ip-address command assigns the IPv4 address 172.16.10.76 to the network interface. In a similar fashion, the second command sequence associates the m01 network and physical interfaces, and assigns an IPv4 address of 182.16.10.76.

ORACLE# configure terminal
ORACLE(configure)# system
ORACLE(system)# network-interface
ORACLE(network-interface)# name m10
ORACLE(network-interface)# ip-address 172.16.10.76
...
...
...
ORACLE(network-interface)#
ORACLE# configure terminal
ORACLE(configure)# system
ORACLE(system)# network-interface
ORACLE(network-interface)# name m01
ORACLE(network-interface)# ip-address 182.16.10.76
...
...
...
ORACLE(network-interface)#