The following multiple IP interface example configures VLANs 1 and 5 as non-routing host management IP interfaces in interface configuration command mode. Both interfaces are configured with IP forwarding and IP Proxy ARP disabled as follows:
System(rw)->configure System(rw-config)->interface vlan.0.1 System(rw-config-intf-vlan.0.1)->ip address 125.50.10.1/16 System(rw-config-intf-vlan.0.1)->no ip forwarding System(rw-config-intf-vlan.0.1)->no ip proxy-arp System(rw-config-intf-vlan.0.1)->no shutdown System(rw-config-intf-vlan.0.1)->exit System(rw-config)->interface vlan.0.5 System(rw-config-intf-vlan.0.5)->ip address 125.100.10.1/16 System(rw-config-intf-vlan.0.5)->no ip forwarding System(rw-config-intf-vlan.0.5)->no ip proxy-arp System(rw-config-intf-vlan.0.5)->no shutdown System(rw-config-intf-vlan.0.5)->exit System(rw-config)->
The above example is replicated below using the set ip address command in system command mode:
System(rw)->set ip address 125.50.10.1 mask 255.255.0.0 interface vlan.0.1 System(rw)->set ip address 125.100.10.1 mask 255.255.0.0 interface vlan.0.5 System(rw)->