While reading the O'Reilley book on Apache Web Server, they gave an example on using ifconfig to set ip aliases on an interface:
ifconfig ep0 192.168.123.2
ifconfig ep0 192.168.123.3 alias netmask 0xFFFFFFFF
ifconfig ep0 192.168.124.1 alias
I became curious: how would you do the same thing using the iproute utils on Linux?
ipcommand in Linux eliminates the need foraliasessince it natively support multiple addresses on a single interface.